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 2023-09-04 22:52:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/git-cola (Old) and /work/SRC/openSUSE:Factory/.git-cola.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "git-cola" Mon Sep 4 22:52:35 2023 rev:44 rq:1108638 version:4.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/git-cola/git-cola.changes 2023-08-23 14:59:14.218164211 +0200 +++ /work/SRC/openSUSE:Factory/.git-cola.new.1766/git-cola.changes 2023-09-04 22:52:48.962142524 +0200 @@ -1,0 +2,15 @@ +Sat Sep 2 18:31:13 UTC 2023 - Marcin Bajor <marcin.ba...@gmail.com> + +- Update to 4.3.2 +- Usability, bells and whistles + * The minimum font size can now be set lower, which is helpful for Hi-DPI displays. + https://github.com/git-cola/git-cola/pull/1342 +- Fixes + * `git dag` was not displaying history when refspecs were specified. + https://github.com/git-cola/git-cola/issues/1334 +- Development + * Compatibility with Sphinx 7.2.0 was added to the `sphinxtogithub` + sphinx documentation plugin. + https://github.com/git-cola/git-cola/pull/1336 + +------------------------------------------------------------------- Old: ---- v4.3.1.tar.gz New: ---- v4.3.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ git-cola.spec ++++++ --- /var/tmp/diff_new_pack.EwYRvE/_old 2023-09-04 22:52:50.034180418 +0200 +++ /var/tmp/diff_new_pack.EwYRvE/_new 2023-09-04 22:52:50.038180559 +0200 @@ -18,7 +18,7 @@ Name: git-cola -Version: 4.3.1 +Version: 4.3.2 Release: 0 Summary: A GUI for Git License: GPL-2.0-or-later ++++++ v4.3.1.tar.gz -> v4.3.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/CHANGES.rst new/git-cola-4.3.2/CHANGES.rst --- old/git-cola-4.3.1/CHANGES.rst 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/CHANGES.rst 2023-08-31 07:23:52.000000000 +0200 @@ -1,3 +1,25 @@ +.. _v4.3.2: + +v4.3.2 +====== + +Usability, bells and whistles +----------------------------- +* The minimum font size can now be set lower, which is helpful for Hi-DPI displays. + (`#1342 <https://github.com/git-cola/git-cola/pull/1342>`_) + +Fixes +----- +* `git dag` was not displaying history when refspecs were specified. + (`#1334 <https://github.com/git-cola/git-cola/issues/1334>`_) + +Development +----------- +* Compatibility with Sphinx 7.2.0 was added to the `sphinxtogithub` + sphinx documentation plugin. + (`#1336 <https://github.com/git-cola/git-cola/pull/1336>`_) + + .. _v4.3.1: v4.3.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/README.md new/git-cola-4.3.2/README.md --- old/git-cola-4.3.1/README.md 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/README.md 2023-08-31 07:23:52.000000000 +0200 @@ -5,7 +5,7 @@ git clone https://github.com/git-cola/git-cola.git [](LICENSE) -[](https://github.com/git-cola/git-cola/actions/workflows/main.yml) +[](https://github.com/git-cola/git-cola/actions/workflows/main.yml) [](https://bestpractices.coreinfrastructure.org/projects/251) * [Screenshots](https://git-cola.github.io/screenshots.html) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/cola/_version.py new/git-cola-4.3.2/cola/_version.py --- old/git-cola-4.3.1/cola/_version.py 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/cola/_version.py 2023-08-31 07:23:52.000000000 +0200 @@ -1 +1 @@ -VERSION = '4.3.1' +VERSION = '4.3.2' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/cola/models/dag.py new/git-cola-4.3.2/cola/models/dag.py --- old/git-cola-4.3.1/cola/models/dag.py 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/cola/models/dag.py 2023-08-31 07:23:52.000000000 +0200 @@ -277,8 +277,8 @@ cmd = ( self._cmd + ['-%d' % self.params.count] - + ref_args + ['--date=%s' % prefs.logdate(self.context)] + + ref_args ) self._proc = core.start_command(cmd) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/cola/qtutils.py new/git-cola-4.3.2/cola/qtutils.py --- old/git-cola-4.3.1/cola/qtutils.py 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/cola/qtutils.py 2023-08-31 07:23:52.000000000 +0200 @@ -734,7 +734,7 @@ return button -def create_action_button(tooltip=None, icon=None, visible=True): +def create_action_button(tooltip=None, icon=None, visible=None): """Create a small toolbutton for use in dock title widgets""" button = tool_button() if tooltip is not None: @@ -742,7 +742,8 @@ if icon is not None: button.setIcon(icon) button.setIconSize(QtCore.QSize(defs.small_icon, defs.small_icon)) - button.setVisible(visible) + if visible is not None: + button.setVisible(visible) return button diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/cola/widgets/prefs.py new/git-cola-4.3.2/cola/widgets/prefs.py --- old/git-cola-4.3.1/cola/widgets/prefs.py 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/cola/widgets/prefs.py 2023-08-31 07:23:52.000000000 +0200 @@ -138,8 +138,6 @@ self.merge_diffstat = qtutils.checkbox(checked=True) self.display_untracked = qtutils.checkbox(checked=True) self.show_path = qtutils.checkbox(checked=True) - self.tabwidth = standard.SpinBox(value=8, maxi=42) - self.textwidth = standard.SpinBox(value=72, maxi=150) self.logdate = qtutils.combo(prefs.date_formats()) tooltip = N_( @@ -165,8 +163,6 @@ self.add_row(N_('User Name'), self.name) self.add_row(N_('Email Address'), self.email) - self.add_row(N_('Tab Width'), self.tabwidth) - self.add_row(N_('Text Width'), self.textwidth) self.add_row(N_('Log Date Format'), self.logdate) self.add_row(N_('Merge Verbosity'), self.merge_verbosity) self.add_row(N_('Number of Diff Context Lines'), self.diff_context) @@ -214,8 +210,6 @@ ), prefs.SAFE_MODE: (self.safe_mode, Defaults.safe_mode), prefs.SHOW_PATH: (self.show_path, Defaults.show_path), - prefs.TABWIDTH: (self.tabwidth, Defaults.tabwidth), - prefs.TEXTWIDTH: (self.textwidth, Defaults.textwidth), prefs.USER_NAME: (self.name, ''), prefs.USER_EMAIL: (self.email, ''), } @@ -227,7 +221,7 @@ FormWidget.__init__(self, context, model, parent) self.fixed_font = QtWidgets.QFontComboBox() - self.font_size = standard.SpinBox(value=12, mini=8, maxi=192) + self.font_size = standard.SpinBox(value=12, mini=6, maxi=192) self.maxrecent = standard.SpinBox(maxi=99) self.tabwidth = standard.SpinBox(maxi=42) @@ -250,6 +244,8 @@ self.add_row(N_('Fixed-Width Font'), self.fixed_font) self.add_row(N_('Font Size'), self.font_size) + self.add_row(N_('Text Width'), self.textwidth) + self.add_row(N_('Tab Width'), self.tabwidth) self.add_row(N_('Editor'), self.editor) self.add_row(N_('History Browser'), self.historybrowser) self.add_row(N_('Blame Viewer'), self.blameviewer) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/cola/widgets/standard.py new/git-cola-4.3.2/cola/widgets/standard.py --- old/git-cola-4.3.1/cola/widgets/standard.py 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/cola/widgets/standard.py 2023-08-31 07:23:52.000000000 +0200 @@ -740,7 +740,7 @@ font = self.font() metrics = QtGui.QFontMetrics(font) - width = max(self.minimumWidth(), metrics.width('XXXXXX')) + width = max(self.minimumWidth(), metrics.width('MMMMMM')) self.setMinimumWidth(width) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/docs/relnotes.rst new/git-cola-4.3.2/docs/relnotes.rst --- old/git-cola-4.3.1/docs/relnotes.rst 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/docs/relnotes.rst 2023-08-31 07:23:52.000000000 +0200 @@ -5,7 +5,7 @@ Latest Release ============== -:ref:`v4.3.1 <v4.3.1>` is the latest stable release. +:ref:`v4.3.2 <v4.3.2>` is the latest stable release. Development version =================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/extras/sphinxtogithub/sphinxtogithub.py new/git-cola-4.3.2/extras/sphinxtogithub/sphinxtogithub.py --- old/git-cola-4.3.1/extras/sphinxtogithub/sphinxtogithub.py 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/extras/sphinxtogithub/sphinxtogithub.py 2023-08-31 07:23:52.000000000 +0200 @@ -98,7 +98,7 @@ def __init__(self, name, root, renamer): self.name = name self.new_name = name[1:] - self.root = root + os.sep + self.root = str(root) + os.sep self.renamer = renamer def path(self): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/pynsist.cfg new/git-cola-4.3.2/pynsist.cfg --- old/git-cola-4.3.1/pynsist.cfg 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/pynsist.cfg 2023-08-31 07:23:52.000000000 +0200 @@ -2,7 +2,7 @@ [Application] name=git-cola -version=4.3.1 +version=4.3.2 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.3.1/pyproject.toml new/git-cola-4.3.2/pyproject.toml --- old/git-cola-4.3.1/pyproject.toml 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/pyproject.toml 2023-08-31 07:23:52.000000000 +0200 @@ -34,4 +34,4 @@ # "fallback_version" does not (currently) work when building from tarballs. # "fallback_version" should start working once this upstream issue is resolved: # https://github.com/pypa/setuptools_scm/issues/549 -fallback_version = "4.3.1" +fallback_version = "4.3.2" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/share/metainfo/git-cola.appdata.xml new/git-cola-4.3.2/share/metainfo/git-cola.appdata.xml --- old/git-cola-4.3.1/share/metainfo/git-cola.appdata.xml 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/share/metainfo/git-cola.appdata.xml 2023-08-31 07:23:52.000000000 +0200 @@ -17,6 +17,7 @@ </screenshots> <url type="homepage">https://git-cola.github.io/</url> <releases> + <release version="4.3.2" date="2023-08-30" /> <release version="4.3.1" date="2023-08-18" /> <release version="4.3.0" date="2023-08-12" /> <release version="4.2.1" date="2023-03-31" /> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-cola-4.3.1/share/metainfo/git-dag.appdata.xml new/git-cola-4.3.2/share/metainfo/git-dag.appdata.xml --- old/git-cola-4.3.1/share/metainfo/git-dag.appdata.xml 2023-08-19 00:18:21.000000000 +0200 +++ new/git-cola-4.3.2/share/metainfo/git-dag.appdata.xml 2023-08-31 07:23:52.000000000 +0200 @@ -11,6 +11,7 @@ </description> <url type="homepage">https://git-cola.github.io/</url> <releases> + <release version="4.3.2" date="2023-08-30" /> <release version="4.3.1" date="2023-08-18" /> <release version="4.3.0" date="2023-08-12" /> <release version="4.2.1" date="2023-03-31" />