]> git.sur5r.net Git - minitube/commitdiff
Refresh patches
authorJakob Haufe <sur5r@sur5r.net>
Thu, 12 Jun 2014 19:12:46 +0000 (21:12 +0200)
committerJakob Haufe <sur5r@sur5r.net>
Thu, 12 Jun 2014 19:12:46 +0000 (21:12 +0200)
debian/changelog
debian/patches/assure-quit-keybinding
debian/patches/disable-update-check

index 21c86c79f5cafa767c820fb57f76032cb09937d1..2a0d6994581b455c8780241f2307058b87b16a4c 100644 (file)
@@ -2,6 +2,7 @@ minitube (2.1.3-1) UNRELEASED; urgency=low
 
   * New upstream version
   * Update watchfile to work with new Gitorious
+  * Refresh patches
 
  -- Jakob Haufe <sur5r@sur5r.net>  Mon, 23 Sep 2013 16:01:31 +0200
 
index 81fc52e39e1c2c2c01e9800909f56866de691830..13f1f5006d3ff496835b1ea8e7e3852b37bb8a0e 100644 (file)
@@ -4,16 +4,17 @@ Description: Make Ctrl+Q work on normal X11 desktops
  explicitely add Ctrl+Q back.
 Author: Jakob Haufe <sur5r@sur5r.net>
 Forwarded: no
-Last-Update: 2012-02-16
+Last-Update: 2014-01-25
 
 diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
-index bb815c0..5f82732 100644
+index 3392ff2..2e97174 100644
 --- a/src/mainwindow.cpp
 +++ b/src/mainwindow.cpp
-@@ -334,6 +334,9 @@ void MainWindow::createActions() {
+@@ -376,7 +376,9 @@ void MainWindow::createActions() {
      quitAct = new QAction(tr("&Quit"), this);
      quitAct->setMenuRole(QAction::QuitRole);
-     quitAct->setShortcut(QKeySequence(QKeySequence::Quit));
+-    quitAct->setShortcut(QKeySequence(QKeySequence::Quit));
 +    quitAct->setShortcuts(QList<QKeySequence>()
 +                          << QKeySequence(QKeySequence::Quit)
 +                          << QKeySequence(Qt::CTRL + Qt::Key_Q));
index f828c45db89de6de60a748cdf0fca01a20d97b32..dbc66b967cb426f113fc07ba05a71bcfcf0d2c8e 100644 (file)
@@ -2,15 +2,15 @@ Description: Disable update check as it's useless for a packaged version
 Author: Jakob Haufe <sur5r@sur5r.net>
 
 diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
-index bb815c0..4304fa3 100644
+index 3392ff2..a18e7f0 100644
 --- a/src/mainwindow.cpp
 +++ b/src/mainwindow.cpp
-@@ -146,7 +146,7 @@ MainWindow::MainWindow() :
-     mouseTimer->setSingleShot(true);
-     connect(mouseTimer, SIGNAL(timeout()), SLOT(hideMouse()));
+@@ -197,7 +197,7 @@ void MainWindow::lazyInit() {
  
--    QTimer::singleShot(0, this, SLOT(checkForUpdate()));
-+    //QTimer::singleShot(0, this, SLOT(checkForUpdate()));
+     JsFunctions::instance();
  
- }
+-    checkForUpdate();
++    //checkForUpdate();
  
+     ChannelAggregator::instance()->start();
+ }