remote: remember the selected remotes
[git-cola.git] / CHANGES.rst
bloba9c7066564b6bd8a5053703729079d3f6405e50c
1 .. _v4.6.2:
3 v4.6.2
4 ======
6 Usability, bells and whistles
7 -----------------------------
8 * The Fetch, Push and Pull dialogs now remember the selected remotes.
9   (`#729 <https://github.com/git-cola/git-cola/issues/729>`_)
11 * The Fetch, Push and Pull dialogs now display the git commands that will be run.
12   The Pull dialog now selects the remote branch automatically.
13   (`#729 <https://github.com/git-cola/git-cola/issues/729>`_)
15 * The `cola.refreshonfocus` and `cola.inotify` configuration settings are now accessible
16   from the `git cola config` settings dialog.
19 .. _v4.6.1:
21 v4.6.1
22 ======
24 Packaging
25 ---------
26 * `launchable` tags were added to the flatpak app metainfo files.
29 .. _v4.6.0:
31 v4.6.0
32 ======
34 Usability, bells and whistles
35 -----------------------------
36 * The Rebase editor (`git-cola-sequence-editor`) can now add "remarks" to commits.
37   Remarks are simple numbered flags (0-9) that allow you to mark commits. This lets
38   you visually highlight commits to aid you when rebasing and grouping related commits
39   across a large patch series. Remarks can be added to a single commit or to all
40   commits that touch a file.
41   (`#1375 <https://github.com/git-cola/git-cola/pull/1375>`_)
42   (`#1380 <https://github.com/git-cola/git-cola/pull/1380>`_)
44 * Invalid `commit.template` configuration is now reported in the `Console` tool
45   instead of presenting an error traceback dialog via a `UsageError` exception.
46   (`#1384 <https://github.com/git-cola/git-cola/issues/1384>`_)
48 Fixes
49 -----
50 * The file system monitor was corrected to catch `PermissionError` exceptions.
51   (`bz #2260155 <https://bugzilla.redhat.com/show_bug.cgi?id=2260155>`_)
53 Packaging
54 ---------
55 * If the `polib` module (e.g. `sudo apt install python3-polib`) is installed then it
56   will be used instead of the vendored `cola.polib` module. This makes it easier for
57   distributions to remove the vendored module from the `cola` namespace.
58   `polib` is now listed as an install requirement in `pyproject.toml`.
59   (`bz #2264526 <https://bugzilla.redhat.com/show_bug.cgi?id=2264526>`_)
61 * The flatpak metainfo now contains the required developer name field.
62   (`#1382 <https://github.com/git-cola/git-cola/pull/1382>`_)
64 Development
65 -----------
66 * The "actions/cache" and "styfle/cancel-workflow-action" github actions were upgraded.
68 * The test suite now uses ``ruff`` to validate python code. ``pylint`` is no longer used.
69   (`#1353 <https://github.com/git-cola/git-cola/issues/1353>`_)
70   (`#1383 <https://github.com/git-cola/git-cola/pull/1383>`_)
73 .. _v4.5.0:
75 v4.5.0
76 ======
78 Usability, bells and whistles
79 -----------------------------
80 * "Stage Modified" was added to the available toolbar actions.
81   (`#1371 <https://github.com/git-cola/git-cola/issues/1371>`_)
83 * "Stage Untracked" no longer stages modified files when the list of
84   untracked files to stage is empty.
85   (`#1371 <https://github.com/git-cola/git-cola/issues/1371>`_)
87 * `Ctrl + Space` can now be used to display the autocomplete options in input fields
88   that provide autocompletion.
90 * The Diff widget now displays the currently selected filename.
91   Uncheck the "Show filenames" option in the Diff widget's tool menu
92   to disable this feature.
93   (`#1367 <https://github.com/git-cola/git-cola/issues/1367>`_)
95 * The "Fetch", "Push" and "Pull" dialogs now have an embedded progress bar instead
96   of displaying a progress bar in a separate popup window.
98 * The "Fetch", "Push" and "Pull" dialogs will now stay open after the remote
99   operation completes when the "Close on completion" checkbox is unchecked.
100   These dialogs closed themselves unconditionally before this change.
102 Fixes
103 -----
104 * PyQt6 compatibility for the "Find in diff" feature.
106 * PyQt6 compatibility for the ``git dag`` Gravatar icons.
108 Translations
109 ------------
110 * Updated Polish translation.
111   (`#1368 <https://github.com/git-cola/git-cola/pull/1368>`_)
113 Packaging and Dependencies
114 --------------------------
115 * The vendored `qtpy` library was updated to `v2.4.1`.
117 * The documentation no longer depends on `jaraco.packaging`.
119 Development
120 -----------
121 * upload-artifact and setup-python github actions were upgraded.
124 .. _v4.4.1:
126 v4.4.1
127 ======
129 Usability, bells and whistles
130 -----------------------------
131 * The remote messages dialog is now displayed for the Pull and Push actions in the
132   Branches widget only. This dialog is disabled by default and enabled in the
133   main Push and Pull dialog settings.
134   (`#1363 <https://github.com/git-cola/git-cola/issues/1363>`_)
136 * The whole-file staging actions in the Diff widget's right-click menu are now listed
137   after the selection and hunk staging actions. This helps prevent accidental clicks
138   from clobbering the index for the entire file.
139   (`#1362 <https://github.com/git-cola/git-cola/issues/1362>`_)
141 * The completion popup no longer reappears after an item is selected in the
142   "Checkout Branch" action and similar dialogs.
143   (`#1360 <https://github.com/git-cola/git-cola/issues/1360>`_)
145 Fixes
146 -----
147 * PyQt6 compatibility was improved.
150 .. _v4.4.0:
152 v4.4.0
153 ======
155 Usability, bells and whistles
156 -----------------------------
157 * Git Cola now preserves `# commentary` in commit messages by default.
158   The `commit.cleanup` Git configuration variable can be used to
159   customize this behavior. For example, if you want Git Cola to
160   strip comments (the old behavior before v4.4.0) then
161   you can run `git config --global commit.cleanup strip` or configure
162   the "Commit Message Cleanup" setting in the Preferences window.
163   (`#1330 <https://github.com/git-cola/git-cola/issues/1330>`_)
165 * `git dag` now includes completions for `git log` options in the text input field.
167 * `git dag` now provides convenient search filters when right-clicking in the
168   text input field.
170 * A `1.25 x` Hi-DPI magnification option mode is now available in the Appearance settings.
171   (`#1313 <https://github.com/git-cola/git-cola/issues/1313>`_)
173 * MacOS-specific application themes are now available in the Appearance settings
174   when the pyobjc module is installed.
175   (`#905 <https://github.com/git-cola/git-cola/issues/905>`_)
177 * Git Cola now runs `git commit` in the background and feedback is provided while
178   the commit is running. This prevents the UI from freezing when running pre-commit
179   hooks that can make `git commit` take a long time to run.
180   (`#1320 <https://github.com/git-cola/git-cola/issues/1320>`_)
182 * The Diff context menu was reworked to reduce visual clutter and better match
183   the Status context menu.
184   (`#1347 <https://github.com/git-cola/git-cola/issues/1347>`_)
186 * The standalone `git cola tag` tool now autocompletes the tag name field.
187   (`#706 <https://github.com/git-cola/git-cola/pull/706>`_)
188   (`#691 <https://github.com/git-cola/git-cola/issues/691>`_)
190 * The "Branches" dock widget now has a "Visualize" right-click menu option.
191   (`#1061 <https://github.com/git-cola/git-cola/issues/1061>`_)
193 * The "Stash" dialog learned to rename stashes.
194   (`#558 <https://github.com/git-cola/git-cola/issues/558>`_)
196 * The "Fetch", "Push" and "Pull" dialogs can now display remote messages from the server.
197   (`#951 <https://github.com/git-cola/git-cola/issues/951>`_)
199 Fixes
200 -----
201 * `git dag` fixed how it was handling refspec arguments.
202   (`#1334 <https://github.com/git-cola/git-cola/issues/1334>`_)
204 * `git dag` will now properly refresh itself when remote branches are updated.
205   (`#1063 <https://github.com/git-cola/git-cola/issues/1063>`_)
207 * The `cola.inotify` feature no longer runs into issues when accessing WSL2
208   filesystems from Windows 11+.
209   (`#1194 <https://github.com/git-cola/git-cola/issues/1194>`_)
211 Development
212 -----------
213 * `cercis <https://pypi.org/project/cercis/>`_ is now being used to enforce
214   Git Cola's python code style. We were previously disabling quote normalization
215   when using `black`. Use of `cercis` allows us to enable quote normalization
216   under its default single-quote settings.
218 * The test suite now works on Windows.
219   (`#1331 <https://github.com/git-cola/git-cola/issues/1331>`_)
220   (`#1332 <https://github.com/git-cola/git-cola/pull/1332>`_)
222 * Pre-commits hooks and code modernization.
223   (`#1333 <https://github.com/git-cola/git-cola/pull/1333>`_)
225 * Compatibility with Sphinx 7.2.0 was added to the `sphinxtogithub`
226   sphinx documentation plugin.
227   (`#1336 <https://github.com/git-cola/git-cola/pull/1336>`_)
230 .. _v4.3.2:
232 v4.3.2
233 ======
235 Usability, bells and whistles
236 -----------------------------
237 * The minimum font size can now be set lower, which is helpful for Hi-DPI displays.
238   (`#1342 <https://github.com/git-cola/git-cola/pull/1342>`_)
240 Fixes
241 -----
242 * Flashing windows during startup on Windows has been fixed.
243   (`#1329 <https://github.com/git-cola/git-cola/issues/1329>`_)
245 * `git dag` was not displaying history when refspecs were specified.
246   (`#1334 <https://github.com/git-cola/git-cola/issues/1334>`_)
248 Development
249 -----------
250 * Compatibility with Sphinx 7.2.0 was added to the `sphinxtogithub`
251   sphinx documentation plugin.
252   (`#1336 <https://github.com/git-cola/git-cola/pull/1336>`_)
255 .. _v4.3.1:
257 v4.3.1
258 ======
260 Fixes
261 -----
262 * The pypi wheel was fixed to include `entry_points.txt`.
264 * The "Revert" command was throwing an exception after successfully completing.
267 .. _v4.3.0:
269 v4.3.0
270 ======
272 Usability, bells and whistles
273 -----------------------------
274 * `git dag` now displays commit metadata more similarly to `git log`.
275   The commit date is now displayed and the subject field is displayed
276   directly above the extended description.
278 * `git dag` now supports a `cola.logdate` configuration for controlling
279   the date format. The configured value is passed to `git log --date=<format>`.
280   (`#1319 <https://github.com/git-cola/git-cola/pull/1319>`_)
281   (`#1312 <https://github.com/git-cola/git-cola/issues/1312>`_)
283 * The default `patches` directory that is used when exporting patches
284   is now configurable using the `cola.patchesdirectory` configuration
285   variable and the Preferences dialog.
287 * The Diff Editor can now export the diff selection, or the current
288   diff hunk, to a `*.patch` file from the `Patches` context menu action.
290 * Existing patches can be appended to by choosing a patch file from
291   the `Append Patch` sub-menu in the `Patches` context menu action.
293 * Patches can now be applied by dragging and dropping patches files from
294   a file browser onto the diff editor. The "Apply Patches" dialog is
295   launched with the drag-and-dropped patch files.
297 * Shell completions for zsh are now provided in the source distribution.
298   See the `contrib/_git-cola` zsh completion file for more details
300 Fixes
301 -----
302 * ``QApplication::desktop()`` is no longer available on PyQt6.
303   Git Cola no longer relies on this method.
305 Packaging
306 ---------
307 * Git Cola can now be installed on Windows using `winget`.
308   See the ``README.md`` file for more details.
309   (`#1318 <https://github.com/git-cola/git-cola/pull/1318>`_)
312 .. _v4.2.1:
314 v4.2.1
315 ======
317 Fixes
318 -----
319 * Diffs for repositories with a single commit have been fixed.
320   (`#1306 <https://github.com/git-cola/git-cola/issues/1306>`_)
322 * The toolbars follow the Qt toolbar style, as they did prior to `v4.2.0`.
323   (`#1307 <https://github.com/git-cola/git-cola/issues/1307>`_)
325 * The "Checkout Branch" dialog was fixed to display all completions when first shown.
326   (`#1308 <https://github.com/git-cola/git-cola/issues/1308>`_)
329 .. _v4.2.0:
331 v4.2.0
332 ======
334 Usability, bells and whistles
335 -----------------------------
336 * The Diff Editor can now send diffs to your favorite editor before the diffs are applied.
337   The right-click "Edit Diff ..." menu actions and the `Ctrl + Shift + S` /
338   `Ctrl + Shift + U` hotkeys send the current diff hunk, or the selected diff, to your
339   editor before they are applied to the worktree / staging area.
340   (`#1290 <https://github.com/git-cola/git-cola/pull/1290>`_)
341   (`#794 <https://github.com/git-cola/git-cola/issues/794>`_)
343 * The Diff Editor and DAG viewer can now search within their diffs using
344   `Ctrl + F` and `Ctrl + G` hotkeys.
345   (`#1116 <https://github.com/git-cola/git-cola/issues/1116>`_)
347 * A new *Diff Mode* can be used to diff and unstage edits relative to any commit.
348   (`#816 <https://github.com/git-cola/git-cola/issues/816>`_)
350 * The Commit Message Editor can now spell-check the summary field. Previously only the
351   "Extended Description..." field supported spell checking.
352   (`#633 <https://github.com/git-cola/git-cola/issues/633>`_)
353   (`#1070 <https://github.com/git-cola/git-cola/issues/1070>`_)
355 * Repositories in your "Recents" and "Favorites" can now be searched using the new
356   "Search" tool button. Quickly switch between these repositories using the `Alt + P`
357   hotkey and "Quick Open..." File menu action.
358   (`#1282 <https://github.com/git-cola/git-cola/pull/1282>`_)
360 * "Favorites", "Recents" and the startup dialog now display a case-insensitively
361   sorted list of repositories.
362   (`#1047 <https://github.com/git-cola/git-cola/issues/1047>`_)
364 * The startup dialog now has a right-click context menu that allows you to prune
365   stale entries and other actions that were not previously accessible from
366   the startup dialog.
367   (`#1199 <https://github.com/git-cola/git-cola/issues/1199>`_)
368   (`#1280 <https://github.com/git-cola/git-cola/pull/1280>`_)
370 * The "Copy Leading Paths" action in the Status tool's right-click "Copy" sub-menu
371   can now strip off an arbitrary number of leading paths.
372   (`#784 <https://github.com/git-cola/git-cola/issues/784>`_)
374 * The "Cherry-Pick" action now reports errors when "git cherry-pick" fails.
375   A new "Abort Cherry-Pick" action has been added for aborting a failed cherry-pick.
376   (`#1062 <https://github.com/git-cola/git-cola/issues/1062>`_)
378 * The diff text can now be quickly zoomed using `Ctrl + Mouse wheel` scroll.
379   This will quickly change the text size within the current session only.
380   (`#1029 <https://github.com/git-cola/git-cola/issues/1029>`_)
382 * The Console and Diff widgets learned to open URLs. Right-click on a line
383   that contains http URLs and context-menu actions for opening each URL
384   using your default web browser will be displayed.
385   (`#1139 <https://github.com/git-cola/git-cola/issues/1139>`_)
387 * Drag-and-drop has been improved when dragging filenames from the Status tool.
388   Dragging multiple files requires special handling to improve usability.
389   Some terminals (such as `kitty`) consume multiple file URLs by separating paths with
390   newlines. This is useful when you'd like to capture raw filenames but is less
391   convenient when dropping  filenames onto a command-line. Drag with the `Alt`-modifier
392   held down to drag-and-drop filenames for command-line use. Using the `Alt` modifier
393   omits URLs so that the drag-and-drop payload includes only space-delimited,
394   shell-quoted paths.
395   (`#719 <https://github.com/git-cola/git-cola/issues/719>`_)
397 * The DAG viewer now displays the diff between the start and end commits when
398   multiple commits are selected. The diffs are displayed in the DAG's diff viewer.
399   (`#552 <https://github.com/git-cola/git-cola/issues/552>`_)
401 * The DAG viewer learned to checkout branches and initiate rebases from its right-click menu.
402   (`#1113 <https://github.com/git-cola/git-cola/issues/1113>`_)
404 * The DAG diff viewer learned to word-wrap the diff text.
405   (`#1242 <https://github.com/git-cola/git-cola/issues/1242>`_)
407 * The spelling dictionaries are now discovered dynamically at runtime.
408   `dict/words` and `dict/propernames` are now discovered via `$XDG_DATA_DIRS`
409   by the spell checker. This allows a spelling dictionary to be placed in e.g..
410   `~/.local/share/dict/words` to override the default `/usr/share/dict/words`.
411   (`#873 <https://github.com/git-cola/git-cola/issues/873>`_)
413 * The File menu now has a "Patches" sub-menu with a full set of "git am" Patch actions.
415 * The Diff Editor and various Diff widgets now have a "Copy Diff" action with an
416   `Alt + Shift + C` hotkey that copies the selected diff text to the clipboard with the
417   `+`, `-` and `<Space>` diff prefix characters removed.
418   (`#1288 <https://github.com/git-cola/git-cola/issues/1288>`_)
420 * The "Revert" action for reverting commits from the DAG tool now displays error
421   messages when ``git revert`` fails.
422   (`#885 <https://github.com/git-cola/git-cola/issues/885>`_)
424 * The Diff Editor now uses an easier-to-see *block cursor* by default.
425   Disable `cola.blockcursor <https://git-cola.readthedocs.io/en/latest/git-cola.html#cola-blockcursor>`_
426   to continue using original *line cursor* by running
427   ``git config --global cola.blockcursor false``, or by editing the settings in the menu.
429 * The "Unmerged" header item in the Status tool now displays a summary list of unmerged files.
431 * The hotkeys documentation has been updated to clarify that the "Copy Commit ID"
432   action is available in several tools.
433   (`#779 <https://github.com/git-cola/git-cola/issues/779>`_)
435 * Saving files when using "Browse Other Branch" now displays errors from
436   ``git show`` when saving files from arbitrary commits.
437   (`#1065 <https://github.com/git-cola/git-cola/issues/1065>`_)
439 * The Apply Patches dialog now reports errors when patches fail to apply.
440   (`#673 <https://github.com/git-cola/git-cola/issues/673>`_)
442 * The "Status" tool now disables "Copy" actions in its context menu when no
443   files have been selected.
444   (`#697 <https://github.com/git-cola/git-cola/issues/697>`_)
446 * The "Unstage" menu item in the Status tool now uses a "Remove" icon.
447   (`#1289 <https://github.com/git-cola/git-cola/pull/1289>`_)
449 Development
450 -----------
451 * The vendored `qtpy` module was modified to sever its dependency on the
452   `packaging.version` module. This mostly affects users that want to run
453   Git Cola directly from the source tree outside of any virtualenv.
454   (`#1286 <https://github.com/git-cola/git-cola/issues/1286>`_)
457 .. _v4.1.0:
459 v4.1.0
460 ======
462 Usability, bells and whistles
463 -----------------------------
464 * The rebase editor was taught to handle stacked branch workflows enabled by
465   ``git rebase --update-refs``. The ``git cola rebase`` sub-command now has
466   an ``--update-refs`` option and the menu actions display a prompt that allows
467   you to enable the updating of stacked branches.
468   (`#1261 <https://github.com/git-cola/git-cola/pull/1261>`_)
469   (`#571 <https://github.com/git-cola/git-cola/issues/571>`_)
471 * The status widget now respects `diff.ignoreSubmodules`.
472   (`#1269 <https://github.com/git-cola/git-cola/issues/1269>`_)
474 Packaging and Dependencies
475 --------------------------
476 * PyQt6 is now officially supported.
477   (`#1211 <https://github.com/git-cola/git-cola/issues/1211>`_)
478   (`#1273 <https://github.com/git-cola/git-cola/issues/1273>`_)
480 * The vendored `qtpy` library was updated to `v2.3.0`.
482 Development
483 -----------
484 * Fixes and updates to Git Cola's CI actions.
485   (`#1278 <https://github.com/git-cola/git-cola/pull/1278>`_)
486   (`#1277 <https://github.com/git-cola/git-cola/issues/1277>`_)
489 .. _v4.0.4:
491 v4.0.4
492 ======
494 Fixes
495 -----
496 * The "T" hotkey for "Find Files" was removed to avoid issues in some configurations.
497   (`#1270 <https://github.com/git-cola/git-cola/issues/1270>`_)
499 * Some context menus entries were corrected to better handle binary files.
500   (`#1271 <https://github.com/git-cola/git-cola/pull/1271>`_)
503 .. _v4.0.3:
505 v4.0.3
506 ======
508 Usability, bells and whistles
509 -----------------------------
510 * The branches widget no longer loses its selection state in response to
511   notifications and UI actions.
512   (`#1221 <https://github.com/git-cola/git-cola/issues/1221>`_)
514 * The use of ``gravatar.com`` to fetch icons associated with author emails
515   can now be disabled by setting `git config --global cola.gravatar false`.
516   (`#933 <https://github.com/git-cola/git-cola/issues/933>`_)
518 Fixes
519 -----
520 * The config reader has been revamped to better read settings when git config
521   files are located in unexpected locations.
522   (`#927 <https://github.com/git-cola/git-cola/issues/927>`_)
523   (`#1264 <https://github.com/git-cola/git-cola/issues/1264>`_)
525 * The preferences dialog no longer throws an error when the editor has not
526   been configured.
527   (`#1263 <https://github.com/git-cola/git-cola/issues/1263>`_)
529 * Context menu actions for staging files has been added when diffing images.
530   (`#1265 <https://github.com/git-cola/git-cola/issues/1265>`_)
532 * The stash editor now properly displays stashes with slashes ("/") in
533   their names or messages.
534   (`#1267 <https://github.com/git-cola/git-cola/pull/1267>`_)
536 * The settings file is now written-to and read-from in a robust manner to avoid data
537   loss when doing an ACPI shutdown or forced shutdown of a machine.
538   (`#1241 <https://github.com/git-cola/git-cola/issues/1241>`_)
540 * Git Cola now displays an error message when attempting to open a repository that
541   cannot be accessed due to the new `safe.directory` protections in Git v2.30.3.
542   (`#1243 <https://github.com/git-cola/git-cola/issues/1243>`_)
544 Translations
545 ------------
546 * The .po and .pot files now contain location information.
547   (`#880 <https://github.com/git-cola/git-cola/issues/880>`_)
550 .. _v4.0.2:
552 v4.0.2
553 ======
555 Usability, bells and whistles
556 -----------------------------
557 * The Rebase editor (`git-cola-sequence-editor`) now supports multi-select.
558   Use `Shift-{Up,Down}` to select multiple lines and the keyboard hotkeys
559   listed in the `?` dialog to drive the UI.
560   (`#1257 <https://github.com/git-cola/git-cola/pull/1257>`_)
562 * The `$GIT_VISUAL` and `$VISUAL` environment variable are now consulted in addition
563   to `$GIT_EDITOR` and `$EDITOR` when the `gui.editor` configuration is unset.
564   (`#1237 <https://github.com/git-cola/git-cola/pull/1237>`_)
566 * The application window icon is now enabled when running on Wayland.
567   (`#1240 <https://github.com/git-cola/git-cola/pull/1240>`_)
569 * The Status widget now has an "Open Worktree" action.
570   (`#1245 <https://github.com/git-cola/git-cola/pull/1245>`_)
572 * The "Open Using Default Application", "Open Directory",
573   "Open Parent Directory" and "Open Worktree" actions are now available on Windows.
575 * The dialog for opening repositories is now a read-only dialog that omits the
576   ability to create folders and modify the filesystem.
577   (`#1168 <https://github.com/git-cola/git-cola/issues/1168>`_)
579 * A few more `git` calls have been eliminated from the startup sequence.
580   This further improved the startup time for Git Cola.
581   (`#1259 <https://github.com/git-cola/git-cola/pull/1259>`_)
583 Fixes
584 -----
585 * Documentation rendering errors have been fixed.
586   (`#1256 <https://github.com/git-cola/git-cola/pull/1256>`_)
588 * Use of a `~/.config/git-cola/language` file to override the language has been fixed.
589   (`#1246 <https://github.com/git-cola/git-cola/issues/1246>`_)
591 * We no longer write the `cola.spellcheck` configuration value on launch.
592   (`#1238 <https://github.com/git-cola/git-cola/pull/1238>`_)
594 Translations
595 ------------
596 * Updated Spanish translation.
597   (`#1244 <https://github.com/git-cola/git-cola/pull/1244>`_)
599 * Updated Japanese translation.
600   (`#1249 <https://github.com/git-cola/git-cola/pull/1249>`_)
602 Packaging
603 ---------
604 * Building documentation offline is supported again.
605   (`#1250 <https://github.com/git-cola/git-cola/issues/1250>`_)
607 * The Appstream Metadata files were missing in the v4.0.0 release are included again.
608   (`#1254 <https://github.com/git-cola/git-cola/pull/1254>`_)
609   (`#1253 <https://github.com/git-cola/git-cola/issues/1253>`_)
612 .. _v4.0.1:
614 v4.0.1
615 ======
617 Usability, bells and whistles
618 -----------------------------
619 * Double-clicking dock widgets no longer creates sub-windows when the layout is locked.
620   (`#1176 <https://github.com/git-cola/git-cola/issues/1176>`_)
621   (`#1198 <https://github.com/git-cola/git-cola/pull/1198>`_)
623 Fixes
624 -----
625 * We now guard against `locale.getdefaultlocale()` returning `None` in some
626   configurations, notably on macOS if none of 'LC_ALL', 'LC_CTYPE', 'LANG' or 'LANGUAGE'
627   are defined.
628   (`#1234 <https://github.com/git-cola/git-cola/issues/1234>`_)
630 * The preferences dialog has been fixed to properly handle booleans.
631   (`#1235 <https://github.com/git-cola/git-cola/pull/1235>`_)
633 * The `docs/` directory was restructured to avoid missing `setup.py` errors.
634   `share/doc/git-cola` is now a symlink pointing to `docs/`.
635   (`#1230 <https://github.com/git-cola/git-cola/issues/1230>`_)
637 * Message boxes could sometimes display off-screen or using geometry that is larger
638   than the current desktop. Message box sizes are now clamped to the desktop size.
639   (`#1228 <https://github.com/git-cola/git-cola/issues/1228>`_)
642 .. _v4.0.0:
644 v4.0.0
645 ======
647 Breaking Changes
648 ----------------
649 These changes are primarily breaking changes for packagers of Git Cola.
650 For example, Linux distribution and Homebrew package maintainers may need to
651 be aware of these changes.
653 Changes have been made build infrastructure and the resulting filesystem artifacts.
655 * The build system is now Python3-only and has been modernized for PEP-517/518.
656   While Git Cola still builds and runs under Python2, it is no longer officially
657   supported and may stop working in a future release without notice.
658   (`#1201 <https://github.com/git-cola/git-cola/issues/1201>`_)
660 * The `#!/usr/bin/env python` shebang lines in the `git-cola` and `git-dag` wrapper
661   scripts have been updated to use `python3`.
662   (`#1204 <https://github.com/git-cola/git-cola/pull/1204>`_)
664 * The build system was switched to `setuptools` and no longer depends on `distutils`.
665   ``python setup.py {build,install,build_pot,build_mo}`` are no longer provided.
666   Use the https://pypa-build.readthedocs.io/en/stable/installation.html
667   ``python -m build`` tool to generate sdist and wheel distributions,
668   and ``pip install .`` to install Git Cola from source.
669   (`#1204 <https://github.com/git-cola/git-cola/pull/1204>`_)
671 * The `git-cola`, `git-dag` and `git-cola-sequence-editor` commands are now installed
672   using setuptools entry points.
674 * The `bin/` wrapper scripts in the source tree continue to be provided for convenience
675   but they are not the scripts that get installed.
677 * The `qtpy` Python package is no longer installed alongside the `cola` Python package.
679 * The `cola` package is now installed into the standard Python site-packages location.
681 * The `share/git-cola/lib` private Python modules directory no longer exists.
683 * The `NO_VENDOR_LIBS` and `NO_PRIVATE_LIBS` Makefile options are no longer necessary.
685 * The `share/git-cola` filesystem namespace no longer exists. All of cola's package data
686   is distributed alongside the `cola` module as package data.
688 * Building the Sphinx documentation now also requires the `jaraco.packaging` and
689   `rst.linker` packages. See `setup.cfg` for the package requirement details.
691 Usability, bells and whistles
692 -----------------------------
693 * `Custom UI themes
694   <https://git-cola.readthedocs.io/en/latest/git-cola.html#custom-themes>`_
695   can be used by adding `*.qss` Qt stylesheet files to `~/.config/git-cola/themes/`.
696   (`#1222 <https://github.com/git-cola/git-cola/pull/1222>`_)
697   (`#1226 <https://github.com/git-cola/git-cola/pull/1226>`_)
699 * Git Cola now keeps track of child Browser windows and will close all of them when
700   the main window is closed.
701   (`#1200 <https://github.com/git-cola/git-cola/pull/1200>`_)
703 Fixes
704 -----
705 * Staging conflicted binary files has been fixed to avoid Unicode decoding errors.
706   (`#1189 <https://github.com/git-cola/git-cola/issues/1189>`_)
708 * Ensure that secure permissions are used when creating temporary files.
709   (`#1209 <https://github.com/git-cola/git-cola/pull/1209>`_)
711 * The line numbering in the diff viewer was corrected when displaying merge diffs.
712   (`#1208 <https://github.com/git-cola/git-cola/pull/1208>`_)
714 * Documentation typo fixes.
715   (`#1193 <https://github.com/git-cola/git-cola/pull/1193>`_)
717 * Git Cola was revamped to use Qt signals and slots for all of its notifications.
718   This made its notification system more robust.
719   (`#1202 <https://github.com/git-cola/git-cola/pull/1202>`_)
720   (`#1203 <https://github.com/git-cola/git-cola/pull/1203>`_)
721   (`#1205 <https://github.com/git-cola/git-cola/pull/1205>`_)
722   (`#1206 <https://github.com/git-cola/git-cola/pull/1206>`_)
724 Packaging
725 ---------
726 * `vcruntime140.dll` and `msvcp140.dll` are now included in the Windows installation.
727   (`#1207 <https://github.com/git-cola/git-cola/pull/1207>`_)
730 .. _v3.12.0:
732 v3.12.0
733 =======
735 Usability, bells and whistles
736 -----------------------------
737 * The git config guitool action can now be grouped under user-defined menus.
738   This is done by using slash (``/``) delimiters in the action name.
739   Entries before the final slash are treated like sub-menus inside the
740   top-level ``Actions`` menu.
741   (`#1150 <https://github.com/git-cola/git-cola/issues/1150>`_)
743 * Toolbars now have a full set of icons. The icons follow the system theme
744   and can be configured to display text, just icons, or text and icons.
745   (`#1177 <https://github.com/git-cola/git-cola/pull/1177>`_)
747 * The startup dialog will now open the selected repository when the "enter"
748   key is pressed.
749   (`#1162 <https://github.com/git-cola/git-cola/issues/1162>`_)
751 * ``Shift+S`` will stage selected lines (in addition to ``s``).
752   (`#1187 <https://github.com/git-cola/git-cola/issues/1187>`_)
754 Fixes
755 -----
756 * The vendored qtpy library was patched to retain Python2 compatibility.
758 * The "Unstage" toolbar action was fixed.
759   (`#1178 <https://github.com/git-cola/git-cola/issues/1178>`_)
761 * We now avoid `QWidget::setWidth(float)` for compatibility with newer Qt versions.
762   (`#1183 <https://github.com/git-cola/git-cola/pull/1183>`_)
764 * Documentation typo fixes.
765   (`#1185 <https://github.com/git-cola/git-cola/pull/1185>`_)
767 Translations
768 ------------
769 * Updated Polish translation.
770   (`#1184 <https://github.com/git-cola/git-cola/pull/1184>`_)
772 Development
773 -----------
774 * Git Cola now uses Github Actions for running its continuous integration tests.
775   (`#1179 <https://github.com/git-cola/git-cola/pull/1179>`_)
778 .. _v3.11.0:
780 v3.11.0
781 =======
783 Usability, bells and whistles
784 -----------------------------
785 * The Status tool was improved to better retain selected files when
786   the state changes and the display is refreshed.
787   (`#1130 <https://github.com/git-cola/git-cola/issues/1130>`_)
788   (`#1131 <https://github.com/git-cola/git-cola/pull/1131>`_)
790 * The Diff editor can now stage selected lines for untracked files.
791   Git Cola will detect when a file is untracked and will allow you to
792   partially stage it, just like existing tracked files.
793   (`#1146 <https://github.com/git-cola/git-cola/pull/1146>`_)
794   (`#1084 <https://github.com/git-cola/git-cola/issues/1084>`_)
796 * Diffing of staged files has been implemented for repositories that contain
797   no commits.
798   (`#1149 <https://github.com/git-cola/git-cola/pull/1149>`_)
799   (`#1110 <https://github.com/git-cola/git-cola/issues/1110>`_)
801 * Documentation improvements and typo fixes.
802   (`#1163 <https://github.com/git-cola/git-cola/pull/1163>`_)
803   (`#1164 <https://github.com/git-cola/git-cola/pull/1164>`_)
805 Security
806 --------
807 * The `FIPS security mode <https://github.com/python/cpython/issues/53462>`_
808   is now supported by Git Cola when running on FIPS-enabled Python
809   (Python 3.9+ or centos8/rhel8's patched Python 3.6).
810   (`#1157 <https://github.com/git-cola/git-cola/issues/1157>`_)
812 Fixes
813 -----
814 * The `argparse` usage was adjusted to remain compatible with older Pythons.
815   (`#1155 <https://github.com/git-cola/git-cola/issues/1155>`_)
817 * The window restoration logic was fixed to properly save/restore settings
818   when different languages are used.
819   (`#1071 <https://github.com/git-cola/git-cola/issues/1071>`_)
820   (`#1161 <https://github.com/git-cola/git-cola/issues/1161>`_)
821   (`#382 <https://github.com/git-cola/git-cola/issues/382>`_)
823 * `git dag` no longer passes floats to `QPen::setWidth()` for better compatibility.
824   (`bz #2014950 <https://bugzilla.redhat.com/show_bug.cgi?id=2014950>`_)
826 Packaging
827 ---------
828 * The Windows installer was slimmed down by removing unused Qt DLLs.
829   (`#1152 <https://github.com/git-cola/git-cola/pull/1152>`_)
832 .. _v3.10.1:
834 v3.10.1
835 =======
837 Fixes
838 -----
839 * Patch release to fix a typo in the Interactive Rebase feature.
841 .. _v3.10:
843 v3.10
844 =====
846 Usability, bells and whistles
847 -----------------------------
848 * The git config reader now supports the `include.path` directive
849   for including config files.
850   (`#1136 <https://github.com/git-cola/git-cola/issues/1136>`_)
851   (`#1137 <https://github.com/git-cola/git-cola/pull/1137>`_)
853 * The dialog for selecting commits now support filtering.
854   (`#1121 <https://github.com/git-cola/git-cola/pull/1121>`_)
856 * The diff editor now wraps long lines by default. The diff options
857   menu can be used to enable/disable line wrapping.
858   (`#1123 <https://github.com/git-cola/git-cola/pull/1123>`_)
860 * Git Cola now honors `core.hooksPath` for configuring custom Git hooks,
861   which was introduced in Git v2.9.
862   (`#1118 <https://github.com/git-cola/git-cola/issues/1118>`_)
864 * A new `Ctrl + Shift + S` hotkey was added for staging/unstaging all
865   files, both modified and untracked.
867 * The `Status` tool now supports `Ctrl + A` for selecting all files and
868   it behaves more predictably when performing operations when multiple
869   categories of files are selected (e.g. when both modified and untracked
870   header items are selected).
871   (`#1117 <https://github.com/git-cola/git-cola/issues/1117>`_)
873 Translations
874 ------------
875 * Updated Hungarian translation.
876   (`#1135 <https://github.com/git-cola/git-cola/pull/1135>`_)
878 Fixes
879 -----
880 * The "Interactive Rebase" feature was updated to work with Windows.
882 * `make install-man` was updated to support Sphinx 4.0.
883   (`#1141 <https://github.com/git-cola/git-cola/issues/1141>`_)
885 * `git cola --help-commands` was updated for newer versions of argparse.
886   (`#1133 <https://github.com/git-cola/git-cola/issues/1133>`_)
888 Development
889 -----------
890 * Git Cola can now be started as a Python module.
891   (`#1119 <https://github.com/git-cola/git-cola/pull/1119>`_)
894 .. _v3.9:
896 v3.9
897 ====
899 Usability, bells and whistles
900 -----------------------------
901 * The startup dialog now detects when Recent and Favorite repositories no
902   longer exist on disk, and offers to remove these entries when selected.
903   (`#1089 <https://github.com/git-cola/git-cola/pull/1089>`_)
905 * The startup dialog now includes a simpler and more condensed folder view
906   that can be used for selecting Favorites and Recent repositories.
907   (`#1086 <https://github.com/git-cola/git-cola/pull/1086>`_)
909 * The "Commit" menu now includes an "Undo Last Commit" action.
910   (`#890 <https://github.com/git-cola/git-cola/issues/890>`_)
912 * The "Reset" menu was revamped to expose all of Git's reset modes alongside a
913   new "Restore Worktree" action that updates the worktree using "git read-tree".
914   (`#890 <https://github.com/git-cola/git-cola/issues/890>`_)
916 Translations
917 ------------
918 * Updated Polish translation.
919   (`#1107 <https://github.com/git-cola/git-cola/pull/1107>`_)
921 * Updated Japanese translation.
922   (`#1098 <https://github.com/git-cola/git-cola/pull/1098>`_)
924 * Updated Brazilian translation.
925   (`#1091 <https://github.com/git-cola/git-cola/pull/1091>`_)
927 Packaging
928 ---------
929 * The ``--use-env-python`` option for ``setup.py`` is now Python3 compatible.
930   (`#1102 <https://github.com/git-cola/git-cola/issues/1102>`_)
933 .. _v3.8:
935 v3.8
936 ====
938 Usability, bells and whistles
939 -----------------------------
940 * The submodules widget can now be used to add submodules.
941   Submodules are now updated recursively.
942   (`#534 <https://github.com/git-cola/git-cola/issues/534>`_)
944 * The image diff viewer can now be toggled between text and image modes.
945   This is helpful when, for example, diffing .svg files where it can be useful
946   to see diffs in both an image and text representation.
947   (`#859 <https://github.com/git-cola/git-cola/issues/859>`_)
948   (`#1035 <https://github.com/git-cola/git-cola/pull/1035>`_)
950 * The default `ssh-askpass` username + password dialog included with Git Cola
951   can now toggle between showing and masking the password input field.
952   (`#1069 <https://github.com/git-cola/git-cola/pull/1069>`_)
954 Translations
955 ------------
956 * Updated Polish translation.
957   (`#1076 <https://github.com/git-cola/git-cola/pull/1076>`_)
959 * Updated Hungarian translation.
960   (`#1067 <https://github.com/git-cola/git-cola/pull/1067>`_)
962 Packaging
963 ---------
964 * The `share/appdata` AppStream data was renamed to `share/metainfo`
965   in accordance with `AppStream standard changes from 2016
966   <https://github.com/ximion/appstream/blob/master/NEWS#L1363>`_.
967   (`#1079 <https://github.com/git-cola/git-cola/pull/1079>`_)
969 * The ``cola`` modules are now installed into the Python ``site-packages``
970   directory by default.  This allows distributions to package ``git-cola`` for
971   multiple versions of Python.  See the PACKAGING NOTES section in the README
972   for details about suppressing the installation of the private
973   ``share/git-cola/lib/cola`` modules when building cola.
974   (`#181 <https://github.com/git-cola/git-cola/issues/181>`_)
976 * Git Cola's rebase / sequence editor, formerly known as ``git-xbase`` and
977   installed as ``share/git-cola/bin/git-xbase``, has been renamed to
978   ``git-cola-sequence-editor`` and is now installed into the default
979   ``bin/git-cola-sequence-editor`` executable location to enable external
980   reuse of this general-purpose tool.
982 * A workaround used by the pynsist installer preamble script was obsoleted by
983   `takluyver/pynsist#149 <https://github.com/takluyver/pynsist/pull/149>`_
984   and has now been removed.
985   (`#1073 <https://github.com/git-cola/git-cola/pull/1073>`_)
987 Fixes
988 -----
989 * `git dag` now uses integer widths when initializing its brushes.
990   (`#1080 <https://github.com/git-cola/git-cola/pull/1080>`_)
993 .. _v3.7:
995 v3.7
996 ====
998 Usability, bells and whistles
999 -----------------------------
1000 * The ``git-xbase`` rebase editor now includes a file list for filtering
1001   the changes displayed in the diff view.
1002   (`#1051 <https://github.com/git-cola/git-cola/pull/1051>`_)
1004 * The fallback `ssh-askpass` script, which provides the Username/Password
1005   login dialog when performing remote operations, previously presented both
1006   the username and password input fields with ``***`` asterisks.
1007   The dialog now uses asterisks for the password field only.
1008   (`#1026 <https://github.com/git-cola/git-cola/pull/1026>`_)
1010 * Stashes can now be applied using the `Ctrl + Enter` hotkey, popped with the
1011   `Ctrl + Backspace` hotkey, and dropped with the `Ctrl + Shift + Backspace`
1012   hotkey when inside the stash dialog.  This enables a keyboard-centric
1013   mouse-free workflow when using the stash dialog.
1015 * When amending a commit, `git cola` will check whether the commit has been
1016   published to a remote branch using ``git branch -r --contains HEAD``.
1017   This command can be slow when operating on a repository with many
1018   remote branches.  The new `cola.checkpublishedcommits` configuration
1019   variable allows you to opt-out of this check, which improves performance
1020   when amending a commit.  The settings widget exposes this variable as,
1021   "Check Published Commits when Amending".
1022   (`#1021 <https://github.com/git-cola/git-cola/issues/1021>`_)
1023   (`#1027 <https://github.com/git-cola/git-cola/pull/1027>`_)
1025 Translations
1026 ------------
1027 * Updated Polish translation.
1028   (`#1033 <https://github.com/git-cola/git-cola/pull/1033>`_)
1030 Fixes
1031 -----
1032 * ``git-dag.appdata.xml`` was updated to allow network access for author icons.
1033   (`#1050 <https://github.com/git-cola/git-cola/pull/1050>`_)
1035 * The inotify filesystem monitor now handles
1036   `OSError: [Errno 24] Too many open files` errors by disabling inotify.
1037   (`#1015 <https://github.com/git-cola/git-cola/issues/1015>`_)
1039 * Typos in various documentation files have been fixed.
1040   (`#1025 <https://github.com/git-cola/git-cola/pull/1025>`_)
1042 * The "Recent Repositories" limit was off by one, and now correctly
1043   remembers the configured number of repositories in the menu.
1044   (`#1024 <https://github.com/git-cola/git-cola/pull/1024>`_)
1046 * The "revert" action in the DAG and other tools now uses
1047   ``git revert --no-edit``, which avoids launching an editor
1048   when reverting the commit.  Use `Ctrl+m` in the commit message
1049   editor after reverting a commit to rewrite its commit message.
1050   (`#1020 <https://github.com/git-cola/git-cola/issues/1020>`_)
1053 .. _v3.6:
1055 v3.6
1056 ====
1058 Usability, bells and whistles
1059 -----------------------------
1060 * The remote editor is much faster since it no longer queries
1061   remotes, and uses the cached information instead.
1062   (`#986 <https://github.com/git-cola/git-cola/issues/986>`_)
1064 * Commit message templates can now be loaded automatically by setting
1065   ``git config cola.autoloadcommittemplate true``.
1066   (`#1013 <https://github.com/git-cola/git-cola/pull/1013>`_)
1067   (`#735 <https://github.com/git-cola/git-cola/pull/735>`_)
1069 * The UI layout can now be reset back to its initial state by selecting
1070   the "Reset Layout" action.  This reverts the layout to the same state
1071   as when the app first launched.
1072   (`#1008 <https://github.com/git-cola/git-cola/pull/1008>`_)
1073   (`#994 <https://github.com/git-cola/git-cola/issues/994>`_)
1075 * Files can now be ignored in either the project's `.gitignore`, or in the
1076   repository's private local `.git/info/exclude` ignore file.
1077   (`#1006 <https://github.com/git-cola/git-cola/pull/1006>`_)
1078   (`#1000 <https://github.com/git-cola/git-cola/issues/1000>`_)
1080 * New remotes are now selected when they are added in the "Edit Remotes" tool.
1081   (`#1002 <https://github.com/git-cola/git-cola/pull/1002>`_)
1083 * The "Recent" repositories list is now saved to disk when opening a
1084   repository.  Previously, this list was only updated when exiting the app.
1085   (`#1001 <https://github.com/git-cola/git-cola/pull/1001>`_)
1087 * The bookmarks tool now has a "Delete" option in its right-click menu.
1088   (`#999 <https://github.com/git-cola/git-cola/pull/999>`_)
1090 * The current repository is no longer listed in the "File/Open Recent" menu.
1091   (`#998 <https://github.com/git-cola/git-cola/pull/998>`_)
1093 Translations
1094 ------------
1095 * Updated Hungarian translation.
1096   (`#1005 <https://github.com/git-cola/git-cola/pull/1005>`_)
1097   (`#1018 <https://github.com/git-cola/git-cola/pull/1018>`_)
1099 * Updated Turkish translation.
1100   (`#1003 <https://github.com/git-cola/git-cola/pull/1003>`_)
1101   (`#1011 <https://github.com/git-cola/git-cola/pull/1011>`_)
1103 Fixes
1104 -----
1105 * Better support for Python 3.8's line buffering modes.
1106   (`#1014 <https://github.com/git-cola/git-cola/pull/1014>`_)
1108 * The default `ssh-askpass` script now uses a more generic `#!` shebang line.
1109   (`#1012 <https://github.com/git-cola/git-cola/pull/1012>`_)
1111 * Fetch, push, and pull operations will now refresh the model and display when
1112   operations complete.
1113   (`#996 <https://github.com/git-cola/git-cola/issues/996>`_)
1115 * The branches widget now refreshes its display when changing branches.
1116   (`#992 <https://github.com/git-cola/git-cola/pull/992>`_)
1118 Packaging
1119 ---------
1120 * The `share/git-cola/bin/git-xbase` script will now have its `#!` lines
1121   updated during installation.
1122   (`#991 <https://github.com/git-cola/git-cola/pull/991>`_)
1124 Development
1125 -----------
1126 * The unit tests were made more platform-independent.
1127   (`#993 <https://github.com/git-cola/git-cola/pull/993>`_)
1130 .. _v3.5:
1132 v3.5
1133 ====
1135 Usability, bells and whistles
1136 -----------------------------
1137 * Auto-completion for filenames can now be disabled.  This speeds up
1138   revision completion when working in large repositories with many files.
1139   (`#981 <https://github.com/git-cola/git-cola/pull/981>`_)
1141 * The Stash dialog now shows the stash date as a tooltip when hovering
1142   over a stashed change.
1143   (`#982 <https://github.com/git-cola/git-cola/pull/982>`_)
1145 * Qt HiDPI settings are overridden by the `git cola` HiDPI appearance settings.
1146   These overrides can now be disabled by selecting the "Disable" mode.
1147   This allows users to control the Qt HiDPI settings through environment
1148   variables.  Additionally, the "Auto" mode now detects the presence of
1149   the Qt HiDPI variables and no longer overrides them when the user has
1150   configured their environment explicitly.
1151   (`#963 <https://github.com/git-cola/git-cola/issues/963>`_)
1153 * Confirmation dialogs can now focus buttons using the Tab key.
1154   Previously, the "Y" and "N" keys could be used to confirm or deny
1155   using the keyboard, but "Tab" is more familiar.
1156   (`#965 <https://github.com/git-cola/git-cola/issues/965>`_)
1158 * Error dialogs (for example, when a commit hook fails) will now always
1159   show the details.  The details were previously hidden behind a toggle.
1160   (`#968 <https://github.com/git-cola/git-cola/issues/968>`_)
1162 Translations
1163 ------------
1164 * Updated Japanese translation.
1165   (`#973 <https://github.com/git-cola/git-cola/pull/973>`_)
1166   (`#974 <https://github.com/git-cola/git-cola/pull/974>`_)
1168 * Updated Simplified Chinese translation.
1169   (`#950 <https://github.com/git-cola/git-cola/pull/950>`_)
1171 Fixes
1172 -----
1173 * The filesystem monitor no longer logs that it has been enabled after the
1174   inotify watch limit is reached on Linux.
1175   (`#984 <https://github.com/git-cola/git-cola/pull/984>`_)
1177 * Better Unicode robustness.
1178   (`#990 <https://github.com/git-cola/git-cola/issues/990>`_)
1179   (`#910 <https://github.com/git-cola/git-cola/issues/991>`_)
1181 * The "Branches" widget did not always update itself when deleting branches
1182   (for example, when inotify is disabled or unavailable).
1183   (`#978 <https://github.com/git-cola/git-cola/issues/978>`_)
1185 * Non-ASCII Unicode byte strings are more robustly handled by the log widget.
1186   (`#977 <https://github.com/git-cola/git-cola/issues/977>`_)
1188 * Non-Unicode results from the `gettext` library are more robustly handled.
1189   (`#969 <https://github.com/git-cola/git-cola/issues/969>`_)
1191 * Launching `git cola` from within a directory that has since been deleted
1192   would previously result in an error, and is now robustly handled.
1193   (`#961 <https://github.com/git-cola/git-cola/issues/961>`_)
1195 Packaging
1196 ---------
1197 * The vendored `qtpy` library was updated to `v1.9`.
1200 .. _v3.4:
1202 v3.4
1203 ====
1205 Usability, bells and whistles
1206 -----------------------------
1207 * The file browser now includes "Blame" in its context menu.
1208   (`#953 <https://github.com/git-cola/git-cola/issues/953>`_)
1210 * The "Push" action now uses "git push --force-with-lease" when using
1211   the "Force" option with Git v1.8.5 and newer.
1212   (`#946 <https://github.com/git-cola/git-cola/issues/946>`_)
1214 * Updated German translation.
1215   (`#936 <https://github.com/git-cola/git-cola/pull/936>`_)
1217 * The `Status` widget learned to optionally display file counts in its
1218   category headers, and indent the files displayed in each category.
1219   (`#931 <https://github.com/git-cola/git-cola/pull/931>`_)
1221 * The `Branches` widget can now sort branches by their most recent commit.
1222   (`#930 <https://github.com/git-cola/git-cola/pull/930>`_)
1224 * `git cola` now includes configurable GUI themes that can be used to style
1225   the user interface.  Enable the new themes by configuring `cola.theme`
1226   in the preferences window.  See the
1227   `cola.theme documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#cola-theme>`_
1228   for more details.  (`#924 <https://github.com/git-cola/git-cola/pull/924>`_)
1230 * `git cola` now has built-in support for HiDPI displays by enabling
1231   the Qt 5.6 `QT_AUTO_SCREEN_SCALE_FACTOR` feature.
1232   (`#938 <https://github.com/git-cola/git-cola/issues/938>`_)
1234 * `git cola` now uses HiDPI pixmaps when rendering icons, and the builtin
1235   icons have been updated to look sharp when displayed in HiDPI.
1236   (`#932 <https://github.com/git-cola/git-cola/pull/932>`_)
1238 Fixes
1239 -----
1240 * `git cola`'s "Revert Unstaged Edits" previously checked out from "HEAD^",
1241   when in "Amend" mode, and removing staged changes.  This behavior has been
1242   changed to always checkout from the index, which avoids data loss.
1243   (`#947 <https://github.com/git-cola/git-cola/issues/947>`_)
1245 * `git cola` has been updated to work with newer versions of `gnome-terminal`
1246   and no longer shell-quotes its arguments when launching `gnome-terminal`.
1247   The `cola.terminalshellquote` configuration variable can be set to `true` to
1248   get the old behavior, or to handle other terminals that take the command to run
1249   as a single string instead of as arguments to `execv()`.
1250   (`#935 <https://github.com/git-cola/git-cola/pull/935>`_)
1252 * `git dag` now properly handles arbitrary input on Python3.
1253   Previously, an exception would be raised when entering `--grep=xxx` where
1254   `xxx` is a quoted string with a missing end-quote.
1255   (`#941 <https://github.com/git-cola/git-cola/pull/941>`_)
1257 Development
1258 -----------
1259 * The contribution guidelines for contributors has been updated to mention
1260   how to regenerate the `*.mo` message files.
1261   (`#934 <https://github.com/git-cola/git-cola/pull/934>`_)
1264 .. _v3.3:
1266 v3.3
1267 ====
1269 Usability, bells and whistles
1270 -----------------------------
1271 * `git dag` improved how it renders parent commits.
1272   (`#921 <https://github.com/git-cola/git-cola/pull/921>`_)
1274 * The `Branches` widget now checks out branches when double-clicked.
1275   (`#920 <https://github.com/git-cola/git-cola/pull/920>`_)
1277 * The new `Submodules` widget makes it easy to interact with submodules.
1278   Additionally, submodules can now be updated using the `Status` widget.
1279   (`#916 <https://github.com/git-cola/git-cola/pull/916>`_)
1281 * Updated Japanese translation.
1282   (`#914 <https://github.com/git-cola/git-cola/pull/914>`_)
1284 * The "Open Terminal" action now launches a Git Bash shell on Windows.
1285   (`#913 <https://github.com/git-cola/git-cola/pull/913>`_)
1287 * New menu actions for updating all submodules.
1288   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
1290 * The status widget can now update submodules.
1291   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
1293 * The "Apply Patch" `git cola am` dialog now includes a diff viewer
1294   to display the contents of the selected patch.
1296 * The "Alt+D" diffstat hotkey now selects the staged/modified/etc.
1297   header in the Status widget, which shows the totality of everything
1298   that will be committed.
1299   (`#771 <https://github.com/git-cola/git-cola/issues/771>`_)
1301 * Running "Launch Editor" from the diff editor now opens the editor at the
1302   current line.
1303   (`#898 <https://github.com/git-cola/git-cola/pull/898>`_)
1305 * The textwidth and tabwidth configuration values can now be set
1306   per-repository, rather than globally only.
1308 * Text entry widgets switched to using a block cursor in `v3.2`.
1309   This has been reverted to the original line cursor for consistency
1310   with other applications and user expectations.
1311   (`#889 <https://github.com/git-cola/git-cola/issues/889>`_)
1313 * The "edit at line" feature, used by the "Grep" tool, now supports
1314   the Sublime text editor.
1315   (`#894 <https://github.com/git-cola/git-cola/pull/894>`_)
1317 Fixes
1318 -----
1319 * Launching external programs has been improved on Windows.
1320   (`#925 <https://github.com/git-cola/git-cola/pull/925>`_)
1322 * Improve compatibility when using PySide2.
1323   (`#912 <https://github.com/git-cola/git-cola/pull/912>`_)
1325 * The Diff Editor was not honoring the configured tab width on startup.
1326   (`#900 <https://github.com/git-cola/git-cola/issues/900>`_)
1328 * The "Delete Files" feature was creating an unreadable display when
1329   many files were selected.  Word-wrap the list of files so that the
1330   display stays within a sensible size.
1331   (`#895 <https://github.com/git-cola/git-cola/issues/895>`_)
1333 * Spelling and grammar fixes.
1334   (`#915 <https://github.com/git-cola/git-cola/pull/915>`_)
1335   (`#891 <https://github.com/git-cola/git-cola/pull/891>`_)
1337 Development
1338 -----------
1339 * The logo was run through `tidy` to give it a consistent style.
1340   Some technical issues with the logo were improved.
1341   (`#877 <https://github.com/git-cola/git-cola/issues/877>`_)
1343 * The entire codebase is now checked by `flake8`, rather than just
1344   the module and test directories.  This catches things like
1345   the pynsist installer scripts.
1346   (`#884 <https://github.com/git-cola/git-cola/issues/884>`_)
1347   (`#882 <https://github.com/git-cola/git-cola/issues/882>`_)
1348   (`#879 <https://github.com/git-cola/git-cola/pull/879>`_)
1350 Packaging
1351 ---------
1352 * The vendored `qtpy` library was updated to `v1.6`.
1354 * The Windows installer's wrapper scripts were missing an import.
1355   (`#878 <https://github.com/git-cola/git-cola/issues/878>`_)
1358 .. _v3.2:
1360 v3.2
1361 ====
1363 Usability, bells and whistles
1364 -----------------------------
1365 * The `git cola dag` DAG window now supports `git revert`.
1366   (`#843 <https://github.com/git-cola/git-cola/issues/843>`_)
1368 * `git stash pop` is now supported by the stash dialog.
1369   (`#844 <https://github.com/git-cola/git-cola/issues/844>`_)
1371 * The status widget now ensures that each item is visible when selection
1372   changes.  Previously, if you scrolled to the right to see the name of
1373   a long filename, and then selected a short filename above it, the widget
1374   may not have shown the short filename in the viewport.  We now ensure
1375   that the filenames are visible when the selection changes.
1376   (`#828 <https://github.com/git-cola/git-cola/pull/828>`_)
1378 * The `git xbase` rebase editor no longer displays an error when
1379   cancelling an interactive rebase.
1380   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
1382 * The dialog shown when renaming remotes has been simplified.
1383   (`#840 <https://github.com/git-cola/git-cola/pull/840>`_)
1384   (`#838 <https://github.com/git-cola/git-cola/issues/838>`_)
1386 * The help dialog in the `git-xbase` Rebase editor is now scrollable.
1387   (`#855 <https://github.com/git-cola/git-cola/issues/855>`_)
1389 Translations
1390 ------------
1391 * Updated Brazilian translation.
1392   (`#845 <https://github.com/git-cola/git-cola/pull/845>`_)
1394 * Updated Czech translation.
1395   (`#854 <https://github.com/git-cola/git-cola/pull/854>`_)
1396   (`#853 <https://github.com/git-cola/git-cola/pull/853>`_)
1397   (`#835 <https://github.com/git-cola/git-cola/pull/835>`_)
1398   (`#813 <https://github.com/git-cola/git-cola/pull/813>`_)
1400 * Update Spanish translation.
1401   (`#862 <https://github.com/git-cola/git-cola/pull/862>`_)
1402   (`#867 <https://github.com/git-cola/git-cola/pull/867>`_)
1404 Packaging
1405 ---------
1406 * The original `#!/usr/bin/env python` shebang lines can now be
1407   retained by passing `USE_ENV_PYTHON=1` to `make` when installing.
1408   (`#850 <https://github.com/git-cola/git-cola/issues/850>`_)
1410 * The Makefile is now resilient to DESTDIR and prefix containing whitespace.
1411   (`#858 <https://github.com/git-cola/git-cola/pull/858>`_)
1413 * The vendored `qtpy` library was updated to `v1.4.2`.
1415 * `python3-distutils` is needed to build cola on Debian.
1416   (`#837 <https://github.com/git-cola/git-cola/issues/837>`_)
1418 Fixes
1419 -----
1420 * The "C" key no longer closes the message dialogs, for example the
1421   one that is shown when a commit fails its pre-commit hooks.
1422   This allows "Ctrl+C" copy to work, rather than closing the dialog.
1423   (`#734 <https://github.com/git-cola/git-cola/issues/734>`_)
1425 * Dock widgets sizes are now properly saved and restored when the main
1426   window is maximized.
1427   (`#848 <https://github.com/git-cola/git-cola/issues/848>`_)
1429 * The spellcheck feature was broken under Python3.
1430   (`#857 <https://github.com/git-cola/git-cola/issues/857>`_)
1432 * A regression when saving stashes was fixed.
1433   (`#847 <https://github.com/git-cola/git-cola/issues/847>`_)
1435 * Diffing image files was not updating the available context menus,
1436   which prevented the "Stage" action from being present in the menu.
1437   (`#841 <https://github.com/git-cola/git-cola/issues/841>`_)
1439 * `git cola` now detects when `git lfs uninstall` has been run.  This allows
1440   you to re-initialize "Git LFS" in an existing repository where it had been
1441   previously uninstalled.
1442   (`#842 <https://github.com/git-cola/git-cola/issues/842>`_)
1444 * Custom color values that did not contain any hexadecimal digits in the
1445   `a-f` range were being converted into integers by the config reader.  This
1446   then caused the configured colors to be ignored.
1448   These color values are now interpreted correctly.  Additionally, color
1449   values can now use an optional HTML-like `#` prefix.
1451   Example `.gitconfig` snippet::
1453     [cola "color"]
1454         text = "#0a0303"
1456   (`#836 <https://github.com/git-cola/git-cola/pull/836>`_)
1457   (`#849 <https://github.com/git-cola/git-cola/issues/849>`_)
1459 * We now display an error message graphically when `Git` is not installed.
1460   Previously, the message went to stderr only.
1461   (`#830 <https://github.com/git-cola/git-cola/issues/830>`_)
1463 * Changing diff options was causing resulting in an exception.
1464   (`#833 <https://github.com/git-cola/git-cola/issues/833>`_)
1465   (`#834 <https://github.com/git-cola/git-cola/pull/834>`_)
1467 * The DAG window now updates itself when branches and tags are created.
1468   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
1470 * The user's `$PATH` environment variable can now contain UTF-8
1471   encoded paths.  Previously, launching external commands could
1472   lead to errors.
1473   (`#807 <https://github.com/git-cola/git-cola/issues/807>`_)
1475 * Git Cola development sandboxes can now be stored on UTF-8 encoded
1476   filesystem paths.  Previously, the interactive rebase feature
1477   could be broken when running in that environment.
1478   (`#825 <https://github.com/git-cola/git-cola/issues/825>`_)
1480 * The log window now uses an ISO-8601 time stamp, which
1481   avoids localized output in the log window.
1482   (`#817 <https://github.com/git-cola/git-cola/issues/817>`_)
1484 Development
1485 -----------
1486 * The code base has been thoroughly sanitized using `pylint`, and
1487   Travis is now running pylint over the entire project.
1489 * Miscellaneous improvements and code improvements.
1490   (`#874 <https://github.com/git-cola/git-cola/issues/874>`_)
1493 .. _v3.1:
1495 v3.1
1496 ====
1498 Usability, bells and whistles
1499 -----------------------------
1500 * The "Browser" widget learned to rename files using "git mv".
1501   (`#239 <https://github.com/git-cola/git-cola/issues/239>`_)
1503 * The "Diff" widget learned to diff images.  Side-by-side and pixel diff
1504   modes allow you to inspect changes to common images formats.
1505   (`#444 <https://github.com/git-cola/git-cola/issues/444>`_)
1506   (`#803 <https://github.com/git-cola/git-cola/pull/803>`_)
1508 * Git LFS and Git Annex are natively supported by the image diff viewer.
1510 * Git Annex operations are now included. `git annex init` can be performed on
1511   repositories, and `git annex add` can be run on untracked files from the
1512   status widget.  Install `git-annex` to activate this feature.
1514 * Git LFS operations are now included. `git lfs install` can be performed on
1515   repositories, and `git lfs track` can be run on untracked files from the
1516   status widget.  Install `git-lfs` to activate this feature.
1518 * The "Stash" tool learned to stash staged changes only.  Select the
1519   "Stage Index" option and only staged changes will be stashed away.
1520   (`#413 <https://github.com/git-cola/git-cola/issues/413>`_)
1522 * The "Stash" tool learned to use vim-like navigation keyboard shortcuts,
1523   shows error messages when things go wrong, and now saves the "Stash Index"
1524   and "Keep Index" options across sessions.
1526 * The Edit menu's "Copy" and "Select All" actions now forward to either the
1527   diff, status, recent, or favorites widgets, based on which widget has focus.
1529 * The "File" and "Edit" menu can now be activated using `Alt + {F,E}` hotkeys.
1530   (`#759 <https://github.com/git-cola/git-cola/issues/759>`_)
1532 * It was easy to accidentally trigger the first action in the `Status` tool's
1533   context menu when using a quick right-click to bring up the menu.
1534   A short sub-second delay was added to ensure that the top-most action is not
1535   triggered unless enough time has passed.  This prevents accidental
1536   activation of the first item (typically "Stage" or "Unstage") without
1537   burdening common use cases.
1538   (`#755 <https://github.com/git-cola/git-cola/pull/755>`_)
1539   (`#643 <https://github.com/git-cola/git-cola/issues/643>`_)
1541 * The "Ctrl+S" hotkey now works for the header items in the Status tool.
1542   Selected the "Modified" header item and activating the "Stage" hotkey,
1543   for example, will stage all modified files.  This works for the "Staged",
1544   "Modified", and "Untracked" headers.  This is not enabled for the
1545   "Unmerged" header by design.
1546   (`#772 <https://github.com/git-cola/git-cola/issues/772>`_)
1548 * The list of "Recent" repositories previously capped the number of
1549   repositories shown to 8 repositories.  This can be set to a higher
1550   value by setting the `cola.maxrecent` configuration variable.
1551   (`#752 <https://github.com/git-cola/git-cola/issues/752>`_)
1553 * The "Create Branch" dialog now prevents invalid branch names.
1554   (`#765 <https://github.com/git-cola/git-cola/issues/765>`_)
1556 * Updated Turkish translation.
1557   (`#756 <https://github.com/git-cola/git-cola/pull/756>`_)
1559 * Updated Ukrainian translation.
1560   (`#753 <https://github.com/git-cola/git-cola/pull/753>`_)
1562 * Updated German translation.
1563   (`#802 <https://github.com/git-cola/git-cola/pull/802>`_)
1565 * Updated Czech translation
1566   (`#792 <https://github.com/git-cola/git-cola/pull/792>`_)
1567   (`#806 <https://github.com/git-cola/git-cola/pull/806>`_)
1569 * The window title can be configured to not display the absolute path of the
1570   repository.
1571   (`#775 <https://github.com/git-cola/git-cola/issues/775>`_)
1573 * The "Edit Remotes" editor learned to edit remote URLS.
1575 * Bare repositories can now be created by selecting the
1576   "New Bare Repository..." action from the `File` menu.
1578 * The "Branches" widget learned to configure upstream branches.
1580 * A new `git cola clone` sub-command was added for cloning repositories.
1582 Packaging
1583 ---------
1584 * The vendored `qtpy` library was updated to `v1.3.1`.
1586 * The macOS installation was made simpler for better compatibility with
1587   Homebrew.
1588   (`#636 <https://github.com/git-cola/git-cola/issues/636>`_)
1590 * The Windows installer is now much simpler.  Git Cola now bundles
1591   Python and PyQt5, so users need only install the "Git for Windows"
1592   and "Git Cola" installers to get things working.
1594 Fixes
1595 -----
1596 * Uninitialized difftool errors will now be displayed graphically.
1597   They were previously going to the shell.
1598   (`#457 <https://github.com/git-cola/git-cola/issues/457>`_)
1600 * Translations marked "fuzzy" will no longer be used when translating strings.
1601   (`#782 <https://github.com/git-cola/git-cola/issues/782>`_)
1603 * Deleted unmerged files will now correctly use a deleted icon.
1604   (`#479 <https://github.com/git-cola/git-cola/issues/479>`_)
1606 * The `Ctrl+C` "Copy" hotkey on the diff viewer has been fixed.
1607   (`#767 <https://github.com/git-cola/git-cola/issues/767>`_)
1609 * The "Create Tag" dialog did not correctly handle the case when a signed
1610   tag is requested, but no message is provided, and the user chooses to
1611   create a non-annotated tag instead.  This convenience fallback will now
1612   properly create an unsigned, non-annotated tag.
1613   (`#696 <https://github.com/git-cola/git-cola/issues/696>`_)
1615 * `.gitconfig` and `.git/config` values editable by the Preferences dialog
1616   (aka `git cola config`) will now get unset when set to an empty value.
1617   For example, setting a different `user.email` in the current repository,
1618   followed by a subsequent emptying of that field, would previously result in
1619   an empty string getting stored in the config.  This has been fixed so that
1620   the value will now get unset in the config instead.
1621   (`#406 <https://github.com/git-cola/git-cola/issues/406>`_)
1623 * Spelling and typo fixes.
1624   (`#748 <https://github.com/git-cola/git-cola/pull/748>`_)
1626 * `core.commentChar` is now honored when set in the local repository
1627   `.git/config`.
1628   (`#766 <https://github.com/git-cola/git-cola/issues/766>`_)
1630 * The log window was using a format string that did not display
1631   correctly in all locales.  A locale-aware format is now used.
1632   (`#800 <https://github.com/git-cola/git-cola/pull/800>`_)
1634 * The dialog displayed when prompting for a reference could sometimes
1635   lose focus.
1636   (`#804 <https://github.com/git-cola/git-cola/pull/804>`_)
1639 .. _v3.0:
1641 v3.0
1642 ====
1644 Usability, bells and whistles
1645 -----------------------------
1646 * Updated Simplified Chinese translation.
1647   (`#726 <https://github.com/git-cola/git-cola/pull/726>`_)
1649 * Updated Ukrainian translation.
1650   (`#723 <https://github.com/git-cola/git-cola/pull/723>`_)
1652 * New Czech translation.
1653   (`#736 <https://github.com/git-cola/git-cola/pull/736>`_)
1654   (`#737 <https://github.com/git-cola/git-cola/pull/737>`_)
1655   (`#740 <https://github.com/git-cola/git-cola/pull/740>`_)
1656   (`#743 <https://github.com/git-cola/git-cola/pull/743>`_)
1658 * The "name" field in the "Create Tag" dialog now includes autocompletion,
1659   which makes it easy to see which tags currently exist.
1661 * `git cola` now has configurable toolbars.  Use the `View -> Add toolbar`
1662   menu item to add a toolbar.
1664 * Setting `cola.expandtab` to `true` will now expand tabs into spaces
1665   in the commit message editor.  The number of spaces to insert is determined
1666   by consulting `cola.tabwidth`, which defaults to `8`.
1668 * The "Copy SHA-1" hotkey is now `Alt + Ctrl + C`, to avoid clobbering the
1669   ability to copy text from the DAG window.
1670   (`#705 <https://github.com/git-cola/git-cola/pull/705>`_)
1672 * The "Prepare Commit Message" action can now be invoked via the
1673   `Ctrl+Shift+Return` shortcut.
1674   (`#707 <https://github.com/git-cola/git-cola/pull/707>`_)
1676 * The `Branches` pane now has a filter field that highlights branches whose
1677   names match the string entered into its text field.
1678   (`#713 <https://github.com/git-cola/git-cola/pull/713>`_)
1680 * Actions that are triggered in response to button presses were being
1681   triggered when the button was pressed, rather than when it was released,
1682   which was a usability flaw.  All buttons now respond when clicked
1683   rather than when pressed.
1684   (`#715 <https://github.com/git-cola/git-cola/pull/715>`_)
1686 * The DAG window will now only refresh when object IDs change.
1687   Previously, the DAG would redraw itself in response to inotify events,
1688   such as filesystem operations, which was disruptive when inspecting a large
1689   diff in its diff viewer.  The DAG will now only redraw when the object IDs
1690   corresponding to its query input changes.  Furthermore, when redrawing, the
1691   scrollbar positions are retained to minimize disruption to the viewport
1692   contents.
1693   (`#620 <https://github.com/git-cola/git-cola/issues/620>`_)
1694   (`#724 <https://github.com/git-cola/git-cola/issues/724>`_)
1696 * The "About" dialog now includes the SHA-1 where Git Cola was built.
1697   (`#530 <https://github.com/git-cola/git-cola/issues/530>`_)
1699 * The "Status" widget now has "Copy Leading Path to Clipboard" and
1700   "Copy Basename to Clipboard" actions.
1701   (`#435 <https://github.com/git-cola/git-cola/issues/435>`_)
1702   (`#436 <https://github.com/git-cola/git-cola/issues/436>`_)
1704 * The "Status" widget now supports custom "Copy xxx to Clipboard" actions.
1705   (`#437 <https://github.com/git-cola/git-cola/issues/437>`_)
1707 * The main menu now has an "Edit" menu.
1708   (`#725 <https://github.com/git-cola/git-cola/issues/725>`_)
1710 * `git dag` learned to checkout commits into a detached HEAD state.
1711   (`#698 <https://github.com/git-cola/git-cola/issues/698>`_)
1713 * The `status` widget's context menus now omit actions selection-dependent
1714   actions when no file is selected.
1715   (`#731 <https://github.com/git-cola/git-cola/pull/731>`_)
1717 * The startup dialog now focuses the repository list so that repositories
1718   can be selected with the keyboard without mouse intervention.
1719   (`#741 <https://github.com/git-cola/git-cola/issues/741>`_)
1721 Fixes
1722 -----
1723 * `git dag` now prevents nodes from overlapping in more situations.
1724   (`#689 <https://github.com/git-cola/git-cola/pull/689>`_)
1726 * Adding untracked Git submodule repo directories previously ran
1727   `git add submodule/` but we now call `git add submodule` without
1728   the trailing slash (`/`) to avoid staging files that belong to the
1729   submodule (which is possibly a `git` bug).  By working around the
1730   buggy behavior we allow users to recover by issuing the appropriate
1731   `git submodule add` command to properly register the submodule.
1732   (`#681 <https://github.com/git-cola/git-cola/pull/681>`_)
1734 * We now avoid `git for-each-ref --sort=version:refname` on versions
1735   of `git` older than `v2.7.0`.  Previously we only avoided it for
1736   versions older than `v2.0.0`, which was a mistake.
1737   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
1739 * The error message displayed when `git` is not installed has been fixed.
1740   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
1742 * Adding new remotes was silently broken.
1743   (`#684 <https://github.com/git-cola/git-cola/issues/684>`_)
1744   (`#685 <https://github.com/git-cola/git-cola/pull/685>`_)
1746 * The repo selection dialog had errors during startup when the
1747   `cola.refreshonfocus` feature was enabled, as reported on Ubuntu 16.04.
1748   (`#690 <https://github.com/git-cola/git-cola/issues/690>`_)
1750 * Restored support for PyQt 4.6 (Centos 6.8)
1751   (`#692 <https://github.com/git-cola/git-cola/issues/692>`_)
1753 * Switching repositories now resets the "Amend Mode" and other settings
1754   when switching.
1755   (`#710 <https://github.com/git-cola/git-cola/issues/710>`_)
1757 * `git rebase` error messages now displayed when rebasing fails or stops
1758   via the standalone `git cola rebase` front-end.
1759   (`#721 <https://github.com/git-cola/git-cola/issues/721>`_)
1761 * `git cola` learned to stage broken symlinks.
1762   (`#727 <https://github.com/git-cola/git-cola/issues/727>`_)
1764 * The "View History" feature in the `Browser` tool was fixed, and now
1765   disambiguates between refs and paths.
1766   (`#732 <https://github.com/git-cola/git-cola/issues/732>`_)
1768 * The diff editor now has better support for files with CRLF `\r\n`
1769   line endings.
1770   (`#730 <https://github.com/git-cola/git-cola/issues/730>`_)
1772 * `cola.inotify` in a repo-local config is now honored
1773   when `git cola` is launched from a desktop entry (`git cola --prompt`).
1774   (`#695 <https://github.com/git-cola/git-cola/issues/695>`_)
1777 .. _v2.11:
1779 v2.11
1780 =====
1782 Usability, bells and whistles
1783 -----------------------------
1784 * New Ukrainian translation.
1785   (`#670 <https://github.com/git-cola/git-cola/pull/670>`_)
1786   (`#672 <https://github.com/git-cola/git-cola/pull/672>`_)
1788 * New and improved French translations.
1790 * The new `Branches` widget makes it easier to checkout, merge, push,
1791   and pull branches from a single interface.
1793 * `git cola` now includes a dark icon theme.  The dark icon theme can be
1794   activated either by setting the `GIT_COLA_ICON_THEME` environment variable
1795   to `dark`, by configuring `cola.icontheme` to `dark`, or by specifying
1796   `--icon-theme=dark` on the command line.
1797   (`#638 <https://github.com/git-cola/git-cola/pull/638>`_)
1799 * Autocompletion was added to the `Fetch`, `Push`, and `Pull` dialogs.
1801 * The commit message editor now remembers the "Spellcheck" setting
1802   after exiting.
1803   (`#645 <https://github.com/git-cola/git-cola/pull/645>`_)
1805 * `git dag` now uses an improved algorithm for laying out the graph,
1806   which avoids collisions under certain graph configurations, and
1807   avoids overlapping tag with commits.
1808   (`#648 <https://github.com/git-cola/git-cola/pull/648>`_)
1809   (`#651 <https://github.com/git-cola/git-cola/pull/651>`_)
1810   (`#654 <https://github.com/git-cola/git-cola/pull/654>`_)
1811   (`#656 <https://github.com/git-cola/git-cola/pull/656>`_)
1812   (`#659 <https://github.com/git-cola/git-cola/pull/659>`_)
1814 * `git dag` now remembers its column sizes across sessions.
1815   (`#674 <https://github.com/git-cola/git-cola/issues/674>`_)
1817 * `Grep` now shows a preview of the selected file's content in a split window
1818   below the grep results.
1820 * `Grep` now includes line numbers in the preview pane's output.
1822 * `Edit Remotes` now remembers its window settings after exiting.
1824 * `Diff` now has an option to display line numbers in the editor.
1825   (`#136 <https://github.com/git-cola/git-cola/issues/136>`_)
1827 * `Amend Last Commit` can now be triggered via the `Commit` menu in addition
1828   to the commit message editor's options.
1829   (`#640 <https://github.com/git-cola/git-cola/issues/640>`_)
1831 * The `File Browser` tool was made much faster and can now operate on
1832   much larger repositories.
1833   (`#499 <https://github.com/git-cola/git-cola/issues/499>`_)
1835 * A new "turbo" mode was added that allows you to opt-out of operations
1836   that can slow `git cola` on large repositories.  The turbo mode is
1837   enabled by configuring `git config cola.turbo true`.  Turbo mode
1838   disables the background loading of Git commit messages and other
1839   details in the `File Browser` widget.
1841 * A new GitIgnore dialog allows adding custom gitignore patterns.
1842   (`#653 <https://github.com/git-cola/git-cola/pull/653>`_)
1844 * The spellchecker in `git cola` can now use an additional dictionary
1845   by configuring `cola.dictionary` to the path to a file containing
1846   a newline-separated list of words.
1847   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
1849 * The stash, export patches, diff, and gitignore dialogs now remember
1850   their window sizes.
1852 * A new `git cola recent` sub-command was added for finding recently
1853   edited files.
1855 * The `Fetch` dialog now allows pruning remote branches.
1856   (`#639 <https://github.com/git-cola/git-cola/issues/639>`_)
1857   (`#680 <https://github.com/git-cola/git-cola/pull/680>`_)
1859 Fixes
1860 -----
1861 * `git cola`'s spellchecker now supports the new `dict-common` filesystem
1862   layout, and prefers the `/usr/share/dict/cracklib-small` file over the
1863   `/usr/share/dict/words` provided on older distributions.
1864   This makes the spellchecker compatible with Arch, which does not provide
1865   a `words` symlink like Debian.
1866   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
1868 * Properly handle the case where an existing file is untracked using
1869   the File Browser.
1871 * Fix a quirk where the "Create Branch" dialog sometimes required clicking
1872   twice on the radio buttons.
1873   (`#662 <https://github.com/git-cola/git-cola/pull/662>`_)
1875 * Fixed a focus issue to ensure that "Push", "Fetch", and "Pull" can
1876   be executed with the press of a single enter key after being shown.
1877   (`#661 <https://github.com/git-cola/git-cola/issues/661>`_)
1879 * Committing is now allowed in when resolving a merge results in no
1880   changes.  This state was previously prevented by the commit message editor,
1881   which prevented users from resolving merges that result in no changes.
1882   (`#679 <https://github.com/git-cola/git-cola/pull/679>`_)
1884 * The filesystem monitor would sometimes emit backtraces when directories
1885   are modified.  This has been fixed.
1886   (`bz #1438522 <https://bugzilla.redhat.com/show_bug.cgi?id=1438522>`_)
1888 * Absolute paths are now returned when querying for `.git`-relative paths
1889   from within a submodule, which uses `.git`-files.
1890   This fixes launching `git cola` from within a subdirectory of a submodule.
1891   (`#675 <https://github.com/git-cola/git-cola/pull/675>`_)
1894 .. _v2.10:
1896 v2.10
1897 =====
1899 Usability, bells and whistles
1900 -----------------------------
1901 * `git cola` can now invoke the `.git/hooks/cola-prepare-commit-msg`
1902   hook to update the commit message.  This hook takes the same parameters
1903   as Git's `prepare-commit-message` hook.  The default path to this hook
1904   can be overridden by setting the `cola.prepareCommitMessageHook`
1905   configuration variable.
1906   (`Documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#prepare-commit-message>`_)
1908 * `git cola diff` (and the corresponding `Diff` menu actions) can now
1909   launch difftool with the standard `Ctrl+D` hotkey.  The `Ctrl+E` hotkey was
1910   also added for launching an editor.
1912 * Traditional Chinese (Taiwan) translation updates.
1914 Fixes
1915 -----
1916 * `git cola` now works when installed in non-ASCII, UTF-8-encoded paths.
1917   (`#629 <https://github.com/git-cola/git-cola/issues/629>`_)
1919 * Styling issues that caused black backgrounds in various widgets when using
1920   PyQt5 on Mac OS X have been fixed.
1921   (`#624 <https://github.com/git-cola/git-cola/issues/624>`_)
1923 * The "Open Recent" menu action was broken and has been fixed.
1924   (`#634 <https://github.com/git-cola/git-cola/issues/634>`_)
1926 * Exiting `git cola` with a maximized main window would hang when reopened
1927   on Linux.
1928   (`#641 <https://github.com/git-cola/git-cola/issues/641>`_)
1930 Packaging
1931 ---------
1932 * `appdata.xml` files are now provided at
1933   `share/appdata/git-cola.xml` and `share/appdata/git-dag.xml`
1934   for use by the Linux software gallery.
1935   (`#627 <https://github.com/git-cola/git-cola/pull/627>`_)
1936   (`Appdata <https://people.freedesktop.org/~hughsient/appdata/>`_)
1939 .. _v2.9.1:
1941 v2.9.1
1942 ======
1944 Fixes
1945 -----
1946 * The "Open Recent" menu was updated to new bookmarks format.
1947   (`#628 <https://github.com/git-cola/git-cola/issues/628>`_)
1950 .. _v2.9:
1952 v2.9
1953 ====
1955 Usability, bells and whistles
1956 -----------------------------
1957 * New Polish translation thanks to Łukasz Wojniłowicz
1958   (`#598 <https://github.com/git-cola/git-cola/pull/598>`_)
1960 * The `Bypass Commit Hooks` feature now disables itself automatically
1961   when a new commit is created.  The new behavior turns the option into a
1962   single-use flag, which helps prevent users from accidentally leaving it
1963   active longer than intended.
1964   (`#595 <https://github.com/git-cola/git-cola/pull/595>`_)
1966 * `git dag` learned to launch an external diff viewer on selected commits.
1967   The standard `Ctrl+D` shortcut can be used to view diffs.
1968   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1970 * `git dag` learned to launch directory diffs via `git difftool --dir-diff`.
1971   The `Ctrl+Shift+D` shortcut launches difftool in directory-diff mode.
1972   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1974 * Items in the "Favorites" list can now be renamed, which makes it
1975   easier to differentiate between several checkouts of the same repository.
1976   (`#599 <https://github.com/git-cola/git-cola/issues/599>`_)
1977   (`#601 <https://github.com/git-cola/git-cola/pull/601>`_)
1979 * The startup screen now includes a logo and `git cola` version information.
1980   (`#526 <https://github.com/git-cola/git-cola/issues/526>`_)
1982 * The `About` page was revamped to contain multiple tabs.  A new tab was added
1983   that provides details about `git cola`''s dependencies.  New tabs were also
1984   added for giving credit to `git cola`'s authors and translators.
1986 * The `About` page can now be accessed via `git cola about`.
1988 * The "Fast-forward only" and "No fast-forward" options supported by
1989   `git pull` are now accessible via `git cola pull`.
1991 * Doing a forced push no longer requires selecting the remote branch.
1992   (`#618 <https://github.com/git-cola/git-cola/pull/618>`_)
1994 * `git cola push` now has an option to suppress the prompt that is shown
1995   when pushing would create new remote branches.
1996   (`#605 <https://github.com/git-cola/git-cola/issues/605>`_)
1998 * `git dag` now shows commit messages in a more readable color.
1999   (`#574 <https://github.com/git-cola/git-cola/issues/574>`_)
2001 * `git cola browse` and the `status` widget learned to launch the OS-specified
2002   default action for a file.  When used on directories via `git cola browse`,
2003   or when "Open Parent Directory" is used on files, the OS-specified
2004   file browser will typically be used.
2006 * `git cola browse` and the `status` widget learned to launch terminals.
2008 Fixes
2009 -----
2010 * `git cola browse` was not updating when expanding items.
2011   (`#588 <https://github.com/git-cola/git-cola/issues/588>`_)
2013 * Typo fixes in comments, naming, and strings have been applied.
2014   (`#593 <https://github.com/git-cola/git-cola/pull/593>`_)
2016 * The inotify and win32 filesystem monitoring no longer refreshes
2017   when updates are made to ignored files.
2018   (`#517 <https://github.com/git-cola/git-cola/issues/517>`_)
2019   (`#516 <https://github.com/git-cola/git-cola/issues/516>`_)
2021 * The `Refresh` button on the actions panel no longer raises an
2022   exception when using PyQt5.
2023   (`#604 <https://github.com/git-cola/git-cola/issues/604>`_)
2025 * Fixed a typo in the inotify back-end that is triggered when files are removed.
2026   (`#607 <https://github.com/git-cola/git-cola/issues/607>`_)
2028 * Fixed a typo when recovering from a failed attempt to open a repository.
2029   (`#606 <https://github.com/git-cola/git-cola/issues/606>`_)
2031 * `git dag` now properly updates itself when launched from the menu bar.
2032   (`#613 <https://github.com/git-cola/git-cola/pull/613>`_)
2034 * If git-cola is invoked on Windows using `start pythonw git-cola`,
2035   a console window will briefly flash on the screen each time
2036   `git cola` invokes `git`.  The console window is now suppressed.
2038 * We now avoid some problematic Popen flags on Windows which were
2039   breaking the `git rebase` feature on Windows.
2041 * The `Save` button in `git dag`'s "Grab File..." feature now properly
2042   prompts for a filename when saving files.
2043   (`#617 <https://github.com/git-cola/git-cola/pull/617>`_)
2045 Development
2046 -----------
2047 * The `qtpy` symlink in the source tree has been removed to allow for easier
2048   development on Windows.
2049   (`#626 <https://github.com/git-cola/git-cola/issues/626>`_)
2052 .. _v2.8:
2054 v2.8
2055 ====
2057 Usability, bells and whistles
2058 -----------------------------
2059 * `git cola push` learned to configure upstream branches.
2060   (`#563 <https://github.com/git-cola/git-cola/issues/563>`_)
2062 Fixes
2063 -----
2064 * The diffstat view is now properly updated when notifications are
2065   received via inotify filesystem monitoring.
2066   (`#577 <https://github.com/git-cola/git-cola/issues/577>`_)
2068 * Python3 with PyQt5 had a bug that prevented `git cola` from starting.
2069   (`#589 <https://github.com/git-cola/git-cola/pull/589>`_)
2072 .. _v2.7:
2074 v2.7
2075 ====
2077 Fixes
2078 -----
2080 * When repositories stored in non-ASCII, UTF-8-encoded filesystem paths
2081   were operated upon with `LC_ALL=C` set in the environment, Unicode errors
2082   would occur when using `python2`.  `git cola` was made more robust and will
2083   now operate correctly within this environment.
2084   (`#581 <https://github.com/git-cola/git-cola/issues/581>`_)
2086 * Support for the `GIT_WORK_TREE` environment variable was fixed.
2087   (`#582 <https://github.com/git-cola/git-cola/pull/582>`_)
2089 Development
2090 -----------
2092 * The `unittest.mock` module is now used instead of the original `mock` module
2093   when running the `git cola` test suite using Python3.
2094   (`#569 <https://github.com/git-cola/git-cola/issues/569>`_)
2096 Packaging
2097 ---------
2099 * `git cola` is now compatible with *PyQt5*, *PyQt4*, and *Pyside*.
2100   `git cola` previously supported *PyQt4* only, but will now use whichever
2101   library is available.  Users are not required to upgrade at this time,
2102   but *PyQt5* support can be enabled anytime by making its python
2103   modules available.
2104   (`#232 <https://github.com/git-cola/git-cola/issues/232>`_)
2106   *NOTE*: We do not yet recommend using *PyQt5* because there are known
2107   exit-on-segfault bugs in *Qt5* that have not yet been addressed.
2108   `git cola` is sensitive to this bug and is known to crash on exit
2109   when using `git dag` or the interactive rebase feature on *PyQt5*.
2111   https://bugreports.qt.io/browse/QTBUG-52988
2113   *PyQt4* is stable and there are no known issues when using it so
2114   we recommend using it until the Qt5 bugs have been resolved.
2116 * `git cola` now depends on *QtPy* and includes a bundled copy of the
2117   `qtpy` library.  If you are packaging `git cola` and would prefer to use
2118   `qtpy` from your distribution instead of the built-in version then use
2119   `make NO_VENDOR_LIBS=1` when building `git cola`.  This will prevent
2120   vendored libraries from being installed.
2123 .. _v2.6:
2125 v2.6
2126 ====
2128 Usability, bells and whistles
2129 -----------------------------
2131 * A new "Reset" sub-menu provides access to running "git reset --mixed"
2132   when resetting branch heads and "git reset  --merge" when resetting
2133   worktrees.
2134   (`#542 <https://github.com/git-cola/git-cola/issues/542>`_)
2136 * `git cola` now supports linked worktrees, i.e. worktrees created by
2137   `git worktree`.
2138   (`#554 <https://github.com/git-cola/git-cola/issues/554>`_)
2140 Fixes
2141 -----
2143 * Diff highlighting is now robust to the user having
2144   diff.supressBlankEmpty=true in their git config.
2145   (`#541 <https://github.com/git-cola/git-cola/issues/541>`_)
2147 * The filesystem monitor now properly handles repositories that use
2148   `.git`-files, e.g. when using submodules.
2149   (`#545 <https://github.com/git-cola/git-cola/issues/545>`_)
2150   (`#546 <https://github.com/git-cola/git-cola/pulls/546>`_)
2152 * Per-repository git configuration is now properly detected when launching
2153   `git cola` from an application launcher.
2154   (`#548 <https://github.com/git-cola/git-cola/issues/548>`_)
2156 * `git cola` now cleans up after itself immediately to avoid leaving behind
2157   empty `/tmp/git-cola-XXXXXX` directories when the user uses `Ctrl+C`
2158   to quit the app.
2159   (`#566 <https://github.com/git-cola/git-cola/issues/566>`_)
2161 Packaging
2162 ---------
2164 * It is now possible to install `git cola` to and from UTF-8-encoded filesystem
2165   paths.  Previously, Python's stdlib would throw an encoding error during
2166   installation.  We workaround the stdlib by forcing python2 to use UTF-8,
2167   thus fixing assumptions in the stdlib library code.
2168   (`#551 <https://github.com/git-cola/git-cola/issues/551>`_)
2171 .. _v2.5:
2173 v2.5
2174 ====
2176 Usability, bells and whistles
2177 -----------------------------
2179 * The icon for untracked files was adjusted to better differentiate
2180   between files and the "Untracked" header.
2181   (`#509 <https://github.com/git-cola/git-cola/issues/509>`_)
2183 * Ctrl+O was added as a hotkey for opening repositories.
2184   (`#507 <https://github.com/git-cola/git-cola/pull/507>`_)
2186 * `git dag` now uses consistent edge colors across updates.
2187   (`#512 <https://github.com/git-cola/git-cola/issues/512>`_)
2189 * `git cola`'s Bookmarks widget can now be used to set a "Default Repository".
2190   Under the hood, we set the `cola.defaultrepo` configuration variable.
2191   The default repository is used whenever `git cola` is launched outside of
2192   a Git repository.  When unset, or when set to a bogus value, `git cola`
2193   will prompt for a repository, as it previously did.
2194   (`#513 <https://github.com/git-cola/git-cola/issues/513>`_)
2196 * `git cola`'s Russian and Spanish translations were improved
2197   thanks to Vaiz and Zeioth.
2198   (`#514 <https://github.com/git-cola/git-cola/pull/514>`_)
2199   (`#515 <https://github.com/git-cola/git-cola/pull/515>`_)
2200   (`#523 <https://github.com/git-cola/git-cola/pull/523>`_)
2202 * `git cola` was translated to Turkish thanks to Barış ÇELİK.
2203   (`#520 <https://github.com/git-cola/git-cola/pull/520>`_)
2205 * The status view now supports launching `git gui blame`.  It can be
2206   configured to use a different command by setting `cola.blameviewer`.
2207   (`#521 <https://github.com/git-cola/git-cola/pull/521>`_)
2209 * `git dag` now allows selecting non-contiguous ranges in the log widget.
2210   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
2212 * Any font can now be chosen for the diff editor, not just mono-space fonts.
2213   (`#525 <https://github.com/git-cola/git-cola/issues/525>`_)
2215 Fixes
2216 -----
2218 * `xfce4-terminal` and `gnome-terminal` are now supported when launching
2219   `git mergetool` to resolve merges.  These terminals require that the command
2220   to execute is shell-quoted and passed as a single string argument to `-e`
2221   rather than as additional command line arguments.
2222   (`#524 <https://github.com/git-cola/git-cola/issues/524>`_)
2224 * Fixed a Unicode problem when formatting the error message that is shown
2225   when `gitk` is not installed.  We now handle Unicode data in tracebacks
2226   generated by python itself.
2227   (`#528 <https://github.com/git-cola/git-cola/issues/528>`_)
2229 * The `New repository` feature was fixed.
2230   (`#533 <https://github.com/git-cola/git-cola/pull/533>`_)
2232 * We now use omit the extended description when creating "fixup!" commits,
2233   for consistency with the Git CLI.  We now include only the one-line summary
2234   in the final commit message.
2235   (`#522 <https://github.com/git-cola/git-cola/issues/522>`_)
2238 .. _v2.4:
2240 v2.4
2241 ====
2243 Usability, bells and whistles
2244 -----------------------------
2246 * The user interface is now HiDPI-capable. Git Cola now uses SVG
2247   icons, and its interface can be scaled by setting the `GIT_COLA_SCALE`
2248   environment variable.
2250 * `git dag` now supports the standard editor, difftool, and history hotkeys.
2251   It is now possible to invoke these actions from file widget's context
2252   menu and through the standard hotkeys.
2253   (`#473 <https://github.com/git-cola/git-cola/pull/473>`_)
2255 * The `Status` tool also learned about the history hotkey.
2256   Additionally, the `Alt + {J,K}` aliases are also supported in the `Status`
2257   tool for consistency with the other tools where the non-Alt hotkeys are not
2258   available.
2259   (`#488 <https://github.com/git-cola/git-cola/pull/488>`_)
2261 * The `File Browser` tool now has better default column sizes,
2262   and remembers its window size and placement.
2264 * The `File Browser` now supports the refresh hotkey, and has better
2265   behavior when refreshing.  The selection is now retained, and new and
2266   removed files are found when refreshing.
2268 * A new `git-cola-completion.bash` completion script is provided in the
2269   `contrib/` directory.  It must be used alongside Git's completion script.
2270   Source it from your `~/.bashrc` (or `~/.zshrc`, etc) after sourcing
2271   the `git-completion.bash` script and you will have command-line completion
2272   support for the `git cola` and `git dag` sub-commands.
2274 * The "checkout" dialog now offers completion for remote branches and other
2275   git refs.  This makes it easier to checkout remote branches in a detached
2276   head state.  Additionally, the checkout dialog also offers completion for
2277   remote branches that have not yet been checked out, which makes it easier to
2278   create a local tracking branch by just completing for that potential name.
2279   (`#390 <https://github.com/git-cola/git-cola/issues/390>`_)
2281 * The "create branch" and "create tag" dialogs now save and restore their
2282   window settings.
2284 * The "status" widget can now be configured to use a bold font with a darker
2285   background for the header items.
2286   (`#506 <https://github.com/git-cola/git-cola/pull/506>`_)
2288 * The "status" widget now remembers its horizontal scrollbar position across
2289   updates.  This is helpful when working on projects with long paths.
2290   (`#494 <https://github.com/git-cola/git-cola/issues/494>`_)
2292 Fixes
2293 -----
2295 * When using *Git for Windows*, a `git` window would appear
2296   when running *Windows 8*.  We now pass additional flags to
2297   `subprocess.Popen` to prevent a `git` window from appearing.
2298   (`#477 <https://github.com/git-cola/git-cola/issues/477>`_)
2299   (`#486 <https://github.com/git-cola/git-cola/pull/486>`_)
2301 * Launching difftool with `.PY` in `$PATHEXT` on Windows was fixed.
2302   (`#492 <https://github.com/git-cola/git-cola/issues/492>`_)
2304 * Creating a local branch tracking a remote branch that contains
2305   slashes in its name is now properly handled.
2306   (`#496 <https://github.com/git-cola/git-cola/issues/496>`_)
2308 * The "Browse Other Branch" feature was broken by Python3, and is now fixed.
2309   (`#501 <https://github.com/git-cola/git-cola/issues/501>`_)
2311 * We now avoid `long` for better Python3 compatibility.
2312   (`#502 <https://github.com/git-cola/git-cola/issues/502>`_)
2314 * We now use Git's default merge message when merging branches.
2315   (`#508 <https://github.com/git-cola/git-cola/issues/508>`_)
2317 * Miscellaneous fixes
2318   (`#485 <https://github.com/git-cola/git-cola/pull/485>`_)
2320 Packaging
2321 ---------
2323 * git-cola's documentation no longer uses an inter-sphinx link mapping
2324   to docs.python.org.  This fixes warnings when building RPMs using koji,
2325   where network access is prevented.
2327   https://bugzilla.redhat.com/show_bug.cgi?id=1231812
2330 .. _v2.3:
2332 v2.3
2333 ====
2335 Usability, bells and whistles
2336 -----------------------------
2338 * The Interactive Rebase feature now works on Windows!
2339   (`#463 <https://github.com/git-cola/git-cola/issues/463>`_)
2341 * The `diff` editor now understands vim-style `hjkl` navigation hotkeys.
2342   (`#476 <https://github.com/git-cola/git-cola/issues/476>`_)
2344 * `Alt + {J,K}` navigation hotkeys were added to allow changing to the
2345   next/previous file from the diff and commit editors.
2347 * The `Rename branch` menu action is now disabled in empty repositories.
2348   (`#475 <https://github.com/git-cola/git-cola/pull/475>`_)
2349   (`#459 <https://github.com/git-cola/git-cola/issues/459>`_)
2351 * `git cola` now checks unmerged files for conflict markers before
2352   staging them.  This feature can be disabled in the preferences.
2353   (`#464 <https://github.com/git-cola/git-cola/issues/464>`_)
2355 * `git dag` now remembers which commits were selected when refreshing
2356   so that it can restore the selection afterwards.
2357   (`#480 <https://github.com/git-cola/git-cola/issues/480>`_)
2359 * "Launch Editor", "Launch Difftool", "Stage/Unstage",
2360   and "Move Up/Down" hotkeys now work when the commit message
2361   editor has focus.
2362   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
2364 * The diff editor now supports the `Ctrl+u` hotkey for reverting
2365   diff hunks and selected lines.
2367 * The `core.commentChar` Git configuration value is now honored.
2368   Commit messages and rebase instruction sheets will now use
2369   the configured character for comments.  This allows having
2370   commit messages that start with `#` when `core.commentChar`
2371   is configured to its non-default value.
2372   (`#446 <https://github.com/git-cola/git-cola/issues/446>`_)
2374 Fixes
2375 -----
2377 * Diff syntax highlighting was improved to handle more edge cases
2378   and false positives.
2379   (`#467 <https://github.com/git-cola/git-cola/pull/467>`_)
2381 * Setting commands in the interactive rebase editor was fixed.
2382   (`#472 <https://github.com/git-cola/git-cola/issues/472>`_)
2384 * git-cola no longer clobbers the Ctrl+Backspace text editing shortcut
2385   in the commit message editor.
2386   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
2388 * The copy/paste clipboard now persists after `git cola` exits.
2389   (`#484 <https://github.com/git-cola/git-cola/issues/484>`_)
2392 .. _v2.2.1:
2394 v2.2.1
2395 ======
2397 Fixes
2398 -----
2399 * Fixed the "Sign off" feature in the commit message editor.
2402 .. _v2.2:
2404 v2.2
2405 ====
2407 Usability, bells and whistles
2408 -----------------------------
2409 * Double-click will now choose a commit in the "Select commit" dialog.
2411 * `git cola` has a feature that reads `.git/MERGE_MSG` and friends for the
2412   commit message when a merge is in-progress.  Upon refresh, `git cola` will
2413   now detect when a merge has completed and reset the commit message back to
2414   its previous state.  It is only reset if the editor contains a message
2415   that was read from the file and has not been manually edited by the user.
2417 * The commit message editor's context menu now has a "Clear..." action for
2418   clearing the message across both the summary and description fields.
2420 * Traditional Chinese (Taiwan) translation updates.
2422 * The system theme's icons are now used wherever possible.
2423   (`#458 <https://github.com/git-cola/git-cola/pull/458>`_)
2425 Fixes
2426 -----
2427 * The stash viewer now uses ``git show --no-ext-diff`` to avoid running
2428   user-configured diff tools.
2430 * `git cola` now uses the `setsid()` system call to ensure that the
2431   `GIT_ASKPASS` and `SSH_ASKPASS` helper programs are used when pushing
2432   changes using `git`.  The askpass helpers will now be used even when
2433   `git cola` is launched from a terminal.
2435   The behavior without `setsid()` is that `git cola` can appear to hang while
2436   pushing changes.  The hang happens when `git` prompts the user for a
2437   password using the terminal, but the user never sees the prompt.  `setsid()`
2438   detaches the terminal, which ensures that the askpass helpers are used.
2439   (`#218 <https://github.com/git-cola/git-cola/issues/218>`_)
2440   (`#262 <https://github.com/git-cola/git-cola/issues/262>`_)
2441   (`#377 <https://github.com/git-cola/git-cola/issues/377>`_)
2443 * `git dag`'s file list tool was updated to properly handle Unicode paths.
2445 * `gnome-terminal` is no longer used by default when `cola.terminal` is unset.
2446   It is broken, as was detailed in #456.
2447   (`#456 <https://github.com/git-cola/git-cola/issues/456>`_)
2449 * The interactive rebase feature was not always setting `$GIT_EDITOR`
2450   to the value of `gui.editor`, thus there could be instances where rebase
2451   will seem to not stop, or hang, when performing "reword" actions.
2453   We now set the `$GIT_EDITOR` environment variable when performing the
2454   "Continue", "Skip", and "Edit Todo" rebase actions so that the correct
2455   editor is used during the rebase.
2456   (`#445 <https://github.com/git-cola/git-cola/issues/445>`_)
2458 Packaging
2459 ---------
2460 * `git cola` moved from a 3-part version number to a simpler 2-part "vX.Y"
2461   version number.  Most of our releases tend to contain new features.
2464 .. _v2.1.2:
2466 v2.1.2
2467 ======
2468 Usability, bells and whistles
2469 -----------------------------
2470 * Updated zh_TW translations.
2472 * `git cola rebase` now defaults to `@{upstream}`, and generally uses the same
2473   CLI syntax as `git rebase`.
2475 * The commit message editor now allows you to bypass commit hooks by selecting
2476   the "Bypass Commit Hooks" option.  This is equivalent to passing the
2477   `--no-verify` option to `git commit`.
2478   (`#357 <https://github.com/git-cola/git-cola/issues/357>`_)
2480 * We now prevent the "Delete Files" action from creating a dialog that does
2481   not fit on screen.
2482   (`#378 <https://github.com/git-cola/git-cola/issues/378>`_)
2484 * `git xbase` learned to edit rebase instruction sheets that contain
2485   `exec` commands.
2487 * The diff colors are now configurable.  `cola.color.{text,add,remove,header}`
2488   can now be set with 6-digit hexadecimal colors.
2489   See the `git cola manual <https://git-cola.readthedocs.io/en/latest/git-cola.html#configuration-variables>_`
2490   for more details.
2492 * Improved hotkey documentation.
2494 Fixes
2495 -----
2496 * `git cola` will now allow starting an interactive rebase with a dirty
2497   worktree when `rebase.autostash` is set.
2498   (`#360 <https://github.com/git-cola/git-cola/issues/360>`_)
2501 .. _v2.1.1:
2503 v2.1.1
2504 ======
2505 Usability, bells and whistles
2506 -----------------------------
2507 * A new "Find files" widget was added, and can be activated by
2508   using the `Ctrl+t` or `t` hotkeys.
2510 * A new `git cola find` sub-command was added for finding files.
2512 * `git cola` now remembers the text cursor's position when staging
2513   interactively with the keyboard.  This makes it easier to use the keyboard
2514   arrows to select and stage lines.
2516 * The completion widgets will now select the top completion item
2517   when `Enter` or `Return` are pressed.
2519 * You can now refresh using `F5` in addition to the existing `Ctrl+R` hotkey.
2521 Fixes
2522 -----
2523 * `git cola` now passes `--no-abbrev-commit` to `git log` to override
2524   having `log.abbrevCommit = true` set in `.gitconfig`.
2527 .. _v2.1.0:
2529 v2.1.0
2530 ======
2531 Usability, bells and whistles
2532 -----------------------------
2533 * `git dag` now forwards all unknown arguments along to `git log`.
2534   (`#389 <https://github.com/git-cola/git-cola/issues/389>`_)
2536 * Line-by-line interactive staging was made more robust.
2537   (`#399 <https://github.com/git-cola/git-cola/pull/399>`_)
2539 * "Bookmarks" was renamed to "Favorites".
2540   (`#392 <https://github.com/git-cola/git-cola/issues/392>`_)
2542 * Untracked files are now displayed using a unique icon.
2543   (`#388 <https://github.com/git-cola/git-cola/pull/388>`_)
2545 Fixes
2546 -----
2547 * `git dag` was triggering a traceback on Fedora when parsing Git logs.
2548   (`bz #181676 <https://bugzilla.redhat.com/show_bug.cgi?id=1181686>`_)
2550 * inotify expects Unicode paths on Python3.
2551   (`#393 <https://github.com/git-cola/git-cola/pull/393>`_)
2553 * Untracked files are now assumed to be UTF-8 encoded.
2554   (`#401 <https://github.com/git-cola/git-cola/issues/401>`_)
2557 .. _v2.0.8:
2559 v2.0.8
2560 ======
2561 Usability, bells and whistles
2562 -----------------------------
2563 * `git cola` can now create GPG-signed commits and merges.
2564   See the documentation for details about setting up a GPG agent.
2565   (`#149 <https://github.com/git-cola/git-cola/issues/149>`_)
2567 * The status widget learned to copy relative paths when `Ctrl+x` is pressed.
2568   (`#358 <https://github.com/git-cola/git-cola/issues/358>`_)
2570 * Custom GUI actions can now define their own keyboard shortcuts by
2571   setting `guitool.$name.shortcut` to a string understood by the Qt
2572   `QKeySequence` API, e.g. `Alt+X`.
2573   See the `Qt docs <https://doc.qt.io/qt-6/qkeysequence.html#toString>`_
2574   for more details about the supported values.
2576 * `git cola` learned to rename branches.
2577   (`#364 <https://github.com/git-cola/git-cola/pull/364>`_)
2578   (`#278 <https://github.com/git-cola/git-cola/issues/278>`_)
2580 * `git dag` now has a "Show history" context menu which can be used to filter
2581   history using the selected paths.
2583 Fixes
2584 -----
2585 * `sphinxtogithub.py` was fixed for Python3.
2586   (`#353 <https://github.com/git-cola/git-cola/pull/353>`_)
2588 * The commit that changed how we read remotes from `git remote`
2589   to parsing `git config` was reverted since it created problems
2590   for some users.
2592 * Fixed a crash when using the `rebase edit` feature.
2593   (`#351 <https://github.com/git-cola/git-cola/issues/351>`_)
2595 * Better drag-and-drop behavior when dropping into gnome-terminal.
2596   (`#373 <https://github.com/git-cola/git-cola/issues/373>`_)
2598 Packaging
2599 ---------
2600 * The `git-cola-folder-handler.desktop` file handler was fixed
2601   to pass validation by `desktop-file-validate`.
2602   (`#356 <https://github.com/git-cola/git-cola/issues/356>`_)
2604 * The `git.svg` icon was renamed to `git-cola.svg`, and `git cola` was taught
2605   to prefer icons from the desktop theme when available.
2608 .. _v2.0.7:
2610 v2.0.7
2611 ======
2612 Usability, bells and whistles
2613 -----------------------------
2614 * New hotkey: `Ctrl+Shift+M` merges branches.
2616 * New hotkey: `Ctrl+R` refreshes the DAG viewer.
2617   (`#347 <https://github.com/git-cola/git-cola/issues/347>`_)
2619 Fixes
2620 -----
2621 * We now use `git config` to parse the list of remotes
2622   instead of parsing the output of `git remote`, which
2623   is a Git porcelain and should not be used by scripts.
2625 * Avoid "C++ object has been deleted" errors from PyQt4.
2626   (`#346 <https://github.com/git-cola/git-cola/issues/346>`_)
2628 Packaging
2629 ---------
2630 * The `make install` target now uses `install` instead of `cp`.
2633 .. _v2.0.6:
2635 v2.0.6
2636 ======
2637 Usability, bells and whistles
2638 -----------------------------
2639 * Updated Brazilian Portuguese translation.
2641 * The status and browse widgets now allow drag-and-drop into
2642   external applications.
2643   (`#335 <https://github.com/git-cola/git-cola/issues/335>`_)
2645 * We now show a progress bar when cloning repositories.
2646   (`#312 <https://github.com/git-cola/git-cola/issues/312>`_)
2648 * The bookmarks widget was simplified to not need a
2649   separate dialog.
2650   (`#289 <https://github.com/git-cola/git-cola/issues/289>`_)
2652 * Updated Traditional Chinese translation.
2654 * We now display a warning when trying to rebase with uncommitted changes.
2655   (`#338 <https://github.com/git-cola/git-cola/issues/338>`_)
2657 * The status widget learned to filter paths.
2658   `Ctrl+Shift+S` toggles the filter widget.
2659   (`#337 <https://github.com/git-cola/git-cola/issues/337>`_)
2660   (`#339 <https://github.com/git-cola/git-cola/pull/339>`_)
2662 * The status widget learned to move files to the trash
2663   when the `send2trash <https://github.com/hsoft/send2trash>`_
2664   module is installed.
2665   (`#341 <https://github.com/git-cola/git-cola/issues/341>`_)
2667 * "Recent repositories" is now a dedicated widget.
2668   (`#342 <https://github.com/git-cola/git-cola/issues/342>`_)
2670 * New Spanish translation thanks to Pilar Molina Lopez.
2671   (`#344 <https://github.com/git-cola/git-cola/pull/344>`_)
2673 Fixes
2674 -----
2675 * Newly added remotes are now properly seen by the fetch/push/pull dialogs.
2676   (`#343 <https://github.com/git-cola/git-cola/issues/343>`_)
2679 .. _v2.0.5:
2681 v2.0.5
2682 ======
2683 Usability, bells and whistles
2684 -----------------------------
2685 * New Brazilian Portuguese translation thanks to Vitor Lobo.
2687 * New Indonesian translation thanks to Samsul Ma'arif.
2689 * Updated Simplified Chinese translation thanks to Zhang Han.
2691 * `Ctrl+Backspace` is now a hotkey for "delete untracked files" in
2692   the status widget.
2694 * Fetch/Push/Pull dialogs now use the configured remote of the current
2695   branch by default.
2696   (`#324 <https://github.com/git-cola/git-cola/pull/324>`_)
2698 Fixes
2699 -----
2700 * We now use `os.getcwd()` on Python3.
2701   (`#316 <https://github.com/git-cola/git-cola/pull/316>`_)
2702   (`#326 <https://github.com/git-cola/git-cola/pull/326>`_)
2704 * The `Ctrl+P` hotkey was overloaded to both "push" and "cherry-pick",
2705   so "cherry-pick" was moved to `Ctrl+Shift+C`.
2707 * Custom GUI tools with mixed-case names are now properly supported.
2709 * "Diff Region" is now referred to as "Diff Hunk" for consistency
2710   with common terminology from diff/patch tools.
2711   (`#328 <https://github.com/git-cola/git-cola/issues/328>`_)
2713 * git-cola's test suite is now portable to MS Windows.
2714   (`#332 <https://github.com/git-cola/git-cola/pull/332>`_)
2717 .. _v2.0.4:
2719 v2.0.4
2720 ======
2721 Usability, bells and whistles
2722 -----------------------------
2723 * We now handle the case when inotify `add_watch()` fails
2724   and display instructions on how to increase the number of watches.
2725   (`#263 <https://github.com/git-cola/git-cola/issues/263>`_)
2727 * New and improved zh_TW localization thanks to V字龍(Vdragon).
2728   (`#265 <https://github.com/git-cola/git-cola/pull/265>`_)
2729   (`#267 <https://github.com/git-cola/git-cola/pull/267>`_)
2730   (`#268 <https://github.com/git-cola/git-cola/pull/268>`_)
2731   (`#269 <https://github.com/git-cola/git-cola/issues/269>`_)
2732   (`#270 <https://github.com/git-cola/git-cola/pull/270>`_)
2733   (`#271 <https://github.com/git-cola/git-cola/pull/271>`_)
2734   (`#272 <https://github.com/git-cola/git-cola/pull/272>`_)
2736 * New hotkeys: `Ctrl+F` for fetch, `Ctrl+P` for push,
2737   and `Ctrl+Shift+P` for pull.
2739 * The bookmarks widget's context menu actions were made clearer.
2740   (`#281 <https://github.com/git-cola/git-cola/issues/281>`_)
2742 * The term "Staging Area" is used consistently in the UI
2743   to allow for better localization.
2744   (`#283 <https://github.com/git-cola/git-cola/issues/283>`_)
2746 * The "Section" term is now referred to as "Diff Region"
2747   in the UI.
2748   (`#297 <https://github.com/git-cola/git-cola/issues/297>`_)
2750 * The localization documentation related to the LANGUAGE
2751   environment variable was improved.
2752   (`#293 <https://github.com/git-cola/git-cola/pull/293>`_)
2754 * The "Actions" panel now contains tooltips for each button
2755   in case the button labels gets truncated by Qt.
2756   (`#292 <https://github.com/git-cola/git-cola/issues/292>`_)
2758 * Custom `git config`-defined actions can now be run in the
2759   background by setting `guitool.<name>.background` to `true`.
2761 Fixes
2762 -----
2763 * We now use bold fonts instead of SmallCaps to avoid
2764   artifacts on several configurations.
2766 * We now pickup `user.email`, `cola.tabwidth`, and similar settings
2767   when defined in /etc/gitconfig.
2768   (`#259 <https://github.com/git-cola/git-cola/issues/259>`_)
2770 * Better support for Unicode paths when using inotify.
2771   (`bz #1104181 <https://bugzilla.redhat.com/show_bug.cgi?id=1104181>`_)
2773 * Unicode fixes for non-ASCII locales.
2774   (`#266 <https://github.com/git-cola/git-cola/issues/266>`_)
2775   (`#273 <https://github.com/git-cola/git-cola/issues/273>`_)
2776   (`#276 <https://github.com/git-cola/git-cola/issues/276>`_)
2777   (`#282 <https://github.com/git-cola/git-cola/issues/282>`_)
2778   (`#298 <https://github.com/git-cola/git-cola/issues/298>`_)
2779   (`#302 <https://github.com/git-cola/git-cola/issues/302>`_)
2780   (`#303 <https://github.com/git-cola/git-cola/issues/303>`_)
2781   (`#305 <https://github.com/git-cola/git-cola/issues/305>`_)
2783 * Viewing history from the file browser was fixed for Python3.
2784   (`#274 <https://github.com/git-cola/git-cola/issues/274>`_)
2786 * setup.py was fixed to install the `*.rst` documentation.
2787   (`#279 <https://github.com/git-cola/git-cola/issues/279>`_)
2789 * Patch export was fixed for Python3.
2790   (`#290 <https://github.com/git-cola/git-cola/issues/290>`_)
2792 * Fixed adding a bookmark with trailing slashes.
2793   (`#295 <https://github.com/git-cola/git-cola/pull/295>`_)
2795 * The default `git dag` layout is now setup so that its widgets
2796   can be freely resized on Linux.
2797   (`#299 <https://github.com/git-cola/git-cola/issues/299>`_)
2799 * Invalid tag names are now reported when creating tags.
2800   (`#296 <https://github.com/git-cola/git-cola/pull/296>`_)
2803 .. _v2.0.3:
2805 v2.0.3
2806 ======
2807 Usability, bells and whistles
2808 -----------------------------
2809 * `git cola` no longer prompts after successfully creating a new branch.
2810   (`#251 <https://github.com/git-cola/git-cola/pull/251>`_)
2812 * Hitting enter on simple dialogs now accepts them.
2813   (`#255 <https://github.com/git-cola/git-cola/pull/255>`_)
2815 Fixes
2816 -----
2817 * `git dag` no longer relies on `sys.maxint`, which is
2818   not available in Python3.
2819   (`#249 <https://github.com/git-cola/git-cola/issues/249>`_)
2821 * Python3-related fixes.
2822   (`#254 <https://github.com/git-cola/git-cola/pull/254>`_)
2824 * Python3-on-Windows-related fixes.
2825   (`#250 <https://github.com/git-cola/git-cola/pull/250>`_)
2826   (`#252 <https://github.com/git-cola/git-cola/pull/252>`_)
2827   (`#253 <https://github.com/git-cola/git-cola/pull/253>`_)
2829 * Switching repositories using the bookmarks widget was not
2830   refreshing the inotify watcher.
2831   (`#256 <https://github.com/git-cola/git-cola/pull/256>`_)
2833 * Special commit messages trailers (e.g. "Acked-by:") are now special-cased to
2834   fix word wrapping lines that start with "foo:".
2835   (`#257 <https://github.com/git-cola/git-cola/issues/257>`_)
2837 * `git dag` sometimes left behind selection artifacts.
2838   We now refresh the view to avoid them.
2839   (`#204 <https://github.com/git-cola/git-cola/issues/204>`_)
2842 .. _v2.0.2:
2844 v2.0.2
2845 ======
2846 Usability, bells and whistles
2847 -----------------------------
2848 * Better inotify support for file creation and deletion.
2849   (`#240 <https://github.com/git-cola/git-cola/issues/240>`_)
2851 * `git cola` now supports the X11 Session Management Protocol
2852   and remembers its state across logout/reboot.
2853   (`#164 <https://github.com/git-cola/git-cola/issues/164>`_)
2855 * `git cola` has a new icon.
2856   (`#190 <https://github.com/git-cola/git-cola/issues/190>`_)
2858 Packaging
2859 ---------
2860 * Building the documentation no longer requires `asciidoc`.
2861   We now use `Sphinx <https://www.sphinx-doc.org>`_ for building
2862   html documentation and man pages.
2864 Fixes
2865 -----
2866 * Reworked the git-dag gravatar icon code to avoid a Unicode
2867   error in Python 2.
2869 * Commit message line-wrapping was made to better match the GUI editor.
2870   (`#242 <https://github.com/git-cola/git-cola/issues/242>`_)
2872 * Better support for Python3 on Windows
2873   (`#246 <https://github.com/git-cola/git-cola/issues/246>`_)
2875 Packaging
2876 ---------
2877 * git-cola no longer depends on Asciidoc for building its documentation
2878   and man-pages.  We now depend on [Sphinx](https://www.sphinx-doc.org) only.
2881 .. _v2.0.1:
2883 v2.0.1
2884 ======
2885 Usability, bells and whistles
2886 -----------------------------
2887 * Some context menu actions are now hidden when selected
2888   files do not exist.
2889   (`#238 <https://github.com/git-cola/git-cola/issues/238>`_)
2891 Fixes
2892 -----
2893 * The build-git-cola.sh contrib script was improved.
2894   (`#235 <https://github.com/git-cola/git-cola/pull/235>`_)
2896 * Non-ASCII worktrees work properly again.
2897   (`#234 <https://github.com/git-cola/git-cola/issues/234>`_)
2899 * The browser now guards itself against missing files.
2900   (`bz #1041378 <https://bugzilla.redhat.com/show_bug.cgi?id=1071378>`_)
2902 * Saving widget state now works under Python3.
2903   (`#236 <https://github.com/git-cola/git-cola/pull/236>`_)
2906 .. _v2.0.0:
2908 v2.0.0
2909 ======
2910 Portability
2911 -----------
2912 * git-cola now runs on Python 3 thanks to Virgil Dupras.
2913   (`#233 <https://github.com/git-cola/git-cola/pull/233>`_)
2915 * Python 2.6, 2.7, and 3.2+ are now supported.
2916   Python 2.5 is no longer supported.
2918 Fixes
2919 -----
2920 * i18n test fixes thanks to Virgil Dupras.
2921   (`#231 <https://github.com/git-cola/git-cola/pull/231>`_)
2923 * git-cola.app build fixes thanks to Maicon D. Filippsen.
2924   (`#230 <https://github.com/git-cola/git-cola/pull/230>`_)
2926 * Lots of pylint improvements thanks to Alex Chernetz.
2927   (`#229 <https://github.com/git-cola/git-cola/pull/229>`_)
2930 .. _v1.9.4:
2932 v1.9.4
2933 ======
2934 Usability, bells and whistles
2935 -----------------------------
2936 * The new `Bookmarks` tool makes it really easy to switch between repositories.
2938 * There is now a dedicated dialog for applying patches.
2939   See the ``File -> Apply Patches`` menu item.
2940   (`#215 <https://github.com/git-cola/git-cola/issues/215>`_)
2942 * A new `git cola am` sub-command was added for applying patches.
2944 Fixes
2945 -----
2946 * Fixed a typo that caused inotify events to be silently ignored.
2948 * Fixed the sys.path setup for Mac OS X (Homebrew).
2949   (`#221 <https://github.com/git-cola/git-cola/issues/221>`_)
2951 * Lots of pylint fixes thanks to Alex Chernetz.
2954 .. _v1.9.3:
2956 v1.9.3
2957 ======
2958 Usability, bells and whistles
2959 -----------------------------
2960 * `git cola --amend` now starts the editor in `amend` mode.
2961   (`#187 <https://github.com/git-cola/git-cola/issues/187>`_)
2963 * Multiple lines of text can now be pasted into the `summary` field.
2964   All text beyond the first newline will be automatically moved to the
2965   `extended description` field.
2966   (`#212 <https://github.com/git-cola/git-cola/issues/212>`_)
2968 Fixes
2969 -----
2970 * Stray whitespace in `.git` files is now ignored.
2971   (`#213 <https://github.com/git-cola/git-cola/issues/213>`_)
2973 * Fix "known incorrect sRGB profile" in `staged-item.png`.
2974   (`gentoo-devel message #85066
2975   <https://web.archive.org/web/20141012075946/http://comments.gmane.org:80/gmane.linux.gentoo.devel/85066>`_)
2978 .. _v1.9.2:
2980 v1.9.2
2981 ======
2982 Fixes
2983 -----
2984 * Fix a traceback when `git push` fails.
2985   (`bz #1034778 <https://bugzilla.redhat.com/show_bug.cgi?id=1034778>`_)
2987 Packaging
2988 ---------
2989 * Most of the git-cola sub-packages have been removed.
2990   The only remaining packages are `cola`, `cola.models`,
2991   and `cola.widgets`.
2993 * The translation file for Simplified Chinese was renamed
2994   to `zh_CN.po`.
2995   (`#209 <https://github.com/git-cola/git-cola/issues/209>`_)
2998 .. _v1.9.1:
3000 v1.9.1
3001 ======
3002 Packaging
3003 ---------
3004 * `git cola version --brief` now prints the brief version number.
3006 Fixes
3007 -----
3008 * Resurrected the "make dist" target, for those that prefer to create
3009   their own tarballs.
3011 * Fixed the typo that broke the preferences dialog.
3014 .. _v1.9.0:
3016 v1.9.0
3017 ======
3018 Usability, bells and whistles
3019 -----------------------------
3020 * We now ship a full-featured interactive `git rebase` editor.
3021   The rebase todo file is edited using the `git xbase` script which
3022   is provided at `$prefix/share/git-cola/bin/git-xbase`.
3023   This script can be used standalone by setting the `$GIT_SEQUENCE_EDITOR`
3024   before running `git rebase --interactive`.
3025   (`#1 <https://github.com/git-cola/git-cola/issues/1>`_)
3027 * Fixup commit messages can now be loaded from the commit message editor.
3029 * Tool widgets can be locked in place by using the "Tools/Lock Layout"
3030   menu action.
3031   (`#202 <https://github.com/git-cola/git-cola/issues/202>`_)
3033 * You can now push to several remotes simultaneously by selecting
3034   multiple remotes in the "Push" dialog.
3035   (`#148 <https://github.com/git-cola/git-cola/issues/148>`_)
3037 * The `grep` tool learned to search using three different modes:
3038   basic regular expressions (default), extended regular expressions,
3039   and fixed strings.
3041 Packaging
3042 ---------
3043 * `git cola` now depends on the `argparse` Python module.
3044   This module is part of the stdlib in Python 2.7 and must
3045   be installed separately when using Python 2.6 and below.
3047 Fixes
3048 -----
3049 * Support Unicode in the output from `fetch`, `push`, and `pull`.
3052 .. _v1.8.5:
3054 v1.8.5
3055 ======
3056 Usability, bells and whistles
3057 -----------------------------
3058 * We now detect when the editor or history browser are misconfigured.
3059   (`#197 <https://github.com/git-cola/git-cola/issues/197>`_)
3060   (`bz #886826 <https://bugzilla.redhat.com/show_bug.cgi?id=886826>`_)
3062 * Display of untracked files can be disabled from the Preferences dialog
3063   or by setting the `gui.displayuntracked` configuration variable to `false`.
3064   (`Git Mailing List on 2013-08-21
3065   <https://public-inbox.org/git/20130821032913.GA6092@wheezy.local/>`_)
3067 Fixes
3068 -----
3069 * Unicode stash names are now supported
3070   (`#198 <https://github.com/git-cola/git-cola/issues/198>`_)
3072 * The diffs produced when reverting workspace changes were made more robust.
3075 .. _v1.8.4:
3077 v1.8.4
3078 ======
3079 Usability, bells and whistles
3080 -----------------------------
3081 * Brand new German translation thanks to Sven Claussner.
3083 * The "File" menu now provides a "New Repository..." menu action.
3085 * `git dag` now uses a dock-widget interface so that its widgets can
3086   be laid-out and arranged.  Customizations are saved and restored
3087   the next time `git dag` is launched.
3089 * `git dag` now has a "Zoom Best Fit" button next alongside the
3090   "Zoom In" and "Zoom Out" buttons.
3092 * `Ctrl+L` now focuses the "Search" field in the `git dag` tool.
3094 * Right-clicking in the "diff" viewer now updates the cursor position
3095   before performing actions, which makes it much easier to click around
3096   and selectively stage sections.  Previously, the current cursor position
3097   was used which meant that it required two clicks (left-click to update
3098   the position followed by right-click to get the context menu) for the
3099   desired section to be used.  This is now a single right-click operation.
3101 * The `Ctrl+D` "Launch Diff Tool" action learned to automatically choose
3102   between `git difftool` and `git mergetool`.  If the file is unmerged then
3103   we automatically launch `git mergetool` on the path, otherwise we use
3104   `git difftool`.  We do this because `git difftool` is not intended to
3105   be used on unmerged paths.  Automatically using `git mergetool` when
3106   appropriate is the most intuitive and muscle-memory-friendly thing to do.
3108 * You can now right-click on folders in your standard file browser
3109   and choose "Open With -> Git Cola"  (Linux-only).
3111 Fixes
3112 -----
3113 * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple
3114   at `sys.version_info`.  We now avoid using that variable for better
3115   portability.
3117 * We now read the user's Git configuration from `~/.config/git/config`
3118   if that file is available, otherwise we use the traditional `~/.gitconfig`
3119   path, just like Git itself.
3121 * Some edge cases were fixed when applying partial/selected diffs.
3123 * The diff viewer is now properly cleared when refreshing.
3124   (`#194 <https://github.com/git-cola/git-cola/issues/194>`_)
3127 .. _v1.8.3:
3129 v1.8.3
3130 ======
3131 Usability, bells and whistles
3132 -----------------------------
3133 * The diff viewer now has an "Options" menu which can be
3134   used to set "git diff" options.  This can be used to
3135   ignore whitespace changes or to show a change with its
3136   surrounding function as context.
3137   (`#150 <https://github.com/git-cola/git-cola/issues/150>`_)
3139 * `git cola` now remembers your commit message and will restore it
3140   when `git cola` is restarted.
3141   (`#175 <https://github.com/git-cola/git-cola/pull/175>`_)
3143 * `Ctrl+M` can now be used to toggle the "Amend last commit"
3144   checkbox in the commit message editor.
3145   (`#161 <https://github.com/git-cola/git-cola/pull/161>`_)
3147 * Deleting remote branches can now be done from the "Branch" menu.
3148   (`#152 <https://github.com/git-cola/git-cola/issues/152>`_)
3150 * The commit message editor now has a built-in spell checker.
3152 Fixes
3153 -----
3154 * We now avoid invoking external diffs when showing diffstats.
3155   (`#163 <https://github.com/git-cola/git-cola/pull/163>`_)
3157 * The `Status` tool learned to reselect files when refreshing.
3158   (`#165 <https://github.com/git-cola/git-cola/issues/165>`_)
3160 * `git cola` now remembers whether it has been maximized and will restore the
3161   maximized state when `git cola` is restarted.
3162   (`#172 <https://github.com/git-cola/git-cola/issues/172>`_)
3164 * Performance is now vastly improved when staging hundreds or
3165   thousands of files.
3167 * `git cola` was not correctly saving repo-specific configuration.
3168   (`#174 <https://github.com/git-cola/git-cola/issues/174>`_)
3170 * Fix a UnicodeDecode in sphinxtogithub when building from source.
3173 .. _v1.8.2:
3175 v1.8.2
3176 ======
3178 Usability, bells and whistles
3179 -----------------------------
3180 * We now automatically remove missing repositories from the
3181   "Select Repository" dialog.
3182   (`#145 <https://github.com/git-cola/git-cola/issues/145>`_)
3184 * A new `git cola diff` sub-command was added for diffing changed files.
3186 Fixes
3187 -----
3188 * The inotify auto-refresh feature makes it difficult to select text in
3189   the "diff" editor when files are being continually modified by another
3190   process.  The auto-refresh causes it to lose the currently selected text,
3191   which is not wanted.  We now avoid this problem by saving and restoring
3192   the selection when refreshing the editor.
3193   (`#155 <https://github.com/git-cola/git-cola/issues/155>`_)
3195 * More strings have been marked for l10n.
3196   (`#157 <https://github.com/git-cola/git-cola/issues/157>`_)
3198 * Fixed the Alt+D Diffstat shortcut.
3199   (`#159 <https://github.com/git-cola/git-cola/issues/159>`_)
3201 Fixes
3202 -----
3203 * Better error handling when cloning repositories.
3205   We were not handling the case where a git URL has
3206   no basename, e.g. `https://git.example.com/`.
3207   `git cola` originally rejected these URLs instead of
3208   allowing users to clone them.  It now allows these URLs
3209   when they point to valid git repositories.
3211   Additionally, `git cola` learned to echo the errors
3212   reported by `git clone` when it fails.
3213   (`#156 <https://github.com/git-cola/git-cola/issues/156>`_)
3216 .. _v1.8.1:
3218 v1.8.1
3219 ======
3221 Usability, bells and whistles
3222 -----------------------------
3223 * `git dag` got a big visual upgrade.
3225 * `Ctrl+G` now launches the "Grep" tool.
3227 * `Ctrl+D` launches difftool and `Ctrl+E` launches your editor
3228   when in the diff panel.
3230 * git-cola can now be told to use an alternative language.
3231   For example, if the native language is German and we want git-cola to
3232   use English then we can create a `~/.config/git-cola/language` file with
3233   "en" as its contents: ``echo en >~/.config/git-cola/language``
3234   (`#140 <https://github.com/git-cola/git-cola/issues/140>`_)
3236 * A new `git cola merge` sub-command was added for merging branches.
3238 * Less blocking in the main UI
3240 Fixes
3241 -----
3242 * Autocomplete issues on KDE
3243   (`#144 <https://github.com/git-cola/git-cola/issues/144>`_)
3245 * The "recently opened repositories" startup dialog did not
3246   display itself in the absence of bookmarks.
3247   (`#139 <https://github.com/git-cola/git-cola/issues/139>`_)
3250 .. _v1.8.0:
3252 v1.8.0
3253 ======
3255 Usability, bells and whistles
3256 -----------------------------
3257 * `git cola` learned to honor `.gitattributes` when showing and
3258   interactively applying diffs.  This makes it possible to store
3259   files in git using a non-UTF-8 encoding and `git cola` will
3260   properly accept them.  This must be enabled by settings
3261   `cola.fileattributes` to true, as it incurs a small performance
3262   penalty.
3263   (`#96 <https://github.com/git-cola/git-cola/issues/96>`_)
3265 * `git cola` now wraps commit messages at 72 columns automatically.
3266   This is configurable using the `cola.linebreak` variable to enable/disable
3267   the feature, and `cola.textwidth` to configure the limit.
3268   (`#133 <https://github.com/git-cola/git-cola/pull/133>`_)
3270 * A new "Open Recent" sub-menu was added to the "File" menu.
3271   This makes it easy to open a recently-edited repository.
3272   (`#135 <https://github.com/git-cola/git-cola/issues/135>`_)
3274 * We now show a preview for untracked files when they are clicked
3275   using the `Status` tool.
3276 * A new "Open Using Default Application" action was added to the
3277   `Status` tool.  It is activated using either `Spacebar` or through
3278   the context menu.  This action uses `xdg-open` on Linux and
3279   `open` on Mac OS X.
3280 * A new "Open Parent Directory" action was added to the `Status` tool.
3281   It is activated using either `Shift+Spacebar` or through the
3282   context menu.
3283 * `git dag` learned to honor the `log.date` git configuration variable.
3284   This makes the date display follow whatever format the user has
3285   configured.
3286 * A new `git cola config` sub-command was added for quickly
3287   tweaking `git cola`'s git configuration settings.
3288 * Some small usability tweaks -- some user confirmation prompts
3289   were defaulting to "Cancel" when they should have been defaulting
3290   to the affirmative option instead.
3292 Fixes
3293 -----
3294 * Properly handle arbitrarily-named branches.
3295 * We went back to launching `git mergetool` using an xterm.
3296   The reason is that there are a couple of places where `git mergetool`
3297   requires a terminal for user interaction not covered by `--no-prompt`.
3298 * We now properly handle an edge case when applying short diffs at
3299   the start of a file.
3302 .. _v1.7.7:
3304 v1.7.7
3305 ======
3307 Usability, bells and whistles
3308 -----------------------------
3309 * New and improved `grep` mode lets you instantly find and edit files.
3310 * New `git cola grep` standalone mode.
3311 * Support for passing arguments to the configured editors, e.g. `gvim -p`
3312   This makes it possible to select multiple files in the status
3313   window and use `Ctrl + E` to edit them all at once.
3314 * Remote operations now prompt on errors only.
3315 * The `Tab` key now jumps to the extended description when editing the summary.
3316 * More shortcut key labels and misc. UX improvements.
3318 Fixes
3319 -----
3320 * Selecting an item no longer copies its filename to the copy/paste buffer.
3321   `Ctrl + C` or the "Copy" context-menu action can be used instead.
3322 * The repository monitoring feature on Windows learned to ignore
3323   changes within the ".git" directory.  Thanks to Andreas Sommer.
3324   (`#120 <https://github.com/git-cola/git-cola/issues/120>`_)
3327 .. _v1.7.6:
3329 v1.7.6
3330 ======
3332 Usability, bells and whistles
3333 -----------------------------
3334 * `git dag` learned to color-code branch edges.
3335   The edge colors change when a new branch is detected,
3336   which makes the history much easier to follow.
3337   A huge thanks to Uri Okrent for making it happen.
3339 * New GUI for editing remote repositories.
3341 * New `git cola archive` and `git cola remote` sub-commands.
3343 * `git cola browser` learned an 'Untrack' command.
3345 * The diff editor learned to staged/unstaged while amending.
3347 * The status tool can now scroll horizontally.
3349 * New git repositories can be created by clicking 'New' on the
3350   `git cola --prompt` startup screen.
3353 .. _v1.7.5:
3355 v1.7.5
3356 ======
3358 Usability, bells and whistles
3359 -----------------------------
3360 * Auto-completion was added to more tools.
3362 * `git dag` is easier to use on smaller displays -- the author
3363   field elides its text which allows for a more compact display.
3365 * Selected commits in `git dag` were made more prominent and
3366   easier to see.
3368 * 'Create Branch' learned to fetch remote branches and uses a
3369   background thread to do so.
3371 * User-configured GUI tools are listed alphabetically in the 'Actions' menu.
3373 * The 'Pull' dialog remembers the value of the 'Rebase' checkbox
3374   between invocations.
3377 .. _v1.7.4.1:
3379 v1.7.4.1
3380 ========
3382 Fixes
3383 -----
3384 * Detect Homebrew so that OS X users do not need to set PYTHONPATH.
3386 * `git dag` can export patches again.
3389 .. _v1.7.4:
3391 v1.7.4
3392 ======
3394 Usability, bells and whistles
3395 -----------------------------
3396 * The 'Classic' tool was renamed to 'Browser' and learned to
3397   limit history to the current branch.
3399 * `git dag` learned about gravatar and uses it to show images
3400   for commit authors.
3402 * `git dag` learned to use OpenGL for rendering resulting in
3403   much faster rendering.
3405 * More dialogs learned vim-style keyboard shortcuts.
3407 * The commit message editor learned better arrow key navigation.
3410 .. _v1.7.3:
3412 v1.7.3
3413 ======
3415 Usability, bells and whistles
3416 -----------------------------
3417 * `git cola` learned a few new sub commands:
3419 .. sourcecode:: sh
3421     git cola dag
3422     git cola branch
3423     git cola search
3425 * `Return` in the summary field jumps to the extended description.
3427 * `Ctrl+Return` is now a shortcut for 'Commit'.
3429 * Better French translation for 'Sign-off'.
3431 * The 'Search' widget now has a much simpler and streamlined
3432   user interface.
3434 * vim-style `h,j,k,l` navigation shortcuts were added to the DAG widget.
3436 * `git dag` no longer prompts for files when diffing commits if the
3437   text field contains paths.
3439 * General user interface and performance improvements.
3441 Fixes
3442 -----
3443 * The diff viewer no longer changes font size when holding `Control`
3444   while scrolling with the mouse wheel.
3446 * Files with a type change (e.g. symlinks that become files, etc.)
3447   are now correctly identified as being modified.
3449 Packaging
3450 ---------
3451 * The `cola.controllers` and `cola.views` packages were removed.
3454 .. _v1.7.2:
3456 v1.7.2
3457 ======
3459 Usability, bells and whistles
3460 -----------------------------
3461 * `git cola` can now launch sub commands, e.g.:
3463 .. sourcecode:: sh
3465     git cola classic
3466     git cola stash
3467     git cola fetch
3468     git cola push
3469     git cola pull
3470     git cola tag
3472 * `git dag` is more responsive when gathering auto-completions.
3474 * Keyboard shortcuts are displayed when the '?' key is pressed.
3476 * Various keyboard shortcuts were added for improved usability.
3478 * The status widget now lists unmerged files before modified files.
3480 * vim-style `h,j,k,l` navigation shortcuts were added to the status widget.
3482 * A 'Recently Modified Files...' tool was added.
3484 * Tools can now be hidden with `Alt + #` (where `#` is a keyboard number)
3485   and focused with `Alt + Shift + #`.
3487 * The syntax highlighting colors for diffs was made less intrusive.
3489 * The commit message editor was redesigned to have a more compact
3490   and keyboard-convenient user interface.
3492 * Keyboard shortcuts for adding a Signed-off-by (`Ctrl + i`)
3493   and creating a commit (`Ctrl + m`) were added.
3495 * The status widget was adjusted to use less screen real-estate.
3497 Fixes
3498 -----
3499 * Avoid updating the index when responding to inotify events.
3500   This avoids interfering with operations such as `git rebase --interactive`.
3501   (`#99 <https://github.com/git-cola/git-cola/issues/99>`_)
3503 Packaging
3504 ---------
3505 * Create `git-dag.pyw` in the win32 installer.
3507 * win32 shortcuts now contain explicit calls to `pythonw.exe` instead of
3508   calling the `.pyw` file directly.
3510 Deprecated Features
3511 -------------------
3512 * The 'Apply Changes from Branch...' feature was removed.
3513   `git dag`'s 'Grab File...' feature used alongside the index/worktree editor
3514   is a simpler alternative.
3517 .. _v1.7.1.1:
3519 v1.7.1.1
3520 ========
3522 Fixes
3523 -----
3524 * Further enhanced the staging/unstaging behavior in the status widget.
3525   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
3527 * Unmerged files are no longer listed as modified.
3529 Packaging
3530 ---------
3531 The `cola-$version` tarballs on github were originally setup to
3532 have the same contents as the old tarballs hosted on tuxfamily.
3533 The `make dist` target was changed to write files to a
3534 `git-cola-$version` subdirectory and tarball.
3536 This makes the filenames consistent for the source tarball,
3537 the darwin .app tarball, and the win32 .exe installer.
3540 .. _v1.7.1:
3542 v1.7.1
3543 ======
3545 Usability, bells and whistles
3546 -----------------------------
3547 * Refined the staging/unstaging behavior for code reviews.
3548   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
3550 * Added more styling and icons to menus and buttons.
3552 * Adjusted some terminology to more closely match the git CLI.
3554 Fixes
3555 -----
3556 * Boolean `git config` settings with no value are now supported
3557   (these are not created by git these days but exist in legacy repositories).
3559 * Unicode branches and tags are supported in the "branch diff" tool.
3561 * Guard against low-memory conditions and more interrupted system calls.
3563 Packaging
3564 ---------
3565 * Added desktop launchers for git-cola.desktop and git-dag.desktop.
3566   This replaces the old cola.desktop, so some adjustments to RPM .spec
3567   and debian/ files will be needed.
3569 * Fixed the darwin app-tarball Makefile target to create relative paths.
3571 Cleanup
3572 -------
3573 * The `--style` option was removed.  `git cola` follows the system theme
3574   so there's no need for this option these days.
3577 .. _v1.7.0:
3579 v1.7.0
3580 ======
3582 Usability, bells and whistles
3583 -----------------------------
3584 * Export a patch series from `git dag` into a `patches/` directory.
3586 * `git dag` learned to diff commits, slice history along paths, etc.
3588 * Added instant-preview to the `git stash` widget.
3590 * A simpler preferences editor is used to edit `git config` values.
3591   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
3592   (`#89 <https://github.com/git-cola/git-cola/issues/89>`_)
3594 * Previous commit messages can be re-loaded from the message editor.
3595   (`#33 <https://github.com/git-cola/git-cola/issues/33>`_)
3597 Fixes
3598 -----
3599 * Display commits with no file changes.
3600   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
3602 * Improved the diff editor's copy/paste behavior
3603   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
3605 Packaging
3606 ---------
3607 * Bumped version number to ceil(minimum git version).
3608   `git cola` now requires `git` >= 1.6.3.
3610 * Simplified git-cola's versioning when building from tarballs
3611   outside of git.  We no longer check for a 'version' file at
3612   the root of the repository.  We instead keep a default version
3613   in `cola/version.py` and use it when `git cola`'s `.git` repository
3614   is not available.
3617 .. _v1.4.3.5:
3619 v1.4.3.5
3620 ========
3622 Usability, bells and whistles
3623 -----------------------------
3624 * inotify is much snappier and available on Windows
3625   thanks to Karl Bielefeldt.
3627 * New right-click command to add untracked files to .gitignore
3628   thanks to Audrius Karabanovas.
3630 * Stash, fetch, push, and pull usability improvements
3632 * General usability improvements
3634 * stderr is logged when applying partial diffs.
3636 Fixes
3637 -----
3638 * Files can be unstaged when amending.
3639   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
3641 * Show the configured remote.$remote.pushurl in the GUI
3642   (`#83 <https://github.com/git-cola/git-cola/issues/83>`_)
3644 * Removed usage of the "user" module.
3645   (`#86 <https://github.com/git-cola/git-cola/issues/86>`_)
3647 * Avoids an extra `git update-index` call during startup.
3650 .. _v1.4.3.4:
3652 v1.4.3.4
3653 ========
3655 Usability, bells and whistles
3656 -----------------------------
3657 * We now provide better feedback when `git push` fails.
3658   (`#69 <https://github.com/git-cola/git-cola/issues/69>`_)
3660 * The Fetch, Push, and Pull dialogs now give better feedback
3661   when interacting with remotes.  The dialogs are modal and
3662   a progress dialog is used.
3664 Fixes
3665 -----
3666 * More Unicode fixes, again.  It is now possible to have
3667   Unicode branch names, repository paths, home directories, etc.
3668   This continued the work initiated by Redhat's bugzilla #694806.
3670   https://bugzilla.redhat.com/show_bug.cgi?id=694806
3673 .. _v1.4.3.3:
3675 v1.4.3.3
3676 ========
3678 Usability, bells and whistles
3679 -----------------------------
3680 * The `git cola` desktop launchers now prompt for a repo
3681   by default.  This is done by using the new `--prompt`
3682   flag which tells `git cola` to ignore any git repositories
3683   in the current directory and prompt for one instead.
3685 Fixes
3686 -----
3687 * More Unicode fixes for repositories and home directories with
3688   embedded Unicode characters.  Thanks to Christian Jann for
3689   patience and helpful bug reports.
3691 * Fix the 'Clone' button in the startup dialog.
3694 .. _v1.4.3.2:
3696 v1.4.3.2
3697 ========
3699 Usability, bells and whistles
3700 -----------------------------
3701 * Faster startup time! `git cola` now offloads initialization
3702   to a background thread so that the GUI appears almost instantly.
3704 * Specialized diff options for p4merge, vimdiff, araxis, emerge,
3705   and ecmerge in difftool (backported from git.git).
3707 Fixes
3708 -----
3709 * Fix launching commands in the background on Windows
3710   (e.g. when launching `git difftool`).
3712 * Fix Unicode errors when home or repository directories contain
3713   Unicode characters.
3714   (`#74 <https://github.com/git-cola/git-cola/issues/74>`_)
3715   (`bz #694806 <https://bugzilla.redhat.com/show_bug.cgi?id=694806>`_)
3718 .. _v1.4.3.1:
3720 v1.4.3.1
3721 ========
3723 Usability, bells and whistles
3724 -----------------------------
3725 * The `cola classic` tool can be now configured to be dock-able.
3726   (`#56 <https://github.com/git-cola/git-cola/issues/56>`_)
3728 * The `cola classic` tool now uses visual sigils to indicate a file's status.
3729   The idea and icons were provided by Uri Okrent.
3731 * Include the 'Rescan' button in the 'Actions' widget regardless
3732   of whether inotify is installed.
3734 Packaging
3735 ---------
3736 * Fix installation of translations per Fedora
3737   This incorporates Fedora's fix for the translations path
3738   which originally appeared in cola-1.4.3-translations.patch.
3740 * Mac OS X git-cola developers can now generate git-cola.app
3741   application bundles using 'make app-bundle'.
3743 Fixes
3744 -----
3745 * Fixed an error when trying to use "Get Commit Message Template"
3746   with an undefined "commit.template" git config variable.
3747   (`bz #67521 <https://bugzilla.redhat.com/show_bug.cgi?id=675721>`_)
3748   (`#72 <https://github.com/git-cola/git-cola/issues/72>`_)
3750 * Properly raise the main window on Mac OS X.
3752 * Properly handle staging a huge numbers of files at once.
3754 * Speed up 'git config' usage by fixing cola's caching proxy.
3756 * Guard against damaged ~/.cola files.
3759 .. _v1.4.3:
3761 v1.4.3
3762 ======
3764 Usability, bells and whistles
3765 -----------------------------
3766 * `git dag` now has a separate display area
3767   for displaying commit metadata.  This area will soon
3768   grow additional functionality such as cherry-picking,
3769   branching, etc.
3771 Fixes
3772 -----
3773 * Fixed tests from a previous refactoring.
3775 * Guard against 'diff.external' configuration by always
3776   calling 'git diff' with the '--no-ext-diff' option.
3777   (`#67 <https://github.com/git-cola/git-cola/issues/67>`_)
3779 * Respect 'gui.diffcontext' so that cola's diff display
3780   shows the correct number of context lines.
3782 * Raise the GUI so that it is in the foreground on OS X.
3784 Packaging
3785 ---------
3786 * We now allow distutils to rewrite cola's shebang line.
3787   This allows us to run on systems where "which python"
3788   is Python3k.  This is exposed by setting the `PYTHON`
3789   Makefile variable to the location of python2.x.
3791 * git-cola.app is now a tiny download because it no longer
3792   contains Qt and PyQt.  These libraries are provided as a
3793   separate download.
3796 .. _v1.4.2.5:
3798 v1.4.2.5
3799 ========
3801 Usability, bells and whistles
3802 -----------------------------
3803 * Clicking on paths in the status widget copies them into the
3804   copy/paste buffer for easy middle-clicking into terminals.
3806 * `Ctrl+C` in diff viewer copies the selected diff to the clipboard.
3808 Fixes
3809 -----
3810 * Fixed the disappearing actions buttons on PyQt 4.7.4
3811   as reported by Arch and Ubuntu 10.10.
3812   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
3814 * Fixed mouse interaction with the status widget where some
3815   items could not be de-selected.
3817 Packaging
3818 ---------
3819 * Removed hard-coded reference to lib/ when calculating Python's
3820   site-packages directory.
3823 .. _v1.4.2.4:
3825 v1.4.2.4
3826 ========
3828 Usability, bells and whistles
3829 -----------------------------
3830 * Removed "single-click to (un)stage" in the status view.
3831   This is a usability improvement since we no longer perform
3832   different actions depending on where a row is clicked.
3834 * Added ability to create unsigned, annotated tags.
3836 Fixes
3837 -----
3838 * Updated documentation to use `cola.git` instead of `cola.gitcmd`.
3841 .. _v1.4.2.3:
3843 v1.4.2.3
3844 ========
3846 Usability, bells and whistles
3847 -----------------------------
3848 * Allow un/staging by right-clicking top-level items
3849   (`#57 <https://github.com/git-cola/git-cola/issues/57>`_)
3851 * Running 'commit' with no staged changes prompts to allow
3852   staging all files.
3853   (`#55 <https://github.com/git-cola/git-cola/issues/55>`_)
3855 * Fetch, Push, and Pull are now available via the menus
3856   (`#58 <https://github.com/git-cola/git-cola/issues/58>`_)
3858 Fixes
3859 -----
3860 * Simplified the actions widget to work around a regression
3861   in PyQt4 4.7.4.
3862   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
3865 .. _v1.4.2.2:
3867 v1.4.2.2
3868 ========
3870 Usability, bells and whistles
3871 -----------------------------
3872 * `git dag` interaction was made faster.
3874 Fixes
3875 -----
3876 * Added '...' indicators to the buttons for
3877   'Fetch...', 'Push...', 'Pull...', and 'Stash...'.
3878   (`#51 <https://github.com/git-cola/git-cola/issues/51>`_)
3880 * Fixed a hang-on-exit bug in the cola-provided
3881   'ssh-askpass' implementation.
3884 .. _v1.4.2.1:
3886 v1.4.2.1
3887 ========
3889 Usability, bells and whistles
3890 -----------------------------
3891 * Staging and unstaging is faster.
3892   (`#48 <https://github.com/git-cola/git-cola/issues/48>`_)
3894 * `git dag` reads history in a background thread.
3896 Portability
3897 -----------
3898 * Added `cola.compat.hashlib` for `Python 2.4` compatibility
3899 * Improved `PyQt 4.1.x` compatibility.
3901 Fixes
3902 -----
3903 * Configured menu actions use ``sh -c`` for Windows portability.
3906 .. _v1.4.2:
3908 v1.4.2
3909 ======
3911 Usability, bells and whistles
3912 -----------------------------
3913 * Added support for the configurable ``guitool.<tool>.*``
3914   actions as described in the ``git config`` documentation.
3915   (`git-config(1) <https://git-scm.com/docs/git-config>`_)
3916   (`#44 <https://github.com/git-cola/git-cola/issues/44>`_)
3918   This makes it possible to add new actions to `git cola`
3919   by simply editing ``~/.gitconfig``.  This implements the
3920   same guitool support as `git gui`.
3922 * Introduced a stat cache to speed up `git config` and
3923   repository status checks.
3925 * Added Alt-key shortcuts to the main `git cola` interface.
3927 * The `Actions` dock widget switches between a horizontal
3928   and vertical layout when resized.
3930 * We now use ``git diff --submodule`` for submodules
3931   (used when git >= 1.6.6).
3933 * The context menu for modified submodules includes an option
3934   to launch `git cola`.
3935   (`#17 <https://github.com/git-cola/git-cola/issues/17>`_)
3937 * Prefer ``$VISUAL`` over ``$EDITOR`` when both are defined.
3938   These are used to set a default editor in lieu of `core.editor`
3939   configuration.
3941 * Force the editor to be ``gvim`` when we see ``vim``.
3942   This prevents us from launching an editor in the (typically
3943   unattached) parent terminal and creating zombie editors
3944   that cannot be easily killed.
3946 * Selections are remembered and restored across updates.
3947   This makes the `partial-staging` workflow easier since the
3948   diff view will show the updated diff after staging.
3950 * Show the path to the current repository in a tooltip
3951   over the commit message editor.
3952   (`#45 <https://github.com/git-cola/git-cola/issues/45>`_)
3954 * Log internal ``git`` commands when ``GIT_COLA_TRACE`` is defined.
3955   (`#39 <https://github.com/git-cola/git-cola/issues/39>`_)
3957 Fixes
3958 -----
3959 * Improved backwards compatibility for Python 2.4.
3961 * `Review mode` can now review the current branch; it no longer
3962   requires you to checkout the branch into which the reviewed
3963   branch will be merged.
3965 * Guard against `color.ui = always` configuration when using
3966   `git log` by passing ``--no-color``.
3968 * ``yes`` and ``no`` are now supported as valid booleans
3969   by the `git config` parser.
3971 * Better defaults are used for `fetch`, `push`, and `pull`..
3972   (`#43 <https://github.com/git-cola/git-cola/issues/43>`_)
3974 Packaging
3975 ---------
3976 * Removed colon (`:`) from the application name on Windows
3977   (`#41 <https://github.com/git-cola/git-cola/issues/41>`_)
3979 * Fixed bugs with the Windows installer
3980   (`#40 <https://github.com/git-cola/git-cola/issues/40>`_)
3982 * Added a more standard i18n infrastructure.  The install
3983   tree now has the common ``share/locale/$lang/LC_MESSAGES/git-cola.mo``
3984   layout in use by several projects.
3986 * Started trying to accommodate Mac OS X 10.6 (Snow Leopard)
3987   in the ``darwin/`` build scripts but our tester is yet to
3988   report success building a `.app` bundle.
3990 * Replaced use of ``perl`` in Sphinx/documentation Makefile
3991   with more-portable ``sed`` constructs.  Thanks to
3992   Stefan Naewe for discovering the portability issues and
3993   providing msysgit-friendly patches.
3996 .. _v1.4.1.2:
3998 v1.4.1.2
3999 ========
4001 Usability, bells and whistles
4002 -----------------------------
4003 * It is now possible to checkout from the index as well
4004   as from `HEAD`.  This corresponds to the
4005   `Removed Unstaged Changes` action in the `Repository Status` tool.
4007 * The `remote` dialogs (fetch, push, pull) are now slightly
4008   larger by default.
4010 * Bookmarks can be selected when `git cola` is run outside of a git repository.
4012 * Added more user documentation.  We now include many links to
4013   external git resources.
4015 * Added `git dag` to the available tools.
4016   `git dag` is a node-based DAG history browser.
4017   It doesn't do much yet, but it's been merged so that we can start
4018   building and improving upon it.
4020 Fixes
4021 -----
4022 * Fixed a missing ``import`` when showing `right-click` actions
4023   for unmerged files in the `Repository Status` tool.
4025 * ``git update-index --refresh`` is no longer run every time
4026   ``git cola version`` is run.
4028 * Don't try to watch non-existent directories when using `inotify`.
4030 * Use ``git rev-parse --symbolic-full-name`` plumbing to find
4031   the name of the current branch.
4033 Packaging
4034 ---------
4035 * The ``Makefile`` will now conditionally include a ``config.mak``
4036   file located at the root of the project.  This allows for user
4037   customizations such as changes to the `prefix` variable
4038   to be stored in a file so that custom settings do not need to
4039   be specified every time on the command-line.
4041 * The build scripts no longer require a ``.git`` directory to
4042   generate the ``builtin_version.py`` module.  The release tarballs
4043   now include a ``version`` file at the root of the project which
4044   is used in lieu of having the git repository available.
4045   This allows for ``make clean && make`` to function outside of
4046   a git repository.
4048 * Added maintainer's ``make dist`` target to the ``Makefile``.
4050 * The built-in `simplejson` and `jsonpickle` libraries can be
4051   excluded from ``make install`` by specifying the ``standalone=true``
4052   `make` variable.  For example, ``make standalone=true install``.
4053   This corresponds to the ``--standalone`` option to ``setup.py``.
4056 .. _v1.4.1.1:
4058 v1.4.1.1
4059 ========
4061 Usability, bells and whistles
4062 -----------------------------
4063 * We now use patience diff by default when it is available via
4064   `git diff --patience`.
4066 * Allow closing the `cola classic` tool with `Ctrl+W`.
4068 Fixes
4069 -----
4070 * Fixed an unbound variable error in the `push` dialog.
4072 Packaging
4073 ---------
4074 * Don't include `simplejson` in MANIFEST.in.
4076 * Update desktop entry to read `Cola Git GUI`.
4079 .. _v1.4.1:
4081 v1.4.1
4082 ======
4084 This feature release adds two new features directly from
4085 `git cola`'s github issues backlog.  On the developer
4086 front, further work was done towards modularizing the code base.
4088 Usability, bells and whistles
4089 -----------------------------
4090 * Dragging and dropping patches invokes `git am`
4091   (`#3 <https://github.com/git-cola/git-cola/issues/3>`_)
4093 * A dialog to allow opening or cloning a repository
4094   is presented when `git cola` is launched outside of a git repository.
4095   (`#22 <https://github.com/git-cola/git-cola/issues/22>`_)
4097 * Warn when `push` is used to create a new branch
4098   (`#35 <https://github.com/git-cola/git-cola/issues/35>`_)
4100 * Optimized startup time by removing several calls to `git`.
4103 Portability
4104 -----------
4105 * `git cola` is once again compatible with PyQt 4.3.x.
4107 Developer
4108 ---------
4109 * `cola.gitcmds` was added to factor out git command-line utilities
4111 * `cola.gitcfg` was added for interacting with `git config`
4113 * `cola.models.browser` was added to factor out repo browser data
4115 * Added more tests
4118 .. _v1.4.0.5:
4120 v1.4.0.5
4121 ========
4123 Fixes
4124 -----
4125 * Fix launching external applications on Windows
4127 * Ensure that the `amend` checkbox is unchecked when switching modes
4129 * Update the status tree when amending commits
4132 .. _v1.4.0.4:
4134 v1.4.0.4
4135 ========
4137 Packaging
4138 ---------
4139 * Fix Lintian warnings
4142 .. _v1.4.0.3:
4144 v1.4.0.3
4145 ========
4147 Fixes
4148 -----
4149 * Fix X11 warnings on application startup
4152 .. _v1.4.0.2:
4154 v1.4.0.2
4155 ========
4157 Fixes
4158 -----
4159 * Added missing 'Exit Diff Mode' button for 'Diff Expression' mode
4160   (`#31 <https://github.com/git-cola/git-cola/issues/31>`_)
4162 * Fix a bug when initializing fonts on Windows
4163   (`#32 <https://github.com/git-cola/git-cola/issues/32>`_)
4166 .. _v1.4.0.1:
4168 v1.4.0.1
4169 ========
4171 Fixes
4172 -----
4173 * Keep entries in sorted order in the `cola classic` tool
4175 * Fix staging untracked files
4176   (`#27 <https://github.com/git-cola/git-cola/issues/27>`_)
4178 * Fix the `show` command in the Stash dialog
4179   (`#29 <https://github.com/git-cola/git-cola/issues/29>`_)
4181 * Fix a typo when loading merge commit messages
4182   (`#30 <https://github.com/git-cola/git-cola/issues/30>`_)
4185 .. _v1.4.0:
4187 v1.4.0
4188 ======
4190 This release focuses on a redesign of the git-cola user interface,
4191 a tags interface, and better integration of the `cola classic` tool.
4192 A flexible interface based on configurable docks is used to manage the
4193 various cola widgets.
4195 Usability, bells and whistles
4196 -----------------------------
4197 * New GUI is flexible and user-configurable
4199 * Individual widgets can be detached and rearranged arbitrarily
4201 * Add an interface for creating tags
4203 * Provide a fallback `SSH_ASKPASS` implementation to prompt for
4204   SSH passwords on fetch/push/pull
4206 * The commit message editor displays the current row/column and
4207   warns when lines get too long
4209 * The `cola classic` tool displays upstream changes
4211 * `git cola --classic` launches `cola classic` in standalone mode
4213 * Provide more information in log messages
4215 Fixes
4216 -----
4217 * Inherit the window manager's font settings
4219 * Miscellaneous PyQt4 bug fixes and workarounds
4221 Developer
4222 ---------
4223 * Removed all usage of Qt Designer `.ui` files
4225 * Simpler model/view architecture
4227 * Selection is now shared across tools
4229 * Centralized notifications are used to keep views in sync
4231 * The `cola.git` command class was made thread-safe
4233 * Less coupling between model and view actions
4235 * The status view was rewritten to use the MVC architecture
4237 * Added more documentation and tests
4240 .. _v1.3.9:
4242 v1.3.9
4243 ======
4245 Usability, bells and whistles
4246 -----------------------------
4247 * Added a `cola classic` tool for browsing the entire repository
4249 * Handle diff expressions with spaces
4251 * Handle renamed files
4253 Portability
4254 -----------
4255 * Handle carat `^` characters in diff expressions on Windows
4257 * Worked around a PyQt 4.5/4.6 QThreadPool bug
4259 Documentation
4260 -------------
4261 * Added a keyboard shortcuts reference page
4263 * Added developer API documentation
4265 Fixes
4266 -----
4267 * Fix the diff expression used when reviewing branches
4269 * Fix a bug when pushing branches
4271 * Fix X11 warnings at startup
4273 * Fix more interrupted system calls on Mac OS X
4276 .. _v1.3.8:
4278 v1.3.8
4279 ======
4281 Usability, bells and whistles
4282 -----------------------------
4283 * Fresh and tasty SVG logos
4285 * Added `Branch Review` mode for reviewing topic branches
4287 * Added diff modes for diffing between tags, branches,
4288   or arbitrary `git diff` expressions
4290 * The push dialog selects the current branch by default.
4291   This is in preparation for `git 1.7.0` where `git push`
4292   will refuse to push when run without specifying the remote name
4293   and branch.  See the `git` release notes for more information
4295 * Support `open` and `clone` commands on Windows
4297 * Allow saving cola UI layouts
4299 * Re-enabled `double-click-to-stage` for unmerged entries.
4300   Disabling it for unmerged items was inconsistent, though safer.
4302 * Show diffs when navigating the status tree with the keyboard
4304 Packaging
4305 ---------
4306 * Worked around `pyuic4` bugs in the `setup.py` build script
4308 * Added Mac OS X application bundles to the download page
4311 .. _v1.3.7:
4313 v1.3.7
4314 ======
4316 Subsystems
4317 ----------
4318 * `git difftool` became an official git command in `git 1.6.3`.
4320 * `git difftool` learned `--no-prompt` / `-y` and a corresponding
4321   `difftool.prompt` configuration variable
4323 Usability, bells and whistles
4324 -----------------------------
4325 * Warn when `non-fast-forward` is used with fetch, push or pull
4327 * Allow `Ctrl+C` to exit cola when run from the command line
4329 Fixes
4330 -----
4331 * Support Unicode font names
4333 * Handle interrupted system calls
4335 Developer
4336 ---------
4337 * More of the code base was updated to follow the `PEP-8` coding style
4339 * Added more tests
4341 Packaging
4342 ---------
4343 * All resources are now installed into `$prefix/share/git-cola`.
4344   Closed Debian bug #519972
4346   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519972
4349 .. _v1.3.6:
4351 v1.3.6
4352 ======
4354 Subsystems
4355 ----------
4356 * Added support for Kompare in `git difftool`
4358 * Added a separate configuration namespace for `git difftool`
4360 * Added the `diff.tool` configuration variable to define the default diff tool
4362 Usability, bells and whistles
4363 -----------------------------
4364 * The stash dialog allows passing the `--keep-index` option to `git stash`
4366 * Amending a published commit warns at commit time
4368 * Simplified the file-across-revisions comparison dialog
4370 * `origin` is selected by default in fetch/push/pull
4372 * Removed the search field from the log widget
4374 * The log window moved into a drawer widget at the bottom of the UI
4376 * Log window display can be configured with
4377   `cola.showoutput` = `{never, always, errors}`.  `errors` is the default.
4379 * `NOTE` -- `cola.showoutput` was removed with the GUI rewrite in 1.4.0.
4381 Developer
4382 ---------
4383 * Improved nose unittest usage
4385 Packaging
4386 ---------
4387 * Added a Windows/msysGit installer
4389 * Included private versions of `simplejson` and `jsonpickle`
4390   for ease of installation and development