Accepting request 243638 from home:Kieltux:branches:multimedia:apps
- update to 2.2 * Subscriptions context menu: Unsubscribe, Mark as Watched * Added --stop-after-this command line switch * Added Stop After This Video Unity & Gnome 3 action * Fixed painting errors when scrolling playlist on Linux * Fixed bug with dragging playlist items from the thumbnail * Fixed some videos not playing * Updated translations - added patch for disable update check OBS-URL: https://build.opensuse.org/request/show/243638 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/minitube?expand=0&rev=13
This commit is contained in:
parent
b17c04f892
commit
be02cfb688
11
disable_update_check.patch
Normal file
11
disable_update_check.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/mainwindow.cpp.orig 2014-07-20 11:07:09.000000000 +0200
|
||||
+++ src/mainwindow.cpp 2014-08-04 20:24:50.755541329 +0200
|
||||
@@ -197,7 +197,7 @@
|
||||
|
||||
JsFunctions::instance();
|
||||
|
||||
- checkForUpdate();
|
||||
+ //checkForUpdate();
|
||||
|
||||
ChannelAggregator::instance()->start();
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
--- minitube.pro.orig 2014-02-05 23:39:02.000000000 +0100
|
||||
+++ minitube.pro 2014-02-07 17:52:51.412653234 +0100
|
||||
--- minitube.pro.orig 2014-08-04 19:58:18.503898547 +0200
|
||||
+++ minitube.pro 2014-08-04 19:58:40.847805951 +0200
|
||||
@@ -12,6 +12,7 @@
|
||||
DEFINES *= QT_NO_DEBUG_OUTPUT
|
||||
DEFINES *= QT_USE_QSTRINGBUILDER
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- src/mainwindow.cpp.orig 2014-02-05 23:39:02.000000000 +0100
|
||||
+++ src/mainwindow.cpp 2014-02-07 17:59:49.881179373 +0100
|
||||
--- src/mainwindow.cpp.orig 2014-07-20 11:07:09.000000000 +0200
|
||||
+++ src/mainwindow.cpp 2014-08-04 20:03:32.755652274 +0200
|
||||
@@ -52,6 +52,7 @@
|
||||
#else
|
||||
#include "searchlineedit.h"
|
||||
@ -45,8 +45,8 @@
|
||||
void MainWindow::stop() {
|
||||
mediaView->stop();
|
||||
showHome();
|
||||
--- src/mainwindow.h.orig 2014-02-05 23:39:02.000000000 +0100
|
||||
+++ src/mainwindow.h 2014-02-07 17:55:56.229563829 +0100
|
||||
--- src/mainwindow.h.orig 2014-07-20 11:07:09.000000000 +0200
|
||||
+++ src/mainwindow.h 2014-08-04 20:05:37.008172348 +0200
|
||||
@@ -103,6 +103,7 @@
|
||||
void setDefinitionMode(QString definitionName);
|
||||
void toggleDefinitionMode();
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a9b9386f20e42274c1b13a729268f1cb8e7978d3ae930f8acdff7d3b270c724
|
||||
size 870000
|
3
minitube-2.2.0.tar.gz
Normal file
3
minitube-2.2.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1076981044d62e5c0b52754d34acde46be5e8bdf4813ae7cead7c9ae038133e1
|
||||
size 878634
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 4 18:28:36 UTC 2014 - kieltux@gmail.com
|
||||
|
||||
- update to 2.2
|
||||
* Subscriptions context menu: Unsubscribe, Mark as Watched
|
||||
* Added --stop-after-this command line switch
|
||||
* Added Stop After This Video Unity & Gnome 3 action
|
||||
* Fixed painting errors when scrolling playlist on Linux
|
||||
* Fixed bug with dragging playlist items from the thumbnail
|
||||
* Fixed some videos not playing
|
||||
* Updated translations
|
||||
- added patch for disable update check
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 7 17:10:08 UTC 2014 - kieltux@gmail.com
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
Name: minitube
|
||||
Version: 2.1.6
|
||||
Version: 2.2.0
|
||||
Release: 0
|
||||
License: GPL-3.0+
|
||||
Summary: Native Youtube Client
|
||||
@ -26,8 +26,10 @@ Source: http://flavio.tordini.org/files/minitube/%{name}-%{version}.tar.
|
||||
Patch0: qtlocalpeer.patch
|
||||
# https://launchpadlibrarian.net/105980691/inhibit-screensaver-during-playback
|
||||
Patch1: inhibit_screensaver_during_playback.patch
|
||||
# Disable online update check: from home:jetchko:fedora20 > minitube
|
||||
Patch2: disable_update_check.patch
|
||||
# YouTube Legal Team asked to remove the download functionality
|
||||
Patch2: enable_vid_download_again.patch
|
||||
Patch3: enable_vid_download_again.patch
|
||||
BuildRequires: libqt4-devel >= 4.5.0
|
||||
BuildRequires: phonon-devel
|
||||
BuildRequires: update-desktop-files
|
||||
@ -51,8 +53,9 @@ Author:
|
||||
%setup -q -n minitube
|
||||
%patch0
|
||||
%patch1
|
||||
%patch2
|
||||
# enable this patch to enable video downloads
|
||||
#%patch2
|
||||
#%patch3
|
||||
|
||||
%build
|
||||
qmake PREFIX=%{_prefix}
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- src/qtsingleapplication/qtlocalpeer.cpp.orig 2014-02-05 23:39:02.000000000 +0100
|
||||
+++ src/qtsingleapplication/qtlocalpeer.cpp 2014-02-07 17:53:22.356471304 +0100
|
||||
--- src/qtsingleapplication/qtlocalpeer.cpp.orig 2014-07-20 11:07:09.000000000 +0200
|
||||
+++ src/qtsingleapplication/qtlocalpeer.cpp 2014-08-04 19:59:32.975591970 +0200
|
||||
@@ -46,6 +46,7 @@
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user