Revisions of git-cola

buildservice-autocommit accepted request 1171997 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 158)
baserev update by copy to link target
buildservice-autocommit accepted request 1158792 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 156)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 155)
- update to 4.6.1:
  * launchable tags were added to the flatpak app metainfo files.
  * The Rebase editor (git-cola-sequence-editor) can now add
    "remarks" to commits. Remarks are simple numbered flags (0-9)
    that allow you to mark commits. This lets you visually
    highlight commits to aid you when rebasing and grouping
    related commits across a large patch series. Remarks can be
    added to a single commit or to all commits that touch a file.
    (#1375)
  * Invalid commit.template configuration is now reported in the
    Console tool instead of presenting an error traceback dialog
    via a UsageError exception.
  * The file system monitor was corrected to catch
    PermissionError exceptions. (bz #2260155)
  * If the polib module (e.g. sudo apt install python3-polib) is
    installed then it will be used instead of the vendored
    cola.polib module. This makes it easier for distributions to
    remove the vendored module from the cola namespace. polib is
    now listed as an install requirement in pyproject.toml. (bz
    #2264526)
  * The flatpak metainfo now contains the required developer name
    field.
  * The "actions/cache" and "styfle/cancel-workflow-action"
    github actions were upgraded.
  * The test suite now uses ruff to validate python code. pylint
    is no longer used. (#1353)
buildservice-autocommit accepted request 1142002 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 154)
baserev update by copy to link target
buildservice-autocommit accepted request 1128784 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 152)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 151)
- update to 4.4.1:
  * Usability, bells and whistles
  * The remote messages dialog is now displayed for the Pull and
    Push actions in the
  * Branches widget only. This dialog is disabled by default and
    enabled in the
  * main Push and Pull dialog settings.
  * The whole-file staging actions in the Diff widget's right-
    click menu are now listed
  * after the selection and hunk staging actions. This helps
    prevent accidental clicks
  * from clobbering the index for the entire file.
  * The completion popup no longer reappears after an item is
    selected in the
  * "Checkout Branch" action and similar dialogs.
  * Fixes
  * PyQt6 compatibility was improved.
- switch to PyQt6
buildservice-autocommit accepted request 1127414 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 150)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 149)
- update to 4.4.0:
  * Git Cola now preserves `# commentary` in commit messages by
    default.
  * `git dag` now includes completions for `git log` options in
    the text input field.
  * `git dag` now provides convenient search filters when right-
    clicking in the text input field.
  * A `1.25 x` Hi-DPI magnification option mode is now available
    in the Appearance settings.
  * Git Cola now runs `git commit` in the background and feedback
    is provided while the commit is running. This prevents the
    UI from freezing when running pre-commit hooks that can make
    `git commit` take a long time to run.
  * The Diff context menu was reworked to reduce visual clutter
    and better match the Status context menu.
  * The standalone `git cola tag` tool now autocompletes the tag
    name field.
  * The "Branches" dock widget now has a "Visualize" right-click
    menu option.
  * The "Stash" dialog learned to rename stashes.
  * The "Fetch", "Push" and "Pull" dialogs can now display remote
    messages from the server.
  * `git dag` fixed how it was handling refspec arguments.
  * `git dag` will now properly refresh itself when remote
    branches are updated.
  * Git Cola's python code style. We were previously disabling
    quote normalization when using `black`. Use of `cercis`
    allows us to enable quote normalization under its default
    single-quote settings.
  * Compatibility with Sphinx 7.2.0 was added to the
buildservice-autocommit accepted request 1108638 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 148)
baserev update by copy to link target
Marcin Bajor's avatar Marcin Bajor (marcinbajor) committed (revision 146)
- 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
buildservice-autocommit accepted request 1105247 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 145)
baserev update by copy to link target
Marcin Bajor's avatar Marcin Bajor (marcinbajor) committed (revision 144)
- Update to 4.3.1
buildservice-autocommit accepted request 1103760 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 143)
baserev update by copy to link target
Marcin Bajor's avatar Marcin Bajor (marcinbajor) committed (revision 142)
- Update to 4.3.0
- Usability, bells and whistles
* `git dag` now displays commit metadata more similarly to `git log`.
  The commit date is now displayed and the subject field is displayed
  directly above the extended description.
* `git dag` now supports a `cola.logdate` configuration for controlling
  the date format. The configured value is passed to `git log --date=<format>`.
  https://github.com/git-cola/git-cola/pull/1319
  https://github.com/git-cola/git-cola/issues/1312
* The default `patches` directory that is used when exporting patches
  is now configurable using the `cola.patchesdirectory` configuration
  variable and the Preferences dialog.
* The Diff Editor can now export the diff selection, or the current
  diff hunk, to a `*.patch` file from the `Patches` context menu action.
* Existing patches can be appended to by choosing a patch file from
  the `Append Patch` sub-menu in the `Patches` context menu action.
* Patches can now be applied by dragging and dropping patches files from
  a file browser onto the diff editor. The "Apply Patches" dialog is
  launched with the drag-and-dropped patch files.
* Shell completions for zsh are now provided in the source distribution.
  See the `contrib/_git-cola` zsh completion file for more details
-Fixes
* ``QApplication::desktop()`` is no longer available on PyQt6.
  Git Cola no longer relies on this method.
-Packaging
* Git Cola can now be installed on Windows using `winget`.
  See the ``README.md`` file for more details.
  https://github.com/git-cola/git-cola/pull/1318
buildservice-autocommit accepted request 1077005 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 141)
baserev update by copy to link target
Marcin Bajor's avatar Marcin Bajor (marcinbajor) committed (revision 140)
- Update to 4.2.1
- Fixes
* Diffs for repositories with a single commit have been fixed.
  https://github.com/git-cola/git-cola/issues/1306
* The toolbars follow the Qt toolbar style, as they did prior to `v4.2.0`.
  https://github.com/git-cola/git-cola/issues/1307
* The "Checkout Branch" dialog was fixed to display all completions when first shown.
  https://github.com/git-cola/git-cola/issues/1308
buildservice-autocommit accepted request 1074770 from Marcin Bajor's avatar Marcin Bajor (marcinbajor) (revision 139)
baserev update by copy to link target
Displaying revisions 1 - 20 of 158
openSUSE Build Service is sponsored by