Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package git-cola for openSUSE:Factory checked in at 2022-11-25 13:11:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/git-cola (Old) and /work/SRC/openSUSE:Factory/.git-cola.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "git-cola" Fri Nov 25 13:11:35 2022 rev:37 rq:1037873 version:4.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/git-cola/git-cola.changes 2022-11-12 17:41:46.334383409 +0100 +++ /work/SRC/openSUSE:Factory/.git-cola.new.1597/git-cola.changes 2022-11-25 13:11:42.871865954 +0100 @@ -1,0 +2,10 @@ +Thu Nov 24 12:09:55 UTC 2022 - Marcin Bajor <marcin.ba...@gmail.com> + +- Update to 4.0.4 +- Fixes +* The "T" hotkey for "Find Files" was removed to avoid issues in some configurations. + https://github.com/git-cola/git-cola/issues/1270 +* Some context menus entries were erroring out on binary files. + https://github.com/git-cola/git-cola/pull/1271 + +------------------------------------------------------------------- Old: ---- v4.0.3.tar.gz New: ---- v4.0.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ git-cola.spec ++++++ --- /var/tmp/diff_new_pack.V3E0eF/_old 2022-11-25 13:11:43.367868725 +0100 +++ /var/tmp/diff_new_pack.V3E0eF/_new 2022-11-25 13:11:43.371868747 +0100 @@ -18,7 +18,7 @@ Name: git-cola -Version: 4.0.3 +Version: 4.0.4 Release: 0 Summary: A GUI for Git License: GPL-2.0-or-later ++++++ v4.0.3.tar.gz -> v4.0.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/CHANGES.rst new/git-cola-4.0.4/CHANGES.rst --- old/git-cola-4.0.3/CHANGES.rst 2022-10-29 09:10:54.000000000 +0200 +++ new/git-cola-4.0.4/CHANGES.rst 2022-11-23 07:31:26.000000000 +0100 @@ -1,3 +1,17 @@ +.. _v4.0.4: + +v4.0.4 +====== + +Fixes +----- +* The "T" hotkey for "Find Files" was removed to avoid issues in some configurations. + (`#1270 <https://github.com/git-cola/git-cola/issues/1270>`_) + +* Some context menus entries were erroring out on binary files. + (`#1271 <https://github.com/git-cola/git-cola/pull/1271>`_) + + .. _v4.0.3: v4.0.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/PKG-INFO new/git-cola-4.0.4/PKG-INFO --- old/git-cola-4.0.3/PKG-INFO 2022-11-10 23:23:16.156418600 +0100 +++ new/git-cola-4.0.4/PKG-INFO 2022-11-23 07:44:28.019182200 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: git-cola -Version: 4.0.3 +Version: 4.0.4 Summary: A sleek and powerful Git GUI Home-page: https://github.com/git-cola/git-cola Author: David Aguilar diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/cola/_version.py new/git-cola-4.0.4/cola/_version.py --- old/git-cola-4.0.3/cola/_version.py 2022-11-10 23:18:30.000000000 +0100 +++ new/git-cola-4.0.4/cola/_version.py 2022-11-23 06:35:53.000000000 +0100 @@ -1 +1 @@ -VERSION = '4.0.3' +VERSION = '4.0.4' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/cola/hotkeys.py new/git-cola-4.0.4/cola/hotkeys.py --- old/git-cola-4.0.3/cola/hotkeys.py 2022-01-20 10:18:34.000000000 +0100 +++ new/git-cola-4.0.4/cola/hotkeys.py 2022-11-23 06:20:41.000000000 +0100 @@ -121,8 +121,8 @@ SELECT_ALL = QKeySequence.SelectAll # Text navigation -DOWN = hotkey(Qt.Key_D) -UP = hotkey(Qt.Key_U) +TEXT_DOWN = hotkey(Qt.Key_D) +TEXT_UP = hotkey(Qt.Key_U) SELECT_FORWARD = hotkey(Qt.SHIFT + Qt.Key_F) SELECT_BACK = hotkey(Qt.SHIFT + Qt.Key_B) SELECT_DOWN = hotkey(Qt.SHIFT + Qt.Key_D) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/cola/models/main.py new/git-cola-4.0.4/cola/models/main.py --- old/git-cola-4.0.3/cola/models/main.py 2022-10-30 23:33:51.000000000 +0100 +++ new/git-cola-4.0.4/cola/models/main.py 2022-11-23 06:22:52.000000000 +0100 @@ -129,7 +129,7 @@ def stageable(self): """Whether staging should be allowed.""" - return self.partially_stageable() or self.mode == self.modes_untracked + return self.partially_stageable() or self.mode == self.mode_untracked def all_branches(self): return self.local_branches + self.remote_branches diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/cola/widgets/main.py new/git-cola-4.0.4/cola/widgets/main.py --- old/git-cola-4.0.3/cola/widgets/main.py 2022-03-10 19:22:56.000000000 +0100 +++ new/git-cola-4.0.4/cola/widgets/main.py 2022-11-23 06:20:41.000000000 +0100 @@ -276,7 +276,6 @@ N_('Find Files'), partial(finder.finder, context), hotkeys.FINDER, - hotkeys.FINDER_SECONDARY, ) self.find_files_action.setIcon(icons.search()) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/cola/widgets/text.py new/git-cola-4.0.4/cola/widgets/text.py --- old/git-cola-4.0.3/cola/widgets/text.py 2021-08-04 08:46:47.000000000 +0200 +++ new/git-cola-4.0.4/cola/widgets/text.py 2022-11-23 06:20:41.000000000 +0100 @@ -627,10 +627,17 @@ self.add_navigation('EndOfLine', hotkeys.END_OF_LINE) qtutils.add_action( - widget, 'PageUp', widget.page_up, hotkeys.SECONDARY_ACTION, hotkeys.UP + widget, + 'PageUp', + widget.page_up, + hotkeys.SECONDARY_ACTION, + hotkeys.TEXT_UP, ) qtutils.add_action( - widget, 'PageDown', widget.page_down, hotkeys.PRIMARY_ACTION, hotkeys.DOWN + widget, 'PageDown', + widget.page_down, + hotkeys.PRIMARY_ACTION, + hotkeys.TEXT_DOWN, ) qtutils.add_action( widget, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/docs/hotkeys.html new/git-cola-4.0.4/docs/hotkeys.html --- old/git-cola-4.0.3/docs/hotkeys.html 2022-06-01 11:40:49.000000000 +0200 +++ new/git-cola-4.0.4/docs/hotkeys.html 2022-11-23 06:20:41.000000000 +0100 @@ -124,7 +124,7 @@ <td>Checkout branch</td> </tr> <tr> - <td class="shortcut">T / Ctrl + T</td> + <td class="shortcut">Ctrl + T</td> <td>:</td> <td>Find files</td> </tr> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/docs/hotkeys_de.html new/git-cola-4.0.4/docs/hotkeys_de.html --- old/git-cola-4.0.3/docs/hotkeys_de.html 2022-06-01 11:40:49.000000000 +0200 +++ new/git-cola-4.0.4/docs/hotkeys_de.html 2022-11-23 06:20:41.000000000 +0100 @@ -127,7 +127,7 @@ <td>Zweig wechseln</td> </tr> <tr> - <td class="shortcut">T / Ctrl + T</td> + <td class="shortcut">Ctrl + T</td> <td>:</td> <td>Find files</td> </tr> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/docs/hotkeys_zh_CN.html new/git-cola-4.0.4/docs/hotkeys_zh_CN.html --- old/git-cola-4.0.3/docs/hotkeys_zh_CN.html 2022-06-01 11:40:49.000000000 +0200 +++ new/git-cola-4.0.4/docs/hotkeys_zh_CN.html 2022-11-23 06:20:41.000000000 +0100 @@ -127,7 +127,7 @@ <td>ååºåæ¯å §å®¹</td> </tr> <tr> - <td class="shortcut">T / Ctrl + T</td> + <td class="shortcut">Ctrl + T</td> <td>:</td> <td>Find files</td> </tr> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/docs/hotkeys_zh_TW.html new/git-cola-4.0.4/docs/hotkeys_zh_TW.html --- old/git-cola-4.0.3/docs/hotkeys_zh_TW.html 2022-06-01 11:40:49.000000000 +0200 +++ new/git-cola-4.0.4/docs/hotkeys_zh_TW.html 2022-11-23 06:20:41.000000000 +0100 @@ -125,7 +125,7 @@ <td>ååºåæ¯å §å®¹</td> </tr> <tr> - <td class="shortcut">T / Ctrl + T</td> + <td class="shortcut">Ctrl + T</td> <td>:</td> <td>å°æ¾æªæ¡</td> </tr> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/docs/relnotes.rst new/git-cola-4.0.4/docs/relnotes.rst --- old/git-cola-4.0.3/docs/relnotes.rst 2022-11-10 23:18:30.000000000 +0100 +++ new/git-cola-4.0.4/docs/relnotes.rst 2022-11-23 06:35:53.000000000 +0100 @@ -5,7 +5,7 @@ Latest Release ============== -:ref:`v4.0.3 <v4.0.3>` is the latest stable release. +:ref:`v4.0.4 <v4.0.4>` is the latest stable release. Development version =================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/git_cola.egg-info/PKG-INFO new/git-cola-4.0.4/git_cola.egg-info/PKG-INFO --- old/git-cola-4.0.3/git_cola.egg-info/PKG-INFO 2022-11-10 23:23:15.000000000 +0100 +++ new/git-cola-4.0.4/git_cola.egg-info/PKG-INFO 2022-11-23 07:44:27.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: git-cola -Version: 4.0.3 +Version: 4.0.4 Summary: A sleek and powerful Git GUI Home-page: https://github.com/git-cola/git-cola Author: David Aguilar diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/pynsist.cfg new/git-cola-4.0.4/pynsist.cfg --- old/git-cola-4.0.3/pynsist.cfg 2022-11-10 23:18:30.000000000 +0100 +++ new/git-cola-4.0.4/pynsist.cfg 2022-11-23 06:35:53.000000000 +0100 @@ -2,7 +2,7 @@ [Application] name=git-cola -version=4.0.3 +version=4.0.4 entry_point=cola.main:shortcut_launch icon=cola/icons/git-cola.ico extra_preamble=contrib/win32/pynsist-preamble.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/share/metainfo/git-cola.appdata.xml new/git-cola-4.0.4/share/metainfo/git-cola.appdata.xml --- old/git-cola-4.0.3/share/metainfo/git-cola.appdata.xml 2022-11-10 23:18:30.000000000 +0100 +++ new/git-cola-4.0.4/share/metainfo/git-cola.appdata.xml 2022-11-23 06:35:53.000000000 +0100 @@ -17,6 +17,7 @@ </screenshots> <url type="homepage">https://git-cola.github.io/</url> <releases> + <release version="4.0.4" date="2022-11-22" /> <release version="4.0.3" date="2022-11-10" /> <release version="4.0.2" date="2022-09-29" /> <release version="4.0.1" date="2022-06-10" /> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/share/metainfo/git-dag.appdata.xml new/git-cola-4.0.4/share/metainfo/git-dag.appdata.xml --- old/git-cola-4.0.3/share/metainfo/git-dag.appdata.xml 2022-11-10 23:18:30.000000000 +0100 +++ new/git-cola-4.0.4/share/metainfo/git-dag.appdata.xml 2022-11-23 06:35:53.000000000 +0100 @@ -11,6 +11,7 @@ </description> <url type="homepage">https://git-cola.github.io/</url> <releases> + <release version="4.0.4" date="2022-11-22" /> <release version="4.0.3" date="2022-11-10" /> <release version="4.0.2" date="2022-09-29" /> <release version="4.0.1" date="2022-06-10" /> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.0.3/test/main_model_test.py new/git-cola-4.0.4/test/main_model_test.py --- old/git-cola-4.0.3/test/main_model_test.py 2022-03-10 19:22:56.000000000 +0100 +++ new/git-cola-4.0.4/test/main_model_test.py 2022-11-23 06:22:43.000000000 +0100 @@ -77,6 +77,11 @@ assert app_context.model.untracked == ['C'] +def test_stageable(app_context): + """Test the 'stageable' attribute.""" + assert not app_context.model.stageable() + + def test_remotes(app_context): """Test the 'remote' attribute.""" helper.run_git('remote', 'add', 'origin', '.')