Merge pull request #1343 from davvid/i18n
[git-cola.git] / CHANGES.rst
blobea580ace8a4202631eeaba6e042196c6e83ef78a
1 .. _v4.4.0:
3 v4.4.0
4 ======
6 Usability, bells and whistles
7 -----------------------------
8 * Git Cola now preserves `# commentary` in commit messages by default.
9   The `commit.cleanup` Git configuration variable can be used to
10   customize this behavior. For example, if you want Git Cola to
11   strip comments (the old behavior before v4.4.0) then
12   you can run `git config --global commit.cleanup strip` or configure
13   the "Commit Message Cleanup" setting in the Preferences window.
14   (`#1330 <https://github.com/git-cola/git-cola/issues/1330>`_)
16 * `git dag` now includes completions for `git log` options in the text input field.
18 * `git dag` now provides convenient search filters when right-clicking in the
19   text input field.
21 * A `1.25 x` Hi-DPI magnification option mode is now available in the Appearance settings.
22   (`#1313 <https://github.com/git-cola/git-cola/issues/1313>`_)
24 * MacOS-specific application themes are now available in the Appearance settings
25   when the pyobjc module is installed.
26   (`#905 <https://github.com/git-cola/git-cola/issues/905>`_)
28 Fixes
29 -----
30 * `git dag` was not displaying history when refspecs were specified.
31   (`#1334 <https://github.com/git-cola/git-cola/issues/1334>`_)
33 Development
34 -----------
35 * `cercis <https://pypi.org/project/cercis/>`_ is now being used to enforce
36   Git Cola's python code style. We were previously disabling quote normalization
37   when using `black`. Use of `cercis` allows us to enable quote normalization
38   under its default single-quote settings.
40 * The test suite now works on Windows.
41   (`#1331 <https://github.com/git-cola/git-cola/issues/1331>`_)
42   (`#1332 <https://github.com/git-cola/git-cola/pull/1332>`_)
44 * Pre-commits hooks and code modernization.
45   (`#1333 <https://github.com/git-cola/git-cola/pull/1333>`_)
47 * Compatibility with Sphinx 7.2.0 was added to the `sphinxtogithub`
48   sphinx documentation plugin.
49   (`#1336 <https://github.com/git-cola/git-cola/pull/1336>`_)
52 .. _v4.3.2:
54 v4.3.2
55 ======
57 Usability, bells and whistles
58 -----------------------------
59 * The minimum font size can now be set lower, which is helpful for Hi-DPI displays.
60   (`#1342 <https://github.com/git-cola/git-cola/pull/1342>`_)
62 Fixes
63 -----
64 * Flashing windows during startup on Windows has been fixed.
65   (`#1329 <https://github.com/git-cola/git-cola/issues/1329>`_)
67 * `git dag` was not displaying history when refspecs were specified.
68   (`#1334 <https://github.com/git-cola/git-cola/issues/1334>`_)
70 Development
71 -----------
72 * Compatibility with Sphinx 7.2.0 was added to the `sphinxtogithub`
73   sphinx documentation plugin.
74   (`#1336 <https://github.com/git-cola/git-cola/pull/1336>`_)
77 .. _v4.3.1:
79 v4.3.1
80 ======
82 Fixes
83 -----
84 * The pypi wheel was fixed to include `entry_points.txt`.
86 * The "Revert" command was throwing an exception after succesfully completing.
89 .. _v4.3.0:
91 v4.3.0
92 ======
94 Usability, bells and whistles
95 -----------------------------
96 * `git dag` now displays commit metadata more similarly to `git log`.
97   The commit date is now displayed and the subject field is displayed
98   directly above the extended description.
100 * `git dag` now supports a `cola.logdate` configuration for controlling
101   the date format. The configured value is passed to `git log --date=<format>`.
102   (`#1319 <https://github.com/git-cola/git-cola/pull/1319>`_)
103   (`#1312 <https://github.com/git-cola/git-cola/issues/1312>`_)
105 * The default `patches` directory that is used when exporting patches
106   is now configurable using the `cola.patchesdirectory` configuration
107   variable and the Preferences dialog.
109 * The Diff Editor can now export the diff selection, or the current
110   diff hunk, to a `*.patch` file from the `Patches` context menu action.
112 * Existing patches can be appended to by choosing a patch file from
113   the `Append Patch` sub-menu in the `Patches` context menu action.
115 * Patches can now be applied by dragging and dropping patches files from
116   a file browser onto the diff editor. The "Apply Patches" dialog is
117   launched with the drag-and-dropped patch files.
119 * Shell completions for zsh are now provided in the source distribution.
120   See the `contrib/_git-cola` zsh completion file for more details
122 Fixes
123 -----
124 * ``QApplication::desktop()`` is no longer available on PyQt6.
125   Git Cola no longer relies on this method.
127 Packaging
128 ---------
129 * Git Cola can now be installed on Windows using `winget`.
130   See the ``README.md`` file for more details.
131   (`#1318 <https://github.com/git-cola/git-cola/pull/1318>`_)
134 .. _v4.2.1:
136 v4.2.1
137 ======
139 Fixes
140 -----
141 * Diffs for repositories with a single commit have been fixed.
142   (`#1306 <https://github.com/git-cola/git-cola/issues/1306>`_)
144 * The toolbars follow the Qt toolbar style, as they did prior to `v4.2.0`.
145   (`#1307 <https://github.com/git-cola/git-cola/issues/1307>`_)
147 * The "Checkout Branch" dialog was fixed to display all completions when first shown.
148   (`#1308 <https://github.com/git-cola/git-cola/issues/1308>`_)
151 .. _v4.2.0:
153 v4.2.0
154 ======
156 Usability, bells and whistles
157 -----------------------------
158 * The Diff Editor can now send diffs to your favorite editor before the diffs are applied.
159   The right-click "Edit Diff ..." menu actions and the `Ctrl + Shift + S` /
160   `Ctrl + Shift + U` hotkeys send the current diff hunk, or the selected diff, to your
161   editor before they are applied to the worktree / staging area.
162   (`#1290 <https://github.com/git-cola/git-cola/pull/1290>`_)
163   (`#794 <https://github.com/git-cola/git-cola/issues/794>`_)
165 * The Diff Editor and DAG viewer can now search within their diffs using
166   `Ctrl + F` and `Ctrl + G` hotkeys.
167   (`#1116 <https://github.com/git-cola/git-cola/issues/1116>`_)
169 * A new *Diff Mode* can be used to diff and unstage edits relative to any commit.
170   (`#816 <https://github.com/git-cola/git-cola/issues/816>`_)
172 * The Commit Message Editor can now spell-check the summary field. Previously only the
173   "Extended Description..." field supported spell checking.
174   (`#633 <https://github.com/git-cola/git-cola/issues/633>`_)
175   (`#1070 <https://github.com/git-cola/git-cola/issues/1070>`_)
177 * Repositories in your "Recents" and "Favorites" can now be searched using the new
178   "Search" tool button. Quickly switch between these repositories using the `Alt + P`
179   hotkey and "Quick Open..." File menu action.
180   (`#1282 <https://github.com/git-cola/git-cola/pull/1282>`_)
182 * "Favorites", "Recents" and the startup dialog now display a case-insensitively
183   sorted list of repositories.
184   (`#1047 <https://github.com/git-cola/git-cola/issues/1047>`_)
186 * The startup dialog now has a right-click context menu that allows you to prune
187   stale entries and other actions that were not previously accessible from
188   the startup dialog.
189   (`#1199 <https://github.com/git-cola/git-cola/issues/1199>`_)
190   (`#1280 <https://github.com/git-cola/git-cola/pull/1280>`_)
192 * The "Copy Leading Paths" action in the Status tool's right-click "Copy" sub-menu
193   can now strip off an arbitrary number of leading paths.
194   (`#784 <https://github.com/git-cola/git-cola/issues/784>`_)
196 * The "Cherry-Pick" action now reports errors when "git cherry-pick" fails.
197   A new "Abort Cherry-Pick" action has been added for aborting a failed cherry-pick.
198   (`#1062 <https://github.com/git-cola/git-cola/issues/1062>`_)
200 * The diff text can now be quickly zoomed using `Ctrl + Mouse wheel` scroll.
201   This will quickly change the text size within the current session only.
202   (`#1029 <https://github.com/git-cola/git-cola/issues/1029>`_)
204 * The Console and Diff widgets learned to open URLs. Right-click on a line
205   that contains http URLs and context-menu actions for opening each URL
206   using your default web browser will be displayed.
207   (`#1139 <https://github.com/git-cola/git-cola/issues/1139>`_)
209 * Drag-and-drop has been improved when dragging filenames from the Status tool.
210   Dragging multiple files requires special handling to improve usability.
211   Some terminals (such as `kitty`) consume multiple file URLs by separating paths with
212   newlines. This is useful when you'd like to capture raw filenames but is less
213   convenient when dropping  filenames onto a command-line. Drag with the `Alt`-modifier
214   held down to drag-and-drop filenames for command-line use. Using the `Alt` modifier
215   omits URLs so that the drag-and-drop payload includes only space-delimited,
216   shell-quoted paths.
217   (`#719 <https://github.com/git-cola/git-cola/issues/719>`_)
219 * The DAG viewer now displays the diff between the start and end commits when
220   multiple commits are selected. The diffs are displayed in the DAG's diff viewer.
221   (`#552 <https://github.com/git-cola/git-cola/issues/552>`_)
223 * The DAG viewer learned to checkout branches and initiate rebases from its right-click menu.
224   (`#1113 <https://github.com/git-cola/git-cola/issues/1113>`_)
226 * The DAG diff viewer learned to word-wrap the diff text.
227   (`#1242 <https://github.com/git-cola/git-cola/issues/1242>`_)
229 * The spelling dictionaries are now discovered dynamically at runtime.
230   `dict/words` and `dict/propernames` are now discovered via `$XDG_DATA_DIRS`
231   by the spell checker. This allows a spelling dictionary to be placed in eg.
232   `~/.local/share/dict/words` to override the default `/usr/share/dict/words`.
233   (`#873 <https://github.com/git-cola/git-cola/issues/873>`_)
235 * The File menu now has a "Patches" sub-menu with a full set of "git am" Patch actions.
237 * The Diff Editor and various Diff widgets now have a "Copy Diff" action with an
238   `Alt + Shift + C` hotkey that copies the selected diff text to the clipboard with the
239   `+`, `-` and `<Space>` diff prefix characters removed.
240   (`#1288 <https://github.com/git-cola/git-cola/issues/1288>`_)
242 * The "Revert" action for reverting commits from the DAG tool now displays error
243   messages when ``git revert`` fails.
244   (`#885 <https://github.com/git-cola/git-cola/issues/885>`_)
246 * The Diff Editor now uses an easier-to-see *block cursor* by default.
247   Disable `cola.blockcursor <https://git-cola.readthedocs.io/en/latest/git-cola.html#cola-blockcursor>`_
248   to continue using original *line cursor* by running
249   ``git config --global cola.blockcursor false``, or by editing the settings in the menu.
251 * The "Unmerged" header item in the Status tool now displays a summary list of unmerged files.
253 * The hotkeys documentation has been updated to clarify that the "Copy Commit ID"
254   action is available in several tools.
255   (`#779 <https://github.com/git-cola/git-cola/issues/779>`_)
257 * Saving files when using "Browse Other Branch" now displays errors from
258   ``git show`` when saving files from arbitrary commits.
259   (`#1065 <https://github.com/git-cola/git-cola/issues/1065>`_)
261 * The Apply Patches dialog now reports errors when patches fail to apply.
262   (`#673 <https://github.com/git-cola/git-cola/issues/673>`_)
264 * The "Status" tool now disables "Copy" actions in its context menu when no
265   files have been selected.
266   (`#697 <https://github.com/git-cola/git-cola/issues/697>`_)
268 * The "Unstage" menu item in the Status tool now uses a "Remove" icon.
269   (`#1289 <https://github.com/git-cola/git-cola/pull/1289>`_)
271 Development
272 -----------
273 * The vendored `qtpy` module was modified to sever its dependency on the
274   `packaging.version` module. This mostly affects users that want to run
275   Git Cola directly from the the source tree outside of any virtualenv.
276   (`#1286 <https://github.com/git-cola/git-cola/issues/1286>`_)
279 .. _v4.1.0:
281 v4.1.0
282 ======
284 Usability, bells and whistles
285 -----------------------------
286 * The rebase editor was taught to handle stacked branch workflows enabled by
287   ``git rebase --update-refs``. The ``git cola rebase`` sub-command now has
288   an ``--update-refs`` option and the menu actions display a prompt that allows
289   you to enable the updating of stacked branches.
290   (`#1261 <https://github.com/git-cola/git-cola/pull/1261>`_)
291   (`#571 <https://github.com/git-cola/git-cola/issues/571>`_)
293 * The status widget now respects `diff.ignoreSubmodules`.
294   (`#1269 <https://github.com/git-cola/git-cola/issues/1269>`_)
296 Packaging and Dependencies
297 --------------------------
298 * PyQt6 is now officially supported.
299   (`#1211 <https://github.com/git-cola/git-cola/issues/1211>`_)
300   (`#1273 <https://github.com/git-cola/git-cola/issues/1273>`_)
302 * The vendored `qtpy` library was updated to `v2.3.0`.
304 Development
305 -----------
306 * Fixes and updates to Git Cola's CI actions.
307   (`#1278 <https://github.com/git-cola/git-cola/pull/1278>`_)
308   (`#1277 <https://github.com/git-cola/git-cola/issues/1277>`_)
311 .. _v4.0.4:
313 v4.0.4
314 ======
316 Fixes
317 -----
318 * The "T" hotkey for "Find Files" was removed to avoid issues in some configurations.
319   (`#1270 <https://github.com/git-cola/git-cola/issues/1270>`_)
321 * Some context menus entries were erroring out on binary files.
322   (`#1271 <https://github.com/git-cola/git-cola/pull/1271>`_)
325 .. _v4.0.3:
327 v4.0.3
328 ======
330 Usability, bells and whistles
331 -----------------------------
332 * The branches widget no longer loses its selection state in response to
333   notifications and UI actions.
334   (`#1221 <https://github.com/git-cola/git-cola/issues/1221>`_)
336 * The use of ``gravatar.com`` to fetch icons associated with author emails
337   can now be disabled by setting `git config --global cola.gravatar false`.
338   (`#933 <https://github.com/git-cola/git-cola/issues/933>`_)
340 Fixes
341 -----
342 * The config reader has been revamped to better read settings when git config
343   files are located in unexpected locations.
344   (`#927 <https://github.com/git-cola/git-cola/issues/927>`_)
345   (`#1264 <https://github.com/git-cola/git-cola/issues/1264>`_)
347 * The preferences dialog no longer throws an error when the editor has not
348   been configured.
349   (`#1263 <https://github.com/git-cola/git-cola/issues/1263>`_)
351 * Context menu actions for staging files has been added when diffing images.
352   (`#1265 <https://github.com/git-cola/git-cola/issues/1265>`_)
354 * The stash editor now properly displays stashes with slashes ("/") in
355   their names or messsages.
356   (`#1267 <https://github.com/git-cola/git-cola/pull/1267>`_)
358 * The settings file is now written-to and read-from in a robust manner to avoid data
359   loss when doing an ACPI shutdown or forced shutdown of a machine.
360   (`#1241 <https://github.com/git-cola/git-cola/issues/1241>`_)
362 * Git Cola now displays an error message when attempting to open a repository that
363   cannot be accessed due to the new `safe.directory` protections in Git v2.30.3.
364   (`#1243 <https://github.com/git-cola/git-cola/issues/1243>`_)
366 Translations
367 ------------
368 * The .po and .pot files now contain location information.
369   (`#880 <https://github.com/git-cola/git-cola/issues/880>`_)
372 .. _v4.0.2:
374 v4.0.2
375 ======
377 Usability, bells and whistles
378 -----------------------------
379 * The Rebase editor (`git-cola-sequence-editor`) now supports multi-select.
380   Use `Shift-{Up,Down}` to select multiple lines and the keyboard hotkeys
381   listed in the `?` dialog to drive the UI.
382   (`#1257 <https://github.com/git-cola/git-cola/pull/1257>`_)
384 * The `$GIT_VISUAL` and `$VISUAL` environment variable are now consulted in addition
385   to `$GIT_EDITOR` and `$EDITOR` when the `gui.editor` configuration is unset.
386   (`#1237 <https://github.com/git-cola/git-cola/pull/1237>`_)
388 * The application window icon is now enabled when running on Wayland.
389   (`#1240 <https://github.com/git-cola/git-cola/pull/1240>`_)
391 * The Status widget now has an "Open Worktree" action.
392   (`#1245 <https://github.com/git-cola/git-cola/pull/1245>`_)
394 * The "Open Using Default Application", "Open Directory",
395   "Open Parent Directory" and "Open Worktree" actions are now available on Windows.
397 * The dialog for opening repositories is now a read-only dialog that omits the
398   ability to create folders and modify the filesystem.
399   (`#1168 <https://github.com/git-cola/git-cola/issues/1168>`_)
401 * A few more `git` calls have been eliminated from the startup sequence.
402   This further improved the startup time for Git Cola.
403   (`#1259 <https://github.com/git-cola/git-cola/pull/1259>`_)
405 Fixes
406 -----
407 * Documentation rendering errors have been fixed.
408   (`#1256 <https://github.com/git-cola/git-cola/pull/1256>`_)
410 * Use of a `~/.config/git-cola/language` file to override the language has been fixed.
411   (`#1246 <https://github.com/git-cola/git-cola/issues/1246>`_)
413 * We no longer write the `cola.spellcheck` configuration value on launch.
414   (`#1238 <https://github.com/git-cola/git-cola/pull/1238>`_)
416 Translations
417 ------------
418 * Updated Spanish translation.
419   (`#1244 <https://github.com/git-cola/git-cola/pull/1244>`_)
421 * Updated Japanese translation.
422   (`#1249 <https://github.com/git-cola/git-cola/pull/1249>`_)
424 Packaging
425 ---------
426 * Building documentation offline is supported again.
427   (`#1250 <https://github.com/git-cola/git-cola/issues/1250>`_)
429 * The Appstream Metadata files were missing in the v4.0.0 release are included again.
430   (`#1254 <https://github.com/git-cola/git-cola/pull/1254>`_)
431   (`#1253 <https://github.com/git-cola/git-cola/issues/1253>`_)
434 .. _v4.0.1:
436 v4.0.1
437 ======
439 Usability, bells and whistles
440 -----------------------------
441 * Double-clicking dock widgets no longer creates sub-windows when the layout is locked.
442   (`#1176 <https://github.com/git-cola/git-cola/issues/1176>`_)
443   (`#1198 <https://github.com/git-cola/git-cola/pull/1198>`_)
445 Fixes
446 -----
447 * We now guard against `locale.getdefaultlocale()` returning `None` in some
448   configurations, notably on macOS if none of 'LC_ALL', 'LC_CTYPE', 'LANG' or 'LANGUAGE'
449   are defined.
450   (`#1234 <https://github.com/git-cola/git-cola/issues/1234>`_)
452 * The preferences dialog has been fixed to properly handle booleans.
453   (`#1235 <https://github.com/git-cola/git-cola/issues/1235>`_)
455 * The `docs/` directory was restructured to avoid missing `setup.py` errors.
456   `share/doc/git-cola` is now a symlink pointing to `docs/`.
457   (`#1230 <https://github.com/git-cola/git-cola/issues/1230>`_)
459 * Message boxes could sometimes display off-screen or using geometry that is larger
460   than the current desktop. Message box sizes are now clamped to the desktop size.
461   (`#1228 <https://github.com/git-cola/git-cola/issues/1228>`_)
464 .. _v4.0.0:
466 v4.0.0
467 ======
469 Breaking Changes
470 ----------------
471 These changes are primarily breaking changes for packagers of Git Cola.
472 For example, Linux distribution and Homebrew package maintainers may need to
473 be aware of these changes.
475 Changes have been made build infrastructure and the resulting filesystem artifacts.
477 * The build system is now Python3-only and has been modernized for PEP-517/518.
478   While Git Cola still builds and runs under Python2, it is no longer officially
479   supported and may stop working in a future release without notice.
480   (`#1201 <https://github.com/git-cola/git-cola/issues/1201>`_)
482 * The `#!/usr/bin/env python` shebang lines in the `git-cola` and `git-dag` wrapper
483   scripts have been updated to use `python3`.
484   (`#1204 <https://github.com/git-cola/git-cola/pull/1204>`_)
486 * The build system was switched to `setuptools` and no longer depends on `distutils`.
487   ``python setup.py {build,install,build_pot,build_mo}`` are no longer provided.
488   Use the https://pypa-build.readthedocs.io/en/stable/installation.html
489   ``python -m build`` tool to generate sdist and wheel distributions,
490   and ``pip install .`` to install Git Cola from source.
491   (`#1204 <https://github.com/git-cola/git-cola/pull/1204>`_)
493 * The `git-cola`, `git-dag` and `git-cola-sequence-editor` commands are now installed
494   using setuptools entry points.
496 * The `bin/` wrapper scripts in the source tree continue to be provided for convenience
497   but they are not the scripts that get installed.
499 * The `qtpy` Python package is no longer installed alongside the `cola` Python package.
501 * The `cola` package is now installed into the standard Python site-packages location.
503 * The `share/git-cola/lib` private Python modules directory no longer exists.
505 * The `NO_VENDOR_LIBS` and `NO_PRIVATE_LIBS` Makefile options are no longer necessary.
507 * The `share/git-cola` filesystem namespace no longer exists. All of cola's package data
508   is distributed alongside the `cola` module as package data.
510 * Building the Sphinx documentation now also requires the `jaraco.packaging` and
511   `rst.linker` packages. See `requirements/requirements-dev.txt` for the package
512   requirement details.
514 Usability, bells and whistles
515 -----------------------------
516 * `Custom UI themes
517   <https://git-cola.readthedocs.io/en/latest/git-cola.html#custom-themes>`_
518   can be used by adding `*.qss` Qt stylesheet files to `~/.config/git-cola/themes/`.
519   (`#1222 <https://github.com/git-cola/git-cola/pull/1222>`_)
520   (`#1226 <https://github.com/git-cola/git-cola/pull/1226>`_)
522 * Git Cola now keeps track of child Browser windows and will close all of them when
523   the main window is closed.
524   (`#1200 <https://github.com/git-cola/git-cola/pull/1200>`_)
526 Fixes
527 -----
528 * Staging conflicted binary files has been fixed to avoid Unicode decoding errors.
529   (`#1189 <https://github.com/git-cola/git-cola/issues/1189>`_)
531 * Ensure that secure permissions are used when creating temporary files.
532   (`#1209 <https://github.com/git-cola/git-cola/pull/1209>`_)
534 * The line numbering in the diff viewer was corrected when displaying merge diffs.
535   (`#1208 <https://github.com/git-cola/git-cola/pull/1208>`_)
537 * Documentation typofixes.
538   (`#1193 <https://github.com/git-cola/git-cola/pull/1193>`_)
540 * Git Cola was revamped to use Qt signals and slots for all of its notifications.
541   This made its notification system more robust.
542   (`#1202 <https://github.com/git-cola/git-cola/pull/1202>`_)
543   (`#1203 <https://github.com/git-cola/git-cola/pull/1203>`_)
544   (`#1205 <https://github.com/git-cola/git-cola/pull/1205>`_)
545   (`#1206 <https://github.com/git-cola/git-cola/pull/1206>`_)
547 Packaging
548 ---------
549 * `vcruntime140.dll` and `msvcp140.dll` are now included in the Windows installation.
550   (`#1207 <https://github.com/git-cola/git-cola/pull/1207>`_)
553 .. _v3.12.0:
555 v3.12.0
556 =======
558 Usability, bells and whistles
559 -----------------------------
560 * The git config guitool action can now be grouped under user-defined menus.
561   This is done by using slash (``/``) delimiters in the action name.
562   Entries before the final slash are treated like submenus inside the
563   top-level ``Actions`` menu.
564   (`#1150 <https://github.com/git-cola/git-cola/issues/1150>`_)
566 * Toolbars now have a full set of icons. The icons follow the system theme
567   and can be configured to display text, just icons, or text and icons.
568   (`#1177 <https://github.com/git-cola/git-cola/pull/1177>`_)
570 * The startup dialog will now open the selected repository when the "enter"
571   key is pressed.
572   (`#1162 <https://github.com/git-cola/git-cola/issues/1162>`_)
574 * ``Shift+S`` will stage selected lines (in addition to ``s``).
575   (`#1187 <https://github.com/git-cola/git-cola/issues/1187>`_)
577 Fixes
578 -----
579 * The vendored qtpy library was patched to retain Python2 compatibility.
581 * The "Unstage" toolbar action was fixed.
582   (`#1178 <https://github.com/git-cola/git-cola/issues/1178>`_)
584 * We now avoid `setWidth(float)` for compatibility with newer Qt versions.
585   (`#1183 <https://github.com/git-cola/git-cola/pull/1183>`_)
587 * Documentation typofixes.
588   (`#1185 <https://github.com/git-cola/git-cola/pull/1185>`_)
590 Translations
591 ------------
592 * Updated Polish translation.
593   (`#1184 <https://github.com/git-cola/git-cola/pull/1184>`_)
595 Development
596 -----------
597 * Git Cola now uses Github Actions for running its continuous integration tests.
598   (`#1179 <https://github.com/git-cola/git-cola/pull/1179>`_)
601 .. _v3.11.0:
603 v3.11.0
604 =======
606 Usability, bells and whistles
607 -----------------------------
608 * The Status tool was improved to better retain selected files when
609   the state changes and the display is refreshed.
610   (`#1130 <https://github.com/git-cola/git-cola/issues/1130>`_)
611   (`#1131 <https://github.com/git-cola/git-cola/pull/1131>`_)
613 * The Diff editor can now stage selected lines for untracked files.
614   Git Cola will detect when a file is untracked and will allow you to
615   partially stage it, just like existing tracked files.
616   (`#1146 <https://github.com/git-cola/git-cola/pull/1146>`_)
617   (`#1084 <https://github.com/git-cola/git-cola/issues/1084>`_)
619 * Diffing of staged files has been implemented for repositories that contain
620   no commits.
621   (`#1149 <https://github.com/git-cola/git-cola/pull/1149>`_)
622   (`#1110 <https://github.com/git-cola/git-cola/issues/1110>`_)
624 * Documentation improvements and typofixes.
625   (`#1163 <https://github.com/git-cola/git-cola/pull/1163>`_)
626   (`#1164 <https://github.com/git-cola/git-cola/pull/1164>`_)
628 Security
629 --------
630 * The `FIPS security mode
631   <https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/FIPS_Mode_-_an_explanation>`_
632   is now supported by Git Cola when running on FIPS-enabled Python
633   (Python 3.9+ or centos8/rhel8's patched Python 3.6).
634   (`#1157 <https://github.com/git-cola/git-cola/issues/1157>`_)
636 Fixes
637 -----
638 * The `argparse` usage was adjusted to remain compatible with older Pythons.
639   (`#1155 <https://github.com/git-cola/git-cola/issues/1155>`_)
641 * The window restoration logic was fixed to properly save/restore settings
642   when different languages are used.
643   (`#1071 <https://github.com/git-cola/git-cola/issues/1071>`_)
644   (`#1161 <https://github.com/git-cola/git-cola/issues/1161>`_)
645   (`#382 <https://github.com/git-cola/git-cola/issues/382>`_)
647 * `git dag` no longer passes floats to `QPen::setWidth()` for better compatibility.
648   (`bz #2014950 <https://bugzilla.redhat.com/show_bug.cgi?id=2014950>`_)
650 Packaging
651 ---------
652 * The Windows installer was slimmed down by removing unused Qt DLLs.
653   (`#1152 <https://github.com/git-cola/git-cola/pull/1152>`_)
656 .. _v3.10.1:
658 v3.10.1
659 =======
661 Fixes
662 -----
663 * Patch release to fix a typo in the Interactive Rebase feature.
665 .. _v3.10:
667 v3.10
668 =====
670 Usability, bells and whistles
671 -----------------------------
672 * The git config reader now supports the `include.path` directive
673   for including config files.
674   (`#1136 <https://github.com/git-cola/git-cola/issues/1136>`_)
675   (`#1137 <https://github.com/git-cola/git-cola/pull/1137>`_)
677 * The dialog for selecting commits now support filtering.
678   (`#1121 <https://github.com/git-cola/git-cola/pull/1121>`_)
680 * The diff editor now wraps long lines by default. The diff options
681   menu can be used to enable/disable line wrapping.
682   (`#1123 <https://github.com/git-cola/git-cola/pull/1123>`_)
684 * Git Cola now honors `core.hooksPath` for configuring custom Git hooks,
685   which was introduced in Git v2.9.
686   (`#1118 <https://github.com/git-cola/git-cola/issues/1118>`_)
688 * A new `Ctrl + Shift + S` hotkey was added for staging/unstaging all
689   files, both modified and untracked.
691 * The `Status` tool now supports `Ctrl + A` for selecting all files and
692   it behaves more predictably when performing operations when multiple
693   categories of files are selected (eg. when both modified and untracked
694   header items are selected).
695   (`#1117 <https://github.com/git-cola/git-cola/issues/1117>`_)
697 Translations
698 ------------
699 * Updated Hungarian translation.
700   (`#1135 <https://github.com/git-cola/git-cola/pull/1135>`_)
702 Fixes
703 -----
704 * The "Interactive Rebase" feature was updated to work with Windows.
706 * `make install-man` was updated to support Sphinx 4.0.
707   (`#1141 <https://github.com/git-cola/git-cola/issues/1141>`_)
709 * `git cola --help-commands` was updated for newer versions of argparse.
710   (`#1133 <https://github.com/git-cola/git-cola/issues/1133>`_)
712 Development
713 -----------
714 * Git Cola can now be started as a Python module.
715   (`#1119 <https://github.com/git-cola/git-cola/pull/1119>`_)
718 .. _v3.9:
720 v3.9
721 ====
723 Usability, bells and whistles
724 -----------------------------
725 * The startup dialog now detects when Recent and Favorite repositories no
726   longer exist on disk, and offers to remove these entries when selected.
727   (`#1089 <https://github.com/git-cola/git-cola/pull/1089>`_)
729 * The startup dialog now includes a simpler and more condensed folder view
730   that can be used for selecting Favorites and Recent repositories.
731   (`#1086 <https://github.com/git-cola/git-cola/pull/1086>`_)
733 * The "Commit" menu now includes an "Undo Last Commit" action.
734   (`#890 <https://github.com/git-cola/git-cola/issues/890>`_)
736 * The "Reset" menu was revamped to expose all of Git's reset modes alongside a
737   new "Restore Worktree" action that updates the worktree using "git read-tree".
738   (`#890 <https://github.com/git-cola/git-cola/issues/890>`_)
740 Translations
741 ------------
742 * Updated Polish translation.
743   (`#1107 <https://github.com/git-cola/git-cola/pull/1107>`_)
745 * Updated Japanese translation.
746   (`#1098 <https://github.com/git-cola/git-cola/pull/1098>`_)
748 * Updated Brazilian translation.
749   (`#1091 <https://github.com/git-cola/git-cola/pull/1091>`_)
751 Packaging
752 ---------
753 * The ``--use-env-python`` option for ``setup.py`` is now Python3 compatible.
754   (`#1102 <https://github.com/git-cola/git-cola/issues/1102>`_)
757 .. _v3.8:
759 v3.8
760 ====
762 Usability, bells and whistles
763 -----------------------------
764 * The submodules widget can now be used to add submodules.
765   Submodules are now updated recursively.
766   (`#534 <https://github.com/git-cola/git-cola/issues/534>`_)
768 * The image diff viewer can now be toggled between text and image modes.
769   This is helpful when, for example, diffing .svg files where it can be useful
770   to see diffs in both an image and text representation.
771   (`#859 <https://github.com/git-cola/git-cola/issues/859>`_)
772   (`#1035 <https://github.com/git-cola/git-cola/pull/1035>`_)
774 * The default `ssh-askpass` username + password dialog included with Git Cola
775   can now toggle between showing and masking the password input field.
776   (`#1069 <https://github.com/git-cola/git-cola/pull/1069>`_)
778 Translations
779 ------------
780 * Updated Polish translation.
781   (`#1076 <https://github.com/git-cola/git-cola/pull/1076>`_)
783 * Updated Hungarian translation.
784   (`#1067 <https://github.com/git-cola/git-cola/pull/1067>`_)
786 Packaging
787 ---------
788 * The `share/appdata` AppStream data was renamed to `share/metainfo`
789   in accordance with `AppStream standard changes from 2016
790   <https://github.com/ximion/appstream/blob/master/NEWS#L1363>`_.
791   (`#1079 <https://github.com/git-cola/git-cola/pull/1079>`_)
793 * The ``cola`` modules are now installed into the Python ``site-packages``
794   directory by default.  This allows distributions to package ``git-cola`` for
795   multiple versions of Python.  See the PACKAGING NOTES section in the README
796   for details about suppressing the installation of the private
797   ``share/git-cola/lib/cola`` modules when building cola.
798   (`#181 <https://github.com/git-cola/git-cola/issues/181>`_)
800 * Git Cola's rebase / sequence editor, formerly known as ``git-xbase`` and
801   installed as ``share/git-cola/bin/git-xbase``, has been renamed to
802   ``git-cola-sequence-editor`` and is now installed into the default
803   ``bin/git-cola-sequence-editor`` executable location to enable external
804   reuse of this general-purpose tool.
806 * A workaround used by the pynsist installer preamble script was obsoleted by
807   `takluyver/pynsist#149 <https://github.com/takluyver/pynsist/pull/149>`_
808   and has now been removed.
809   (`#1073 <https://github.com/git-cola/git-cola/pull/1073>`_)
811 Fixes
812 -----
813 * `git dag` now uses integer widths when initializing its brushes.
814   (`#1080 <https://github.com/git-cola/git-cola/pull/1080>`_)
817 .. _v3.7:
819 v3.7
820 ====
822 Usability, bells and whistles
823 -----------------------------
824 * The ``git-xbase`` rebase editor now includes a file list for filtering
825   the changes displayed in the diff view.
826   (`#1051 <https://github.com/git-cola/git-cola/pull/1051>`_)
828 * The fallback `ssh-askpass` script, which provides the Username/Password
829   login dialog when performing remote operations, previously presented both
830   the username and password input fields with ``***`` asterisks.
831   The dialog now uses asterisks for the password field only.
832   (`#1026 <https://github.com/git-cola/git-cola/pull/1026>`_)
834 * Stashes can now be applied using the `Ctrl + Enter` hotkey, popped with the
835   `Ctrl + Backspace` hotkey, and dropped with the `Ctrl + Shift + Backspace`
836   hotkey when inside the stash dialog.  This enables a keyboard-centric
837   mouse-free workflow when using the stash dialog.
839 * When amending a commit, `git cola` will check whether the commit has been
840   published to a remote branch using ``git branch -r --contains HEAD``.
841   This command can be slow when operating on a repository with many
842   remote branches.  The new `cola.checkpublishedcommits` configuration
843   variable allows you to opt-out of this check, which improves performance
844   when amending a commit.  The settings widget exposes this variable as,
845   "Check Published Commits when Amending".
846   (`#1021 <https://github.com/git-cola/git-cola/issues/1021>`_)
847   (`#1027 <https://github.com/git-cola/git-cola/pull/1027>`_)
849 Translations
850 ------------
851 * Updated Polish translation.
852   (`#1033 <https://github.com/git-cola/git-cola/pull/1033>`_)
854 Fixes
855 -----
856 * ``git-dag.appdata.xml`` was updated to allow network access for author icons.
857   (`#1050 <https://github.com/git-cola/git-cola/pull/1050>`_)
859 * The inotify filesystem monitor now handles
860   `OSError: [Errno 24] Too many open files` errors by disabling inotify.
861   (`#1015 <https://github.com/git-cola/git-cola/issues/1015>`_)
863 * Typos in various documentation files have been fixed.
864   (`#1025 <https://github.com/git-cola/git-cola/pull/1025>`_)
866 * The "Recent Repositories" limit was off by one, and now correctly
867   remembers the configured number of repositories in the menu.
868   (`#1024 <https://github.com/git-cola/git-cola/pull/1024>`_)
870 * The "revert" action in the DAG and other tools now uses
871   ``git revert --no-edit``, which avoids launching an editor
872   when reverting the commit.  Use `Ctrl+m` in the commit message
873   editor after reverting a commit to rewrite its commit message.
874   (`#1020 <https://github.com/git-cola/git-cola/issues/1020>`_)
877 .. _v3.6:
879 v3.6
880 ====
882 Usability, bells and whistles
883 -----------------------------
884 * The remote editor is much faster since it no longer queries
885   remotes, and uses the cached information instead.
886   (`#986 <https://github.com/git-cola/git-cola/issues/986>`_)
888 * Commit message templates can now be loaded automatically by setting
889   ``git config cola.autoloadcommittemplate true``.
890   (`#1013 <https://github.com/git-cola/git-cola/pull/1013>`_)
891   (`#735 <https://github.com/git-cola/git-cola/pull/735>`_)
893 * The UI layout can now be reset back to its initial state by selecting
894   the "Reset Layout" action.  This reverts the layout to the same state
895   as when the app first launched.
896   (`#1008 <https://github.com/git-cola/git-cola/pull/1008>`_)
897   (`#994 <https://github.com/git-cola/git-cola/issues/994>`_)
899 * Files can now be ignored in either the project's `.gitignore`, or in the
900   repository's private local `.git/info/exclude` ignore file.
901   (`#1006 <https://github.com/git-cola/git-cola/pull/1006>`_)
902   (`#1000 <https://github.com/git-cola/git-cola/issues/1000>`_)
904 * New remotes are now selected when they are added in the "Edit Remotes" tool.
905   (`#1002 <https://github.com/git-cola/git-cola/pull/1002>`_)
907 * The "Recent" repositories list is now saved to disk when opening a
908   repository.  Previously, this list was only updated when exiting the app.
909   (`#1001 <https://github.com/git-cola/git-cola/pull/1001>`_)
911 * The bookmarks tool now has a "Delete" option in its right-click menu.
912   (`#999 <https://github.com/git-cola/git-cola/pull/999>`_)
914 * The current repository is no longer listed in the "File/Open Recent" menu.
915   (`#998 <https://github.com/git-cola/git-cola/pull/998>`_)
917 Translations
918 ------------
919 * Updated Hungarian translation.
920   (`#1005 <https://github.com/git-cola/git-cola/pull/1005>`_)
921   (`#1018 <https://github.com/git-cola/git-cola/pull/1018>`_)
923 * Updated Turkish translation.
924   (`#1003 <https://github.com/git-cola/git-cola/pull/1003>`_)
925   (`#1011 <https://github.com/git-cola/git-cola/pull/1011>`_)
927 Fixes
928 -----
929 * Better support for Python 3.8's line buffering modes.
930   (`#1014 <https://github.com/git-cola/git-cola/pull/1014>`_)
932 * The default `ssh-askpass` script now uses a more generic `#!` shebang line.
933   (`#1012 <https://github.com/git-cola/git-cola/pull/1012>`_)
935 * Fetch, push, and pull operations will now refresh the model and display when
936   operations complete.
937   (`#996 <https://github.com/git-cola/git-cola/issues/996>`_)
939 * The branches widget now refreshes its display when changing branches.
940   (`#992 <https://github.com/git-cola/git-cola/pull/992>`_)
942 Packaging
943 ---------
944 * The `share/git-cola/bin/git-xbase` script will now have its `#!` lines
945   updated during installation.
946   (`#991 <https://github.com/git-cola/git-cola/pull/991>`_)
948 Development
949 -----------
950 * The unit tests were made more platform-independent.
951   (`#993 <https://github.com/git-cola/git-cola/pull/993>`_)
954 .. _v3.5:
956 v3.5
957 ====
959 Usability, bells and whistles
960 -----------------------------
961 * Auto-completion for filenames can now be disabled.  This speeds up
962   revision completion when working in large repositories with many files.
963   (`#981 <https://github.com/git-cola/git-cola/pull/981>`_)
965 * The Stash dialog now shows the stash date as a tooltip when hovering
966   over a stashed change.
967   (`#982 <https://github.com/git-cola/git-cola/pull/982>`_)
969 * Qt HiDPI settings are overridden by the `git cola` HiDPI appearance settings.
970   These overrides can now be disabled by selecting the "Disable" mode.
971   This allows users to control Qt's HiDPI settings through environment
972   variables.  Additionally, the "Auto" mode now detects the presence of
973   the Qt HiDPI variables and no longer overrides them when the user has
974   configured their environment explicitly.
975   (`#963 <https://github.com/git-cola/git-cola/issues/963>`_)
977 * Confirmation dialogs can now focus buttons using the Tab key.
978   Previously, the "Y" and "N" keys could be used to confirm or deny
979   using the keyboard, but "Tab" is more familiar.
980   (`#965 <https://github.com/git-cola/git-cola/issues/965>`_)
982 * Error dialogs (for example, when a commit hook fails) will now always
983   show the details.  The details were previously hidden behind a toggle.
984   (`#968 <https://github.com/git-cola/git-cola/issues/968>`_)
986 Translations
987 ------------
988 * Updated Japanese translation.
989   (`#973 <https://github.com/git-cola/git-cola/pull/973>`_)
990   (`#974 <https://github.com/git-cola/git-cola/pull/974>`_)
992 * Updated Simplified Chinese translation.
993   (`#950 <https://github.com/git-cola/git-cola/pull/950>`_)
995 Fixes
996 -----
997 * The filesystem monitor no longer logs that it has been enabled after the
998   inotify watch limit is reached on Linux.
999   (`#984 <https://github.com/git-cola/git-cola/pull/984>`_)
1001 * Better unicode robustness.
1002   (`#990 <https://github.com/git-cola/git-cola/issues/990>`_)
1003   (`#910 <https://github.com/git-cola/git-cola/issues/991>`_)
1005 * The "Branches" widget did not always update itself when deleting branches
1006   (for example, when inotify is disabled or unavailable).
1007   (`#978 <https://github.com/git-cola/git-cola/issues/978>`_)
1009 * Non-ascii unicode byte strings are more robustly handled by the log widget.
1010   (`#977 <https://github.com/git-cola/git-cola/issues/977>`_)
1012 * Non-unicode results from the `gettext` library are more robustly handled.
1013   (`#969 <https://github.com/git-cola/git-cola/issues/969>`_)
1015 * Launching `git cola` from within a directory that has since been deleted
1016   would previously result in a traceback, and is now robustly handled.
1017   (`#961 <https://github.com/git-cola/git-cola/issues/961>`_)
1019 Packaging
1020 ---------
1021 * The vendored `qtpy` library was updated to `v1.9`.
1024 .. _v3.4:
1026 v3.4
1027 ====
1029 Usability, bells and whistles
1030 -----------------------------
1031 * The file browser now includes "Blame" in its context menu.
1032   (`#953 <https://github.com/git-cola/git-cola/issues/953>`_)
1034 * The "Push" action now uses "git push --force-with-lease" when using
1035   the "Force" option with Git v1.8.5 and newer.
1036   (`#946 <https://github.com/git-cola/git-cola/issues/946>`_)
1038 * Updated German translation.
1039   (`#936 <https://github.com/git-cola/git-cola/pull/936>`_)
1041 * The `Status` widget learned to optionally display file counts in its
1042   category headers, and indent the files displayed in each category.
1043   (`#931 <https://github.com/git-cola/git-cola/pull/931>`_)
1045 * The `Branches` widget can now sort branches by their most recent commit.
1046   (`#930 <https://github.com/git-cola/git-cola/pull/930>`_)
1048 * `git cola` now includes configurable GUI themes that can be used to style
1049   the user interface.  Enable the new themes by configuring `cola.theme`
1050   in the preferences window.  See the
1051   `cola.theme documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#cola-theme>`_
1052   for more details.  (`#924 <https://github.com/git-cola/git-cola/pull/924>`_)
1054 * `git cola` now has built-in support for HiDPI displays by enabling
1055   Qt's 5.6's `QT_AUTO_SCREEN_SCALE_FACTOR` feature.
1056   (`#938 <https://github.com/git-cola/git-cola/issues/938>`_)
1058 * `git cola` now uses HiDPI pixmaps when rendering icons, and the builtin
1059   icons have been updated to look sharp when displayed in HiDPI.
1060   (`#932 <https://github.com/git-cola/git-cola/pull/932>`_)
1062 Fixes
1063 -----
1064 * `git cola`'s "Revert Unstaged Edits" previously checked out from "HEAD^",
1065   when in "Amend" mode, and removing staged changes.  This behavior has been
1066   changed to always checkout from the index, which avoids data loss.
1067   (`#947 <https://github.com/git-cola/git-cola/issues/947>`_)
1069 * `git cola` has been updated to work with newer versions of `gnome-terminal`
1070   and no longer shell-quotes its arguments when launching `gnome-terminal`.
1071   The `cola.terminalshellquote` configuration variable can be set to `true` to
1072   get the old behavior, or to handle other terminals that take the command to run
1073   as a single string instead of as arguments to `execv()`.
1074   (`#935 <https://github.com/git-cola/git-cola/pull/935>`_)
1076 * `git dag` now properly handles arbitrary input on Python3.
1077   Previously, an exception would be raised when entering `--grep=xxx` where
1078   `xxx` is a quoted string with a missing end-quote.
1079   (`#941 <https://github.com/git-cola/git-cola/pull/941>`_)
1081 Development
1082 -----------
1083 * The contribution guidelines for contributors has been updated to mention
1084   how to regenerate the `*.mo` message files.
1085   (`#934 <https://github.com/git-cola/git-cola/pull/934>`_)
1088 .. _v3.3:
1090 v3.3
1091 ====
1093 Usability, bells and whistles
1094 -----------------------------
1095 * `git dag` improved how it renders parent commits.
1096   (`#921 <https://github.com/git-cola/git-cola/pull/921>`_)
1098 * The `Branches` widget now checks out branches when double-clicked.
1099   (`#920 <https://github.com/git-cola/git-cola/pull/920>`_)
1101 * The new `Submodules` widget makes it easy to interact with submodules.
1102   Additionally, submodules can now be updated using the `Status` widget.
1103   (`#916 <https://github.com/git-cola/git-cola/pull/916>`_)
1105 * Updated Japanese translation.
1106   (`#914 <https://github.com/git-cola/git-cola/pull/914>`_)
1108 * The "Open Terminal" action now launches a Git Bash shell on Windows.
1109   (`#913 <https://github.com/git-cola/git-cola/pull/913>`_)
1111 * New menu actions for updating all submodules.
1112   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
1114 * The status widget can now update submodules.
1115   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
1117 * The "Apply Patch" `git cola am` dialog now includes a diff viewer
1118   to display the contents of the selected patch.
1120 * The "Alt+D" diffstat hotkey now selects the staged/modified/etc.
1121   header in the Status widget, which shows the totality of everything
1122   that will be committed.
1123   (`#771 <https://github.com/git-cola/git-cola/issues/771>`_)
1125 * Running "Launch Editor" from the diff editor now opens the editor at the
1126   current line.
1127   (`#898 <https://github.com/git-cola/git-cola/pull/898>`_)
1129 * The textwidth and tabwidth configuration values can now be set
1130   per-repository, rather than globally only.
1132 * Text entry widgets switched to using a block cursor in `v3.2`.
1133   This has been reverted to the original line cursor for consistency
1134   with other applications and user expectations.
1135   (`#889 <https://github.com/git-cola/git-cola/issues/889>`_)
1137 * The "edit at line" feature, used by the "Grep" tool, now supports
1138   the Sublime text editor.
1139   (`#894 <https://github.com/git-cola/git-cola/pull/894>`_)
1141 Fixes
1142 -----
1143 * Launching external programs has been improved on Windows.
1144   (`#925 <https://github.com/git-cola/git-cola/pull/925>`_)
1146 * Improve compatibility when using PySide2.
1147   (`#912 <https://github.com/git-cola/git-cola/pull/912>`_)
1149 * The Diff Editor was not honoring the configured tab width on startup.
1150   (`#900 <https://github.com/git-cola/git-cola/issues/900>`_)
1152 * The "Delete Files" feature was creating an unreadable display when
1153   many files were selected.  Word-wrap the list of files so that the
1154   display stays within a sensible size.
1155   (`#895 <https://github.com/git-cola/git-cola/issues/895>`_)
1157 * Spelling and grammar fixes.
1158   (`#915 <https://github.com/git-cola/git-cola/pull/915>`_)
1159   (`#891 <https://github.com/git-cola/git-cola/pull/891>`_)
1161 Development
1162 -----------
1163 * The logo was run through `tidy` to give it a consistent style.
1164   Some technical issues with the logo were improved.
1165   (`#877 <https://github.com/git-cola/git-cola/issues/877>`_)
1167 * The entire codebase is now checked by `flake8`, rather than just
1168   the module and test directories.  This catches things like
1169   the pynsist installer scripts.
1170   (`#884 <https://github.com/git-cola/git-cola/issues/884>`_)
1171   (`#882 <https://github.com/git-cola/git-cola/issues/882>`_)
1172   (`#879 <https://github.com/git-cola/git-cola/pull/879>`_)
1174 Packaging
1175 ---------
1176 * The vendored `qtpy` library was updated to `v1.6`.
1178 * The Windows installer's wrapper scripts were missing an import.
1179   (`#878 <https://github.com/git-cola/git-cola/issues/878>`_)
1182 .. _v3.2:
1184 v3.2
1185 ====
1187 Usability, bells and whistles
1188 -----------------------------
1189 * The `git cola dag` DAG window now supports `git revert`.
1190   (`#843 <https://github.com/git-cola/git-cola/issues/843>`_)
1192 * `git stash pop` is now supported by the stash dialog.
1193   (`#844 <https://github.com/git-cola/git-cola/issues/844>`_)
1195 * The status widget now ensures that each item is visible when selection
1196   changes.  Previously, if you scrolled to the right to see the name of
1197   a long filename, and then selected a short filename above it, the widget
1198   may not have shown the short filename in the viewport.  We now ensure
1199   that the filenames are visible when the selection changes.
1200   (`#828 <https://github.com/git-cola/git-cola/pull/828>`_)
1202 * The `git xbase` rebase editor no longer displays an error when
1203   cancelling an interactive rebase.
1204   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
1206 * The dialog shown when renaming remotes has been simplified.
1207   (`#840 <https://github.com/git-cola/git-cola/pull/840>`_)
1208   (`#838 <https://github.com/git-cola/git-cola/issues/838>`_)
1210 * The help dialog in the `git-xbase` Rebase editor is now scrollable.
1211   (`#855 <https://github.com/git-cola/git-cola/issues/855>`_)
1213 Translations
1214 ------------
1215 * Updated Brazilian translation.
1216   (`#845 <https://github.com/git-cola/git-cola/pull/845>`_)
1218 * Updated Czech translation.
1219   (`#854 <https://github.com/git-cola/git-cola/pull/854>`_)
1220   (`#853 <https://github.com/git-cola/git-cola/pull/853>`_)
1221   (`#835 <https://github.com/git-cola/git-cola/pull/835>`_)
1222   (`#813 <https://github.com/git-cola/git-cola/pull/813>`_)
1224 * Update Spanish translation.
1225   (`#862 <https://github.com/git-cola/git-cola/pull/862>`_)
1226   (`#867 <https://github.com/git-cola/git-cola/pull/867>`_)
1228 Packaging
1229 ---------
1230 * The original `#!/usr/bin/env python` shebang lines can now be
1231   retained by passing `USE_ENV_PYTHON=1` to `make` when installing.
1232   (`#850 <https://github.com/git-cola/git-cola/issues/850>`_)
1234 * The Makefile is now resilient to DESTDIR and prefix containing whitespace.
1235   (`#858 <https://github.com/git-cola/git-cola/pull/858>`_)
1237 * The vendored `qtpy` library was updated to `v1.4.2`.
1239 * `python3-distutils` is needed to build cola on Debian.
1240   (`#837 <https://github.com/git-cola/git-cola/issues/837>`_)
1242 Fixes
1243 -----
1244 * The "C" key no longer closes the message dialogs, for example the
1245   one that is shown when a commit fails its pre-commit hooks.
1246   This allows "Ctrl+C" copy to work, rather than closing the dialog.
1247   (`#734 <https://github.com/git-cola/git-cola/issues/734>`_)
1249 * Dock widgets sizes are now properly saved and restored when the main
1250   window is maximized.
1251   (`#848 <https://github.com/git-cola/git-cola/issues/848>`_)
1253 * The spellcheck feature was broken under Python3.
1254   (`#857 <https://github.com/git-cola/git-cola/issues/857>`_)
1256 * A regression when saving stashes was fixed.
1257   (`#847 <https://github.com/git-cola/git-cola/issues/847>`_)
1259 * Diffing image files was not updating the available context menus,
1260   which prevented the "Stage" action from being present in the menu.
1261   (`#841 <https://github.com/git-cola/git-cola/issues/841>`_)
1263 * `git cola` now detects when `git lfs uninstall` has been run.  This allows
1264   you to re-initialize "Git LFS" in an existing repository where it had been
1265   previously uninstalled.
1266   (`#842 <https://github.com/git-cola/git-cola/issues/842>`_)
1268 * Custom color values that did not contain any hexadecimal digits in the
1269   `a-f` range were being converted into integers by the config reader.  This
1270   then caused the configured colors to be ignored.
1272   These color values are now interpreted correctly.  Additionally, color
1273   values can now use an optional HTML-like `#` prefix.
1275   Example `.gitconfig` snippet::
1277     [cola "color"]
1278         text = "#0a0303"
1280   (`#836 <https://github.com/git-cola/git-cola/pull/836>`_)
1281   (`#849 <https://github.com/git-cola/git-cola/issues/849>`_)
1283 * We now display an error message graphically when `Git` is not installed.
1284   Previously, the message went to stderr only.
1285   (`#830 <https://github.com/git-cola/git-cola/issues/830>`_)
1287 * Changing diff options was causing resulting in an exception.
1288   (`#833 <https://github.com/git-cola/git-cola/issues/833>`_)
1289   (`#834 <https://github.com/git-cola/git-cola/pull/834>`_)
1291 * The DAG window now updates itself when branches and tags are created.
1292   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
1294 * The user's `$PATH` environment variable can now contain utf-8
1295   encoded paths.  Previously, launching external commands could
1296   lead to tracebacks.
1297   (`#807 <https://github.com/git-cola/git-cola/issues/807>`_)
1299 * Git Cola development sandboxes can now be stored on utf-8 encoded
1300   filesystem paths.  Previously, the interactive rebase feature
1301   could be broken when running in that environment.
1302   (`#825 <https://github.com/git-cola/git-cola/issues/825>`_)
1304 * The log window now uses an ISO-8601 timestamp, which
1305   avoids localized output in the log window.
1306   (`#817 <https://github.com/git-cola/git-cola/issues/817>`_)
1308 Development
1309 -----------
1310 * The code base has been thoroughly sanitized using `pylint`, and
1311   travis is now running pylint over the entire project.
1313 * Miscellaneous improvements and code improvements.
1314   (`#874 <https://github.com/git-cola/git-cola/issues/874>`_)
1317 .. _v3.1:
1319 v3.1
1320 ====
1322 Usability, bells and whistles
1323 -----------------------------
1324 * The "Browser" widget learned to rename files using "git mv".
1325   (`#239 <https://github.com/git-cola/git-cola/issues/239>`_)
1327 * The "Diff" widget learned to diff images.  Side-by-side and pixel diff
1328   modes allow you to inspect changes to common images formats.
1329   (`#444 <https://github.com/git-cola/git-cola/issues/444>`_)
1330   (`#803 <https://github.com/git-cola/git-cola/pull/803>`_)
1332 * Git LFS and Git Annex are natively supported by the image diff viewer.
1334 * Git Annex operations are now included. `git annex init` can be performed on
1335   repositories, and `git annex add` can be run on untracked files from the
1336   status widget.  Install `git-annex` to activate this feature.
1338 * Git LFS operations are now included. `git lfs install` can be performed on
1339   repositories, and `git lfs track` can be run on untracked files from the
1340   status widget.  Install `git-lfs` to activate this feature.
1342 * The "Stash" tool learned to stash staged changes only.  Select the
1343   "Stage Index" option and only staged changes will be stashed away.
1344   (`#413 <https://github.com/git-cola/git-cola/issues/413>`_)
1346 * The "Stash" tool learned to use vim-like navigation keyboard shortcuts,
1347   shows error messages when things go wrong, and now saves the "Stash Index"
1348   and "Keep Index" options across sessions.
1350 * The Edit menu's "Copy" and "Select All" actions now forward to either the
1351   diff, status, recent, or favorites widgets, based on which widget has focus.
1353 * The "File" and "Edit" menu can now be activated using `Alt + {F,E}` hotkeys.
1354   (`#759 <https://github.com/git-cola/git-cola/issues/759>`_)
1356 * It was easy to accidentally trigger the first action in the `Status` tool's
1357   context menu when using a quick right-click to bring up the menu.
1358   A short sub-second delay was added to ensure that the top-most action is not
1359   triggered unless enough time has passed.  This prevents accidental
1360   activation of the first item (typically "Stage" or "Unstage") without
1361   burdening common use cases.
1362   (`#755 <https://github.com/git-cola/git-cola/pull/755>`_)
1363   (`#643 <https://github.com/git-cola/git-cola/issues/643>`_)
1365 * The "Ctrl+S" hotkey now works for the header items in the Status tool.
1366   Selected the "Modified" header item and activating the "Stage" hotkey,
1367   for example, will stage all modified files.  This works for the "Staged",
1368   "Modified", and "Untracked" headers.  This is not enabled for the
1369   "Unmerged" header by design.
1370   (`#772 <https://github.com/git-cola/git-cola/issues/772>`_)
1372 * The list of "Recent" repositories previously capped the number of
1373   repositories shown to 8 repositories.  This can be set to a higher
1374   value by setting the `cola.maxrecent` configuration variable.
1375   (`#752 <https://github.com/git-cola/git-cola/issues/752>`_)
1377 * The "Create Branch" dialog now prevents invalid branch names.
1378   (`#765 <https://github.com/git-cola/git-cola/issues/765>`_)
1380 * Updated Turkish translation.
1381   (`#756 <https://github.com/git-cola/git-cola/pull/756>`_)
1383 * Updated Ukrainian translation.
1384   (`#753 <https://github.com/git-cola/git-cola/pull/753>`_)
1386 * Updated German translation.
1387   (`#802 <https://github.com/git-cola/git-cola/pull/802>`_)
1389 * Updated Czech translation
1390   (`#792 <https://github.com/git-cola/git-cola/pull/792>`_)
1391   (`#806 <https://github.com/git-cola/git-cola/pull/806>`_)
1393 * The window title can be configured to not display the absolute path of the
1394   repository.
1395   (`#775 <https://github.com/git-cola/git-cola/issues/775>`_)
1397 * The "Edit Remotes" editor learned to edit remote URLS.
1399 * Bare repositories can now be created by selecting the
1400   "New Bare Repository..." action from the `File` menu.
1402 * The "Branches" widget learned to configure upstream branches.
1404 * A new `git cola clone` sub-command was added for cloning repositories.
1406 Packaging
1407 ---------
1408 * The vendored `qtpy` library was updated to `v1.3.1`.
1410 * The macOS installation was made simpler for better compatibility with
1411   Homebrew.
1412   (`#636 <https://github.com/git-cola/git-cola/issues/636>`_)
1414 * The Windows installer is now much simpler.  Git Cola now bundles
1415   Python and PyQt5, so users need only install the "Git for Windows"
1416   and "Git Cola" installers to get things working.
1418 Fixes
1419 -----
1420 * Uninitialized difftool errors will now be displayed graphically.
1421   They were previously going to the shell.
1422   (`#457 <https://github.com/git-cola/git-cola/issues/457>`_)
1424 * Translations marked "fuzzy" will no longer be used when translating strings.
1425   (`#782 <https://github.com/git-cola/git-cola/issues/782>`_)
1427 * Deleted unmerged files will now correctly use a deleted icon.
1428   (`#479 <https://github.com/git-cola/git-cola/issues/479>`_)
1430 * The `Ctrl+C` "Copy" hotkey on the diff viewer has been fixed.
1431   (`#767 <https://github.com/git-cola/git-cola/issues/767>`_)
1433 * The "Create Tag" dialog did not correctly handle the case when a signed
1434   tag is requested, but no message is provided, and the user chooses to
1435   create an unannotated tag instead.  This convenience fallback will now
1436   properly create an unsigned, unannotated tag.
1437   (`#696 <https://github.com/git-cola/git-cola/issues/696>`_)
1439 * `.gitconfig` and `.git/config` values editable by the Preferences dialog
1440   (aka `git cola config`) will now get unset when set to an empty value.
1441   For example, setting a different `user.email` in the current repository,
1442   followed by a subsequent emptying of that field, would previously result in
1443   an empty string getting stored in the config.  This has been fixed so that
1444   the value will now get unset in the config instead.
1445   (`#406 <https://github.com/git-cola/git-cola/issues/406>`_)
1447 * Spelling and typofixes.
1448   (`#748 <https://github.com/git-cola/git-cola/pull/748>`_)
1450 * `core.commentChar` is now honored when set in the local repository
1451   `.git/config`.
1452   (`#766 <https://github.com/git-cola/git-cola/issues/766>`_)
1454 * The log window was using a format string that did not display
1455   correctly in all locales.  A locale-aware format is now used.
1456   (`#800 <https://github.com/git-cola/git-cola/pull/800>`_)
1458 * The dialog displayed when prompting for a reference could sometimes
1459   lose focus.
1460   (`#804 <https://github.com/git-cola/git-cola/pull/804>`_)
1463 .. _v3.0:
1465 v3.0
1466 ====
1468 Usability, bells and whistles
1469 -----------------------------
1470 * Updated Simplified Chinese translation.
1471   (`#726 <https://github.com/git-cola/git-cola/pull/726>`_)
1473 * Updated Ukrainian translation.
1474   (`#723 <https://github.com/git-cola/git-cola/pull/723>`_)
1476 * New Czech translation.
1477   (`#736 <https://github.com/git-cola/git-cola/pull/736>`_)
1478   (`#737 <https://github.com/git-cola/git-cola/pull/737>`_)
1479   (`#740 <https://github.com/git-cola/git-cola/pull/740>`_)
1480   (`#743 <https://github.com/git-cola/git-cola/pull/743>`_)
1482 * The "name" field in the "Create Tag" dialog now includes autocompletion,
1483   which makes it easy to see which tags currently exist.
1485 * `git cola` now has configurable toolbars.  Use the `View -> Add toolbar`
1486   menu item to add a toolbar.
1488 * Setting `cola.expandtab` to `true` will now expand tabs into spaces
1489   in the commit message editor.  The number of spaces to insert is determined
1490   by consulting `cola.tabwidth`, which defaults to `8`.
1492 * The "Copy SHA-1" hotkey is now `Alt + Ctrl + C`, to avoid clobbering the
1493   ability to copy text from the DAG window.
1494   (`#705 <https://github.com/git-cola/git-cola/pull/705>`_)
1496 * The "Prepare Commit Message" action can now be invoked via the
1497   `Ctrl+Shift+Return` shortcut.
1498   (`#707 <https://github.com/git-cola/git-cola/pull/707>`_)
1500 * The `Branches` pane now has a filter field that highlights branches whose
1501   names match the string entered into its text field.
1502   (`#713 <https://github.com/git-cola/git-cola/pull/713>`_)
1504 * Actions that are triggered in response to button presses were being
1505   triggered when the button was pressed, rather than when it was released,
1506   which was a usability flaw.  All buttons now respond when clicked
1507   rather than when pressed.
1508   (`#715 <https://github.com/git-cola/git-cola/pull/715>`_)
1510 * The DAG window will now only refresh when object IDs change.
1511   Previously, the DAG would redraw itself in response to inotify events,
1512   such as filesystem operations, which was disruptive when inspecting a large
1513   diff in its diff viewer.  The DAG will now only redraw when the object IDs
1514   corresponding to its query input changes.  Furthermore, when redrawing, the
1515   scrollbar positions are retained to minimize disruption to the viewport
1516   contents.
1517   (`#620 <https://github.com/git-cola/git-cola/issues/620>`_)
1518   (`#724 <https://github.com/git-cola/git-cola/issues/724>`_)
1520 * The "About" dialog now includes the SHA-1 where Git Cola was built.
1521   (`#530 <https://github.com/git-cola/git-cola/issues/530>`_)
1523 * The "Status" widget now has "Copy Leading Path to Clipboard" and
1524   "Copy Basename to Clipboard" actions.
1525   (`#435 <https://github.com/git-cola/git-cola/issues/435>`_)
1526   (`#436 <https://github.com/git-cola/git-cola/issues/436>`_)
1528 * The "Status" widget now supports custom "Copy ... to Clipboard" actions.
1529   (`#437 <https://github.com/git-cola/git-cola/issues/437>`_)
1531 * The main menu now has an "Edit" menu.
1532   (`#725 <https://github.com/git-cola/git-cola/issues/725>`_)
1534 * `git dag` learned to checkout commits into a detached HEAD state.
1535   (`#698 <https://github.com/git-cola/git-cola/issues/698>`_)
1537 * The `status` widget's context menus now omit actions selection-dependent
1538   actions when no file is selected.
1539   (`#731 <https://github.com/git-cola/git-cola/pull/731>`_)
1541 * The startup dialog now focuses the repository list so that repositories
1542   can be selected with the keyboard without mouse intervention.
1543   (`#741 <https://github.com/git-cola/git-cola/issues/741>`_)
1545 Fixes
1546 -----
1547 * `git dag` now prevents nodes from overlapping in more situations.
1548   (`#689 <https://github.com/git-cola/git-cola/pull/689>`_)
1550 * Adding untracked Git submodule repo directories previously ran
1551   `git add submodule/` but we now call `git add submodule` without
1552   the trailing slash (`/`) to avoid staging files that belong to the
1553   submodule (which is possibly a `git` bug).  By working around the
1554   buggy behavior we allow users to recover by issuing the appropriate
1555   `git submodule add` command to properly register the submodule.
1556   (`#681 <https://github.com/git-cola/git-cola/pull/681>`_)
1558 * We now avoid `git for-each-ref --sort=version:refname` on versions
1559   of `git` older than `v2.7.0`.  Previously we only avoided it for
1560   versions older than `v2.0.0`, which was a mistake.
1561   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
1563 * The error message displayed when `git` is not installed has been fixed.
1564   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
1566 * Adding new remotes was silently broken.
1567   (`#684 <https://github.com/git-cola/git-cola/issues/684>`_)
1568   (`#685 <https://github.com/git-cola/git-cola/pull/685>`_)
1570 * The repo selection dialog had errors during startup when the
1571   `cola.refreshonfocus` feature was enabled, as reported on Ubuntu 16.04.
1572   (`#690 <https://github.com/git-cola/git-cola/issues/690>`_)
1574 * Restored support for PyQt 4.6 (Centos 6.8)
1575   (`#692 <https://github.com/git-cola/git-cola/issues/692>`_)
1577 * Switching repositories now resets the "Amend Mode" and other settings
1578   when switching.
1579   (`#710 <https://github.com/git-cola/git-cola/issues/710>`_)
1581 * `git rebase` error messages now displayed when rebasing fails or stops
1582   via the standalone `git cola rebase` front-end.
1583   (`#721 <https://github.com/git-cola/git-cola/issues/721>`_)
1585 * `git cola` learned to stage broken symlinks.
1586   (`#727 <https://github.com/git-cola/git-cola/issues/727>`_)
1588 * The "View History" feature in the `Browser` tool was fixed, and now
1589   disambiguates between refs and paths.
1590   (`#732 <https://github.com/git-cola/git-cola/issues/732>`_)
1592 * The diff editor now has better support for files with CRLF `\r\n`
1593   line endings.
1594   (`#730 <https://github.com/git-cola/git-cola/issues/730>`_)
1596 * `cola.inotify` in a repo-local config is now honored
1597   when `git cola` is launched from a desktop entry (`git cola --prompt`).
1598   (`#695 <https://github.com/git-cola/git-cola/issues/695>`_)
1601 .. _v2.11:
1603 v2.11
1604 =====
1606 Usability, bells and whistles
1607 -----------------------------
1608 * New Ukrainian translation.
1609   (`#670 <https://github.com/git-cola/git-cola/pull/670>`_)
1610   (`#672 <https://github.com/git-cola/git-cola/pull/672>`_)
1612 * New and improved French translations.
1614 * The new `Branches` widget makes it easier to checkout, merge, push,
1615   and pull branches from a single interface.
1617 * `git cola` now includes a dark icon theme.  The dark icon theme can be
1618   activated either by setting the `GIT_COLA_ICON_THEME` environment variable
1619   to `dark`, by configuring `cola.icontheme` to `dark`, or by specifying
1620   `--icon-theme=dark` on the command line.
1621   (`#638 <https://github.com/git-cola/git-cola/pull/638>`_)
1623 * Autocompletion was added to the `Fetch`, `Push`, and `Pull` dialogs.
1625 * The commit message editor now remembers the "Spellcheck" setting
1626   after exiting.
1627   (`#645 <https://github.com/git-cola/git-cola/pull/645>`_)
1629 * `git dag` now uses an improved algorithm for laying out the graph,
1630   which avoids collisions under certain graph configurations, and
1631   avoids overlapping tag with commits.
1632   (`#648 <https://github.com/git-cola/git-cola/pull/648>`_)
1633   (`#651 <https://github.com/git-cola/git-cola/pull/651>`_)
1634   (`#654 <https://github.com/git-cola/git-cola/pull/654>`_)
1635   (`#656 <https://github.com/git-cola/git-cola/pull/656>`_)
1636   (`#659 <https://github.com/git-cola/git-cola/pull/659>`_)
1638 * `git dag` now remembers its column sizes across sessions.
1639   (`#674 <https://github.com/git-cola/git-cola/issues/674>`_)
1641 * `Grep` now shows a preview of the selected file's content in a split window
1642   below the grep results.
1644 * `Grep` now includes line numbers in the preview pane's output.
1646 * `Edit Remotes` now remembers its window settings after exiting.
1648 * `Diff` now has an option to display line numbers in the editor.
1649   (`#136 <https://github.com/git-cola/git-cola/issues/136>`_)
1651 * `Amend Last Commit` can now be triggered via the `Commit` menu in addition
1652   to the commit message editor's options.
1653   (`#640 <https://github.com/git-cola/git-cola/issues/640>`_)
1655 * The `File Browser` tool was made much faster and can now operate on
1656   much larger repositories.
1657   (`#499 <https://github.com/git-cola/git-cola/issues/499>`_)
1659 * A new "turbo" mode was added that allows you to opt-out of operations
1660   that can slow `git cola` on large repositories.  The turbo mode is
1661   enabled by configuring `git config cola.turbo true`.  Turbo mode
1662   disables the background loading of Git commit messages and other
1663   details in the `File Browser` widget.
1665 * A new GitIgnore dialog allows adding custom gitignore patterns.
1666   (`#653 <https://github.com/git-cola/git-cola/pull/653>`_)
1668 * The spellchecker in `git cola` can now use an additional dictionary
1669   by configuring `cola.dictionary` to the path to a file containing
1670   a newline-separated list of words.
1671   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
1673 * The stash, export patches, diff, and gitignore dialogs now remember
1674   their window sizes.
1676 * A new `git cola recent` sub-command was added for finding recently
1677   edited files.
1679 * The `Fetch` dialog now allows pruning remote branches.
1680   (`#639 <https://github.com/git-cola/git-cola/issues/639>`_)
1681   (`#680 <https://github.com/git-cola/git-cola/pull/680>`_)
1683 Fixes
1684 -----
1685 * `git cola`'s spellchecker now supports the new `dict-common` filesystem
1686   layout, and prefers the `/usr/share/dict/cracklib-small` file over the
1687   `/usr/share/dict/words` provided on older distributions.
1688   This makes the spellchecker compatible with Arch, which does not provide
1689   a `words` symlink like Debian.
1690   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
1692 * Properly handle the case where an existing file is untracked using
1693   the File Browser.
1695 * Fix a quirk where the "Create Branch" dialog sometimes required clicking
1696   twice on the radio buttons.
1697   (`#662 <https://github.com/git-cola/git-cola/pull/662>`_)
1699 * Fixed a focus issue to ensure that "Push", "Fetch", and "Pull" can
1700   be executed with the press of a single enter key after being shown.
1701   (`#661 <https://github.com/git-cola/git-cola/issues/661>`_)
1703 * Committing is now allowed in when resolving a merge results in no
1704   changes.  This state was previously prevented by the commit message editor,
1705   which prevented users from resolving merges that result in no changes.
1706   (`#679 <https://github.com/git-cola/git-cola/pull/679>`_)
1708 * The filesystem monitor would sometimes emit backtraces when directories
1709   are modified.  This has been fixed.
1710   (`bz #1438522 <https://bugzilla.redhat.com/show_bug.cgi?id=1438522>`_)
1712 * Absolute paths are now returned when querying for `.git`-relative paths
1713   from within a submodule, which uses `.git`-files.
1714   This fixes launching `git cola` from within a subdirectory of a submodule.
1715   (`#675 <https://github.com/git-cola/git-cola/pull/675>`_)
1718 .. _v2.10:
1720 v2.10
1721 =====
1723 Usability, bells and whistles
1724 -----------------------------
1725 * `git cola` can now invoke the `.git/hooks/cola-prepare-commit-msg`
1726   hook to update the commit message.  This hook takes the same parameters
1727   as Git's `prepare-commit-message` hook.  The default path to this hook
1728   can be overridden by setting the `cola.prepareCommitMessageHook`
1729   configuration variable.
1730   (`Documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#prepare-commit-message>`_)
1732 * `git cola diff` (and the corresponding `Diff` menu actions) can now
1733   launch difftool with the standard `Ctrl+D` hotkey.  The `Ctrl+E` hotkey was
1734   also added for launching an editor.
1736 * Traditional Chinese (Taiwan) translation updates.
1738 Fixes
1739 -----
1740 * `git cola` now works when installed in non-ascii, utf8-encoded paths.
1741   (`#629 <https://github.com/git-cola/git-cola/issues/629>`_)
1743 * Styling issues that caused black backgrounds in various widgets when using
1744   PyQ5 on Mac OS X have been fixed.
1745   (`#624 <https://github.com/git-cola/git-cola/issues/624>`_)
1747 * The "Open Recent" menu action was broken and has been fixed.
1748   (`#634 <https://github.com/git-cola/git-cola/issues/634>`_)
1750 * Exiting `git cola` with a maximized main window would hang when reopened
1751   on Linux.
1752   (`#641 <https://github.com/git-cola/git-cola/issues/641>`_)
1754 Packaging
1755 ---------
1756 * `appdata.xml` files are now provided at
1757   `share/appdata/git-cola.xml` and `share/appdata/git-dag.xml`
1758   for use by the Linux software gallery.
1759   (`#627 <https://github.com/git-cola/git-cola/pull/627>`_)
1760   (`Appdata <https://people.freedesktop.org/~hughsient/appdata/>`_)
1763 .. _v2.9.1:
1765 v2.9.1
1766 ======
1768 Fixes
1769 -----
1770 * The "Open Recent" menu was updated to new bookmarks format.
1771   (`#628 <https://github.com/git-cola/git-cola/issues/628>`_)
1774 .. _v2.9:
1776 v2.9
1777 ====
1779 Usability, bells and whistles
1780 -----------------------------
1781 * New Polish translation thanks to Łukasz Wojniłowicz
1782   (`#598 <https://github.com/git-cola/git-cola/pull/598>`_)
1784 * The `Bypass Commit Hooks` feature now disables itself automatically
1785   when a new commit is created.  The new behavior turns the option into a
1786   single-use flag, which helps prevent users from accidentally leaving it
1787   active longer than intended.
1788   (`#595 <https://github.com/git-cola/git-cola/pull/595>`_)
1790 * `git dag` learned to launch an external diff viewer on selected commits.
1791   The standard `Ctrl+D` shortcut can be used to view diffs.
1792   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1794 * `git dag` learned to launch directory diffs via `git difftool --dir-diff`.
1795   The `Ctrl+Shift+D` shortcut launches difftool in directory-diff mode.
1796   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1798 * Items in the "Favorites" list can now be renamed, which makes it
1799   easier to differentiate between several checkouts of the same repository.
1800   (`#599 <https://github.com/git-cola/git-cola/issues/599>`_)
1801   (`#601 <https://github.com/git-cola/git-cola/pull/601>`_)
1803 * The startup screen now includes a logo and `git cola` version information.
1804   (`#526 <https://github.com/git-cola/git-cola/issues/526>`_)
1806 * The `About` page was revamped to contain multiple tabs.  A new tab was added
1807   that provides details about `git cola`''s dependencies.  New tabs were also
1808   added for giving credit to `git cola`'s authors and translators.
1810 * The `About` page can now be accessed via `git cola about`.
1812 * The "Fast-forward only" and "No fast-forward" options supported by
1813   `git pull` are now accessible via `git cola pull`.
1815 * Doing a forced push no longer requires selecting the remote branch.
1816   (`#618 <https://github.com/git-cola/git-cola/pull/618>`_)
1818 * `git cola push` now has an option to suppress the prompt that is shown
1819   when pushing would create new remote branches.
1820   (`#605 <https://github.com/git-cola/git-cola/issues/605>`_)
1822 * `git dag` now shows commit messages in a more readable color.
1823   (`#574 <https://github.com/git-cola/git-cola/issues/574>`_)
1825 * `git cola browse` and the `status` widget learned to launch the OS-specified
1826   default action for a file.  When used on directories via `git cola browse`,
1827   or when "Open Parent Directory" is used on files, the OS-specified
1828   file browser will typically be used.
1830 * `git cola browse` and the `status` widget learned to launch terminals.
1832 Fixes
1833 -----
1834 * `git cola browse` was not updating when expanding items.
1835   (`#588 <https://github.com/git-cola/git-cola/issues/588>`_)
1837 * Typofixes in comments, naming, and strings have been applied.
1838   (`#593 <https://github.com/git-cola/git-cola/pull/593>`_)
1840 * The inotify and win32 filesystem monitoring no longer refreshes
1841   when updates are made to ignored files.
1842   (`#517 <https://github.com/git-cola/git-cola/issues/517>`_)
1843   (`#516 <https://github.com/git-cola/git-cola/issues/516>`_)
1845 * The `Refresh` button on the actions panel no longer raises an
1846   exception when using PyQt5.
1847   (`#604 <https://github.com/git-cola/git-cola/issues/604>`_)
1849 * Fixed a typo in the inotify backend that is triggered when files are removed.
1850   (`#607 <https://github.com/git-cola/git-cola/issues/607>`_)
1852 * Fixed a typo when recovering from a failed attempt to open a repository.
1853   (`#606 <https://github.com/git-cola/git-cola/issues/606>`_)
1855 * `git dag` now properly updates itself when launched from the menubar.
1856   (`#613 <https://github.com/git-cola/git-cola/pull/613>`_)
1858 * If git-cola is invoked on Windows using `start pythonw git-cola`,
1859   a console window will briefly flash on the screen each time
1860   `git cola` invokes `git`.  The console window is now suppressed.
1862 * We now avoid some problematic Popen flags on Windows which were
1863   breaking the `git rebase` feature on Windows.
1865 * The `Save` button in `git dag`'s "Grab File..." feature now properly
1866   prompts for a filename when saving files.
1867   (`#617 <https://github.com/git-cola/git-cola/pull/617>`_)
1869 Development
1870 -----------
1871 * The `qtpy` symlink in the source tree has been removed to allow for easier
1872   development on Windows.
1873   (`#626 <https://github.com/git-cola/git-cola/issues/626>`_)
1876 .. _v2.8:
1878 v2.8
1879 ====
1881 Usability, bells and whistles
1882 -----------------------------
1883 * `git cola push` learned to configure upstream branches.
1884   (`#563 <https://github.com/git-cola/git-cola/issues/563>`_)
1886 Fixes
1887 -----
1888 * The diffstat view is now properly updated when notifications are
1889   received via inotify filesystem monitoring.
1890   (`#577 <https://github.com/git-cola/git-cola/issues/577>`_)
1892 * Python3 with PyQt5 had a bug that prevented `git cola` from starting.
1893   (`#589 <https://github.com/git-cola/git-cola/pull/589>`_)
1896 .. _v2.7:
1898 v2.7
1899 ====
1901 Fixes
1902 -----
1904 * When repositories stored in non-ASCII, UTF-8-encoded filesystem paths
1905   were operated upon with `LC_ALL=C` set in the environment, unicode errors
1906   would occur when using `python2`.  `git cola` was made more robust and will
1907   now operate correctly within this environment.
1908   (`#581 <https://github.com/git-cola/git-cola/issues/581>`_)
1910 * Support for the `GIT_WORK_TREE` environment variable was fixed.
1911   (`#582 <https://github.com/git-cola/git-cola/pull/582>`_)
1913 Development
1914 -----------
1916 * The `unittest.mock` module is now used instead of the original `mock` module
1917   when running the `git cola` test suite using Python3.
1918   (`#569 <https://github.com/git-cola/git-cola/issues/569>`_)
1920 Packaging
1921 ---------
1923 * `git cola` is now compatible with *PyQt5*, *PyQt4*, and *Pyside*.
1924   `git cola` previously supported *PyQt4* only, but will now use whichever
1925   library is available.  Users are not required to upgrade at this time,
1926   but *PyQt5* support can be enabled anytime by making its python
1927   modules available.
1928   (`#232 <https://github.com/git-cola/git-cola/issues/232>`_)
1930   *NOTE*: We do not yet recommend using *PyQt5* because there are known
1931   exit-on-segfault bugs in *Qt5* that have not yet been addressed.
1932   `git cola` is sensitive to this bug and is known to crash on exit
1933   when using `git dag` or the interactive rebase feature on *PyQt5*.
1935   https://bugreports.qt.io/browse/QTBUG-52988
1937   *PyQt4* is stable and there are no known issues when using it so
1938   we recommend using it until the Qt5 bugs have been resolved.
1940 * `git cola` now depends on *QtPy* and includes a bundled copy of the
1941   `qtpy` library.  If you are packaging `git cola` and would prefer to use
1942   `qtpy` from your distribution instead of the built-in version then use
1943   `make NO_VENDOR_LIBS=1` when building `git cola`.  This will prevent
1944   vendored libraries from being installed.
1947 .. _v2.6:
1949 v2.6
1950 ====
1952 Usability, bells and whistles
1953 -----------------------------
1955 * A new "Reset" sub-menu provides access to running "git reset --mixed"
1956   when resetting branch heads and "git reset  --merge" when resetting
1957   worktrees.
1958   (`#542 <https://github.com/git-cola/git-cola/issues/542>`_)
1960 * `git cola` now supports linked worktrees, i.e. worktrees created by
1961   `git worktree`.
1962   (`#554 <https://github.com/git-cola/git-cola/issues/554>`_)
1964 Fixes
1965 -----
1967 * Diff highlighting is now robust to the user having
1968   diff.supressBlankEmpty=true in their git config.
1969   (`#541 <https://github.com/git-cola/git-cola/issues/541>`_)
1971 * The filesystem monitor now properly handles repositories that use
1972   `.git`-files, e.g. when using submodules.
1973   (`#545 <https://github.com/git-cola/git-cola/issues/545>`_)
1974   (`#546 <https://github.com/git-cola/git-cola/pulls/546>`_)
1976 * Per-repository git configuration is now properly detected when launching
1977   `git cola` from an application launcher.
1978   (`#548 <https://github.com/git-cola/git-cola/issues/548>`_)
1980 * `git cola` now cleans up after itself immediately to avoid leaving behind
1981   empty `/tmp/git-cola-XXXXXX` directories when the user uses `Ctrl+C`
1982   to quit the app.
1983   (`#566 <https://github.com/git-cola/git-cola/issues/566>`_)
1985 Packaging
1986 ---------
1988 * It is now possible to install `git cola` to and from utf8-encoded filesystem
1989   paths.  Previously, Python's stdlib would throw an encoding error during
1990   installation.  We workaround the stdlib by forcing python2 to use utf-8,
1991   thus fixing assumptions in the stdlib library code.
1992   (`#551 <https://github.com/git-cola/git-cola/issues/551>`_)
1995 .. _v2.5:
1997 v2.5
1998 ====
2000 Usability, bells and whistles
2001 -----------------------------
2003 * The icon for untracked files was adjusted to better differentiate
2004   between files and the "Untracked" header.
2005   (`#509 <https://github.com/git-cola/git-cola/issues/509>`_)
2007 * Ctrl+O was added as a hotkey for opening repositories.
2008   (`#507 <https://github.com/git-cola/git-cola/pull/507>`_)
2010 * `git dag` now uses consistent edge colors across updates.
2011   (`#512 <https://github.com/git-cola/git-cola/issues/512>`_)
2013 * `git cola`'s Bookmarks widget can now be used to set a "Default Repository".
2014   Under the hood, we set the `cola.defaultrepo` configuration variable.
2015   The default repository is used whenever `git cola` is launched outside of
2016   a Git repository.  When unset, or when set to a bogus value, `git cola`
2017   will prompt for a repository, as it previously did.
2018   (`#513 <https://github.com/git-cola/git-cola/issues/513>`_)
2020 * `git cola`'s Russian and Spanish translations were improved
2021   thanks to Vaiz and Zeioth.
2022   (`#514 <https://github.com/git-cola/git-cola/pull/514>`_)
2023   (`#515 <https://github.com/git-cola/git-cola/pull/515>`_)
2024   (`#523 <https://github.com/git-cola/git-cola/pull/523>`_)
2026 * `git cola` was translated to Turkish thanks to Barış ÇELİK.
2027   (`#520 <https://github.com/git-cola/git-cola/pull/520>`_)
2029 * The status view now supports launching `git gui blame`.  It can be
2030   configured to use a different command by setting `cola.blameviewer`.
2031   (`#521 <https://github.com/git-cola/git-cola/pull/521>`_)
2033 * `git dag` now allows selecting non-contiguous ranges in the log widget.
2034   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
2036 * Any font can now be chosen for the diff editor, not just monospace fonts.
2037   (`#525 <https://github.com/git-cola/git-cola/issues/525>`_)
2039 Fixes
2040 -----
2042 * `xfce4-terminal` and `gnome-terminal` are now supported when launching
2043   `git mergetool` to resolve merges.  These terminals require that the command
2044   to execute is shell-quoted and passed as a single string argument to `-e`
2045   rather than as additional command line arguments.
2046   (`#524 <https://github.com/git-cola/git-cola/issues/524>`_)
2048 * Fixed a unicode problem when formatting the error message that is shown
2049   when `gitk` is not installed.  We now handle unicode data in tracebacks
2050   generated by python itself.
2051   (`#528 <https://github.com/git-cola/git-cola/issues/528>`_)
2053 * The `New repository` feature was fixed.
2054   (`#533 <https://github.com/git-cola/git-cola/pull/533>`_)
2056 * We now use omit the extended description when creating "fixup!" commits,
2057   for consistency with the Git CLI.  We now include only the one-line summary
2058   in the final commit message.
2059   (`#522 <https://github.com/git-cola/git-cola/issues/522>`_)
2062 .. _v2.4:
2064 v2.4
2065 ====
2067 Usability, bells and whistles
2068 -----------------------------
2070 * The user interface is now HiDPI-capable.  git-cola now uses SVG
2071   icons, and its interface can be scaled by setting the `GIT_COLA_SCALE`
2072   environment variable.
2074 * `git dag` now supports the standard editor, difftool, and history hotkeys.
2075   It is now possible to invoke these actions from file widget's context
2076   menu and through the standard hotkeys.
2077   (`#473 <https://github.com/git-cola/git-cola/pull/473>`_)
2079 * The `Status` tool also learned about the history hotkey.
2080   Additionally, the `Alt + {J,K}` aliases are also supported in the `Status`
2081   tool for consistency with the other tools where the non-Alt hotkeys are not
2082   available.
2083   (`#488 <https://github.com/git-cola/git-cola/pull/488>`_)
2085 * The `File Browser` tool now has better default column sizes,
2086   and remembers its window size and placement.
2088 * The `File Browser` now supports the refresh hotkey, and has better
2089   behavior when refreshing.  The selection is now retained, and new and
2090   removed files are found when refreshing.
2092 * A new `git-cola-completion.bash` completion script is provided in the
2093   `contrib/` directory.  It must be used alongside Git's completion script.
2094   Source it from your `~/.bashrc` (or `~/.zshrc`, etc) after sourcing
2095   the `git-completion.bash` script and you will have command-line completion
2096   support for the `git cola` and `git dag` sub-commands.
2098 * The "checkout" dialog now offers completion for remote branches and other
2099   git refs.  This makes it easier to checkout remote branches in a detached
2100   head state.  Additionally, the checkout dialog also offers completion for
2101   remote branches that have not yet been checked out, which makes it easier to
2102   create a local tracking branch by just completing for that potential name.
2103   (`#390 <https://github.com/git-cola/git-cola/issues/390>`_)
2105 * The "create branch" and "create tag" dialogs now save and restore their
2106   window settings.
2108 * The "status" widget can now be configured to use a bold font with a darker
2109   background for the header items.
2110   (`#506 <https://github.com/git-cola/git-cola/pull/506>`_)
2112 * The "status" widget now remembers its horizontol scrollbar position across
2113   updates.  This is helpful when working on projects with long paths.
2114   (`#494 <https://github.com/git-cola/git-cola/issues/494>`_)
2116 Fixes
2117 -----
2119 * When using *Git for Windows*, a `git` window would appear
2120   when running *Windows 8*.  We now pass additional flags to
2121   `subprocess.Popen` to prevent a `git` window from appearing.
2122   (`#477 <https://github.com/git-cola/git-cola/issues/477>`_)
2123   (`#486 <https://github.com/git-cola/git-cola/pull/486>`_)
2125 * Launching difftool with `.PY` in `$PATHEXT` on Windows was fixed.
2126   (`#492 <https://github.com/git-cola/git-cola/issues/492>`_)
2128 * Creating a local branch tracking a remote branch that contains
2129   slashes in its name is now properly handled.
2130   (`#496 <https://github.com/git-cola/git-cola/issues/496>`_)
2132 * The "Browse Other Branch" feature was broken by Python3, and is now fixed.
2133   (`#501 <https://github.com/git-cola/git-cola/issues/501>`_)
2135 * We now avoid `long` for better Python3 compatibility.
2136   (`#502 <https://github.com/git-cola/git-cola/issues/502>`_)
2138 * We now use Git's default merge message when merging branches.
2139   (`#508 <https://github.com/git-cola/git-cola/issues/508>`_)
2141 * Miscellaneous fixes
2142   (`#485 <https://github.com/git-cola/git-cola/pull/485>`_)
2144 Packaging
2145 ---------
2147 * git-cola's documentation no longer uses an intersphinx link mapping
2148   to docs.python.org.  This fixes warnings when building rpms using koji,
2149   where network access is prevented.
2151   https://bugzilla.redhat.com/show_bug.cgi?id=1231812
2154 .. _v2.3:
2156 v2.3
2157 ====
2159 Usability, bells and whistles
2160 -----------------------------
2162 * The Interactive Rebase feature now works on Windows!
2163   (`#463 <https://github.com/git-cola/git-cola/issues/463>`_)
2165 * The `diff` editor now understands vim-style `hjkl` navigation hotkeys.
2166   (`#476 <https://github.com/git-cola/git-cola/issues/476>`_)
2168 * `Alt + {J,K}` navigation hotkeys were added to allow changing to the
2169   next/previous file from the diff and commit editors.
2171 * The `Rename branch` menu action is now disabled in empty repositories.
2172   (`#475 <https://github.com/git-cola/git-cola/pull/475>`_)
2173   (`#459 <https://github.com/git-cola/git-cola/issues/459>`_)
2175 * `git cola` now checks unmerged files for conflict markers before
2176   staging them.  This feature can be disabled in the preferences.
2177   (`#464 <https://github.com/git-cola/git-cola/issues/464>`_)
2179 * `git dag` now remembers which commits were selected when refreshing
2180   so that it can restore the selection afterwards.
2181   (`#480 <https://github.com/git-cola/git-cola/issues/480>`_)
2183 * "Launch Editor", "Launch Difftool", "Stage/Unstage",
2184   and "Move Up/Down" hotkeys now work when the commit message
2185   editor has focus.
2186   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
2188 * The diff editor now supports the `Ctrl+u` hotkey for reverting
2189   diff hunks and selected lines.
2191 * The `core.commentChar` Git configuration value is now honored.
2192   Commit messages and rebase instruction sheets will now use
2193   the configured character for comments.  This allows having
2194   commit messages that start with `#` when `core.commentChar`
2195   is configured to its non-default value.
2196   (`#446 <https://github.com/git-cola/git-cola/issues/446>`_)
2198 Fixes
2199 -----
2201 * Diff syntax highlighting was improved to handle more edge cases
2202   and false positives.
2203   (`#467 <https://github.com/git-cola/git-cola/pull/467>`_)
2205 * Setting commands in the interactive rebase editor was fixed.
2206   (`#472 <https://github.com/git-cola/git-cola/issues/472>`_)
2208 * git-cola no longer clobbers the Ctrl+Backspace text editing shortcut
2209   in the commit message editor.
2210   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
2212 * The copy/paste clipboard now persists after `git cola` exits.
2213   (`#484 <https://github.com/git-cola/git-cola/issues/484>`_)
2216 .. _v2.2.1:
2218 v2.2.1
2219 ======
2221 Fixes
2222 -----
2223 * Fixed the "Sign off" feature in the commit message editor.
2226 .. _v2.2:
2228 v2.2
2229 ====
2231 Usability, bells and whistles
2232 -----------------------------
2233 * Double-click will now choose a commit in the "Select commit" dialog.
2235 * `git cola` has a feature that reads `.git/MERGE_MSG` and friends for the
2236   commit message when a merge is in-progress.  Upon refresh, `git cola` will
2237   now detect when a merge has completed and reset the commit message back to
2238   its previous state.  It is only reset if the editor contains a message
2239   that was read from the file and has not been manually edited by the user.
2241 * The commit message editor's context menu now has a "Clear..." action for
2242   clearing the message across both the summary and description fields.
2244 * Traditional Chinese (Taiwan) translation updates.
2246 * The system theme's icons are now used wherever possible.
2247   (`#458 <https://github.com/git-cola/git-cola/pull/458>`_)
2249 Fixes
2250 -----
2251 * The stash viewer now uses ``git show --no-ext-diff`` to avoid running
2252   user-configured diff tools.
2254 * `git cola` now uses the `setsid()` system call to ensure that the
2255   `GIT_ASKPASS` and `SSH_ASKPASS` helper programs are used when pushing
2256   changes using `git`.  The askpass helpers will now be used even when
2257   `git cola` is launched from a terminal.
2259   The behavior without `setsid()` is that `git cola` can appear to hang while
2260   pushing changes.  The hang happens when `git` prompts the user for a
2261   password using the terminal, but the user never sees the prompt.  `setsid()`
2262   detaches the terminal, which ensures that the askpass helpers are used.
2263   (`#218 <https://github.com/git-cola/git-cola/issues/218>`_)
2264   (`#262 <https://github.com/git-cola/git-cola/issues/262>`_)
2265   (`#377 <https://github.com/git-cola/git-cola/issues/377>`_)
2267 * `git dag`'s file list tool was updated to properly handle unicode paths.
2269 * `gnome-terminal` is no longer used by default when `cola.terminal` is unset.
2270   It is broken, as was detailed in #456.
2271   (`#456 <https://github.com/git-cola/git-cola/issues/456>`_)
2273 * The interactive rebase feature was not always setting `$GIT_EDITOR`
2274   to the value of `gui.editor`, thus there could be instances where rebase
2275   will seem to not stop, or hang, when performing "reword" actions.
2277   We now set the `$GIT_EDITOR` environment variable when performing the
2278   "Continue", "Skip", and "Edit Todo" rebase actions so that the correct
2279   editor is used during the rebase.
2280   (`#445 <https://github.com/git-cola/git-cola/issues/445>`_)
2282 Packaging
2283 ---------
2284 * `git cola` moved from a 3-part version number to a simpler 2-part "vX.Y"
2285   version number.  Most of our releases tend to contain new features.
2288 .. _v2.1.2:
2290 v2.1.2
2291 ======
2292 Usability, bells and whistles
2293 -----------------------------
2294 * Updated zh_TW translations.
2296 * `git cola rebase` now defaults to `@{upstream}`, and generally uses the same
2297   CLI syntax as `git rebase`.
2299 * The commit message editor now allows you to bypass commit hooks by selecting
2300   the "Bypass Commit Hooks" option.  This is equivalent to passing the
2301   `--no-verify` option to `git commit`.
2302   (`#357 <https://github.com/git-cola/git-cola/issues/357>`_)
2304 * We now prevent the "Delete Files" action from creating a dialog that does
2305   not fit on screen.
2306   (`#378 <https://github.com/git-cola/git-cola/issues/378>`_)
2308 * `git xbase` learned to edit rebase instruction sheets that contain
2309   `exec` commands.
2311 * The diff colors are now configurable.  `cola.color.{text,add,remove,header}`
2312   can now be set with 6-digit hexadecimal colors.
2313   See the `git cola manual <https://git-cola.readthedocs.io/en/latest/git-cola.html#configuration-variables>_`
2314   for more details.
2316 * Improved hotkey documentation.
2318 Fixes
2319 -----
2320 * `git cola` will now allow starting an interactive rebase with a dirty
2321   worktree when `rebase.autostash` is set.
2322   (`#360 <https://github.com/git-cola/git-cola/issues/360>`_)
2325 .. _v2.1.1:
2327 v2.1.1
2328 ======
2329 Usability, bells and whistles
2330 -----------------------------
2331 * A new "Find files" widget was added, and can be activated by
2332   using the `Ctrl+t` or `t` hotkeys.
2334 * A new `git cola find` sub-command was added for finding files.
2336 * `git cola` now remembers the text cursor's position when staging
2337   interactively with the keyboard.  This makes it easier to use the keyboard
2338   arrows to select and stage lines.
2340 * The completion widgets will now select the top completion item
2341   when `Enter` or `Return` are pressed.
2343 * You can now refresh using `F5` in addition to the existing `Ctrl+R` hotkey.
2345 Fixes
2346 -----
2347 * `git cola` now passes `--no-abbrev-commit` to `git log` to override
2348   having `log.abbrevCommit = true` set in `.gitconfig`.
2351 .. _v2.1.0:
2353 v2.1.0
2354 ======
2355 Usability, bells and whistles
2356 -----------------------------
2357 * `git dag` now forwards all unknown arguments along to `git log`.
2358   (`#389 <https://github.com/git-cola/git-cola/issues/389>`_)
2360 * Line-by-line interactive staging was made more robust.
2361   (`#399 <https://github.com/git-cola/git-cola/pull/399>`_)
2363 * "Bookmarks" was renamed to "Favorites".
2364   (`#392 <https://github.com/git-cola/git-cola/issues/392>`_)
2366 * Untracked files are now displayed using a unique icon.
2367   (`#388 <https://github.com/git-cola/git-cola/pull/388>`_)
2369 Fixes
2370 -----
2371 * `git dag` was triggering a traceback on Fedora when parsing Git logs.
2372   (`bz #181676 <https://bugzilla.redhat.com/show_bug.cgi?id=1181686>`_)
2374 * inotify expects unicode paths on Python3.
2375   (`#393 <https://github.com/git-cola/git-cola/pull/393>`_)
2377 * Untracked files are now assumed to be utf-8 encoded.
2378   (`#401 <https://github.com/git-cola/git-cola/issues/401>`_)
2381 .. _v2.0.8:
2383 v2.0.8
2384 ======
2385 Usability, bells and whistles
2386 -----------------------------
2387 * `git cola` can now create GPG-signed commits and merges.
2388   See the documentation for details about setting up a GPG agent.
2389   (`#149 <https://github.com/git-cola/git-cola/issues/149>`_)
2391 * The status widget learned to copy relative paths when `Ctrl+x` is pressed.
2392   (`#358 <https://github.com/git-cola/git-cola/issues/358>`_)
2394 * Custom GUI actions can now define their own keyboard shortcuts by
2395   setting `guitool.$name.shortcut` to a string understood by Qt's
2396   `QAction::setShortcut()` API, e.g. `Alt+X`.
2397   See the
2398   `Qt docs <http://qt-project.org/doc/qt-4.8/qkeysequence.html#QKeySequence-2>`_
2399   for more details about the supported values.
2401 * `git cola` learned to rename branches.
2402   (`#364 <https://github.com/git-cola/git-cola/pull/364>`_)
2403   (`#278 <https://github.com/git-cola/git-cola/issues/278>`_)
2405 * `git dag` now has a "Show history" context menu which can be used to filter
2406   history using the selected paths.
2408 Fixes
2409 -----
2410 * `sphinxtogithub.py` was fixed for Python3.
2411   (`#353 <https://github.com/git-cola/git-cola/pull/353>`_)
2413 * The commit that changed how we read remotes from `git remote`
2414   to parsing `git config` was reverted since it created problems
2415   for some users.
2417 * Fixed a crash when using the `rebase edit` feature.
2418   (`#351 <https://github.com/git-cola/git-cola/issues/351>`_)
2420 * Better drag-and-drop behavior when dropping into gnome-terminal.
2421   (`#373 <https://github.com/git-cola/git-cola/issues/373>`_)
2423 Packaging
2424 ---------
2425 * The `git-cola-folder-handler.desktop` file handler was fixed
2426   to pass validation by `desktop-file-validate`.
2427   (`#356 <https://github.com/git-cola/git-cola/issues/356>`_)
2429 * The `git.svg` icon was renamed to `git-cola.svg`, and `git cola` was taught
2430   to prefer icons from the desktop theme when available.
2433 .. _v2.0.7:
2435 v2.0.7
2436 ======
2437 Usability, bells and whistles
2438 -----------------------------
2439 * New hotkey: `Ctrl+Shift+M` merges branches.
2441 * New hotkey: `Ctrl+R` refreshes the DAG viewer.
2442   (`#347 <https://github.com/git-cola/git-cola/issues/347>`_)
2444 Fixes
2445 -----
2446 * We now use `git config` to parse the list of remotes
2447   instead of parsing the output of `git remote`, which
2448   is a Git porcelain and should not be used by scripts.
2450 * Avoid "C++ object has been deleted" errors from PyQt4.
2451   (`#346 <https://github.com/git-cola/git-cola/issues/346>`_)
2453 Packaging
2454 ---------
2455 * The `make install` target now uses `install` instead of `cp`.
2458 .. _v2.0.6:
2460 v2.0.6
2461 ======
2462 Usability, bells and whistles
2463 -----------------------------
2464 * Updated Brazilian Portuguese translation.
2466 * The status and browse widgets now allow drag-and-drop into
2467   external applications.
2468   (`#335 <https://github.com/git-cola/git-cola/issues/335>`_)
2470 * We now show a progress bar when cloning repositories.
2471   (`#312 <https://github.com/git-cola/git-cola/issues/312>`_)
2473 * The bookmarks widget was simplified to not need a
2474   separate dialog.
2475   (`#289 <https://github.com/git-cola/git-cola/issues/289>`_)
2477 * Updated Traditional Chinese translation.
2479 * We now display a warning when trying to rebase with uncommitted changes.
2480   (`#338 <https://github.com/git-cola/git-cola/issues/338>`_)
2482 * The status widget learned to filter paths.
2483   `Ctrl+Shift+S` toggles the filter widget.
2484   (`#337 <https://github.com/git-cola/git-cola/issues/337>`_)
2485   (`#339 <https://github.com/git-cola/git-cola/pull/339>`_)
2487 * The status widget learned to move files to the trash
2488   when the `send2trash <https://github.com/hsoft/send2trash>`_
2489   module is installed.
2490   (`#341 <https://github.com/git-cola/git-cola/issues/341>`_)
2492 * "Recent repositories" is now a dedicated widget.
2493   (`#342 <https://github.com/git-cola/git-cola/issues/342>`_)
2495 * New Spanish translation thanks to Pilar Molina Lopez.
2496   (`#344 <https://github.com/git-cola/git-cola/pull/344>`_)
2498 Fixes
2499 -----
2500 * Newly added remotes are now properly seen by the fetch/push/pull dialogs.
2501   (`#343 <https://github.com/git-cola/git-cola/issues/343>`_)
2504 .. _v2.0.5:
2506 v2.0.5
2507 ======
2508 Usability, bells and whistles
2509 -----------------------------
2510 * New Brazilian Portuguese translation thanks to Vitor Lobo.
2512 * New Indonesian translation thanks to Samsul Ma'arif.
2514 * Updated Simplified Chinese translation thanks to Zhang Han.
2516 * `Ctrl+Backspace` is now a hotkey for "delete untracked files" in
2517   the status widget.
2519 * Fetch/Push/Pull dialogs now use the configured remote of the current
2520   branch by default.
2521   (`#324 <https://github.com/git-cola/git-cola/pull/324>`_)
2523 Fixes
2524 -----
2525 * We now use `os.getcwd()` on Python3.
2526   (`#316 <https://github.com/git-cola/git-cola/pull/316>`_)
2527   (`#326 <https://github.com/git-cola/git-cola/pull/326>`_)
2529 * The `Ctrl+P` hotkey was overloaded to both "push" and "cherry-pick",
2530   so "cherry-pick" was moved to `Ctrl+Shift+C`.
2532 * Custom GUI tools with mixed-case names are now properly supported.
2534 * "Diff Region" is now referred to as "Diff Hunk" for consistency
2535   with common terminology from diff/patch tools.
2536   (`#328 <https://github.com/git-cola/git-cola/issues/328>`_)
2538 * git-cola's test suite is now portable to MS Windows.
2539   (`#332 <https://github.com/git-cola/git-cola/pull/332>`_)
2542 .. _v2.0.4:
2544 v2.0.4
2545 ======
2546 Usability, bells and whistles
2547 -----------------------------
2548 * We now handle the case when inotify `add_watch()` fails
2549   and display instructions on how to increase the number of watches.
2550   (`#263 <https://github.com/git-cola/git-cola/issues/263>`_)
2552 * New and improved zh_TW localization thanks to V字龍(Vdragon).
2553   (`#265 <https://github.com/git-cola/git-cola/pull/265>`_)
2554   (`#267 <https://github.com/git-cola/git-cola/pull/267>`_)
2555   (`#268 <https://github.com/git-cola/git-cola/pull/268>`_)
2556   (`#269 <https://github.com/git-cola/git-cola/issues/269>`_)
2557   (`#270 <https://github.com/git-cola/git-cola/pull/270>`_)
2558   (`#271 <https://github.com/git-cola/git-cola/pull/271>`_)
2559   (`#272 <https://github.com/git-cola/git-cola/pull/272>`_)
2561 * New hotkeys: `Ctrl+F` for fetch, `Ctrl+P` for push,
2562   and `Ctrl+Shift+P` for pull.
2564 * The bookmarks widget's context menu actions were made clearer.
2565   (`#281 <https://github.com/git-cola/git-cola/issues/281>`_)
2567 * The term "Staging Area" is used consistently in the UI
2568   to allow for better localization.
2569   (`#283 <https://github.com/git-cola/git-cola/issues/283>`_)
2571 * The "Section" term is now referred to as "Diff Region"
2572   in the UI.
2573   (`#297 <https://github.com/git-cola/git-cola/issues/297>`_)
2575 * The localization documentation related to the LANGUAGE
2576   environment variable was improved.
2577   (`#293 <https://github.com/git-cola/git-cola/pull/293>`_)
2579 * The "Actions" panel now contains tooltips for each button
2580   in case the button labels gets truncated by Qt.
2581   (`#292 <https://github.com/git-cola/git-cola/issues/292>`_)
2583 * Custom `git config`-defined actions can now be run in the
2584   background by setting `guitool.<name>.background` to `true`.
2586 Fixes
2587 -----
2588 * We now use bold fonts instead of SmallCaps to avoid
2589   artifacts on several configurations.
2591 * We now pickup `user.email`, `cola.tabwidth`, and similar settings
2592   when defined in /etc/gitconfig.
2593   (`#259 <https://github.com/git-cola/git-cola/issues/259>`_)
2595 * Better support for unicode paths when using inotify.
2596   (`bz #1104181 <https://bugzilla.redhat.com/show_bug.cgi?id=1104181>`_)
2598 * Unicode fixes for non-ascii locales.
2599   (`#266 <https://github.com/git-cola/git-cola/issues/266>`_)
2600   (`#273 <https://github.com/git-cola/git-cola/issues/273>`_)
2601   (`#276 <https://github.com/git-cola/git-cola/issues/276>`_)
2602   (`#282 <https://github.com/git-cola/git-cola/issues/282>`_)
2603   (`#298 <https://github.com/git-cola/git-cola/issues/298>`_)
2604   (`#302 <https://github.com/git-cola/git-cola/issues/302>`_)
2605   (`#303 <https://github.com/git-cola/git-cola/issues/303>`_)
2606   (`#305 <https://github.com/git-cola/git-cola/issues/305>`_)
2608 * Viewing history from the file browser was fixed for Python3.
2609   (`#274 <https://github.com/git-cola/git-cola/issues/274>`_)
2611 * setup.py was fixed to install the `*.rst` documentation.
2612   (`#279 <https://github.com/git-cola/git-cola/issues/279>`_)
2614 * Patch export was fixed for Python3.
2615   (`#290 <https://github.com/git-cola/git-cola/issues/290>`_)
2617 * Fixed adding a bookmark with trailing slashes.
2618   (`#295 <https://github.com/git-cola/git-cola/pull/295>`_)
2620 * The default `git dag` layout is now setup so that its widgets
2621   can be freely resized on Linux.
2622   (`#299 <https://github.com/git-cola/git-cola/issues/299>`_)
2624 * Invalid tag names are now reported when creating tags.
2625   (`#296 <https://github.com/git-cola/git-cola/pull/296>`_)
2628 .. _v2.0.3:
2630 v2.0.3
2631 ======
2632 Usability, bells and whistles
2633 -----------------------------
2634 * `git cola` no longer prompts after successfully creating a new branch.
2635   (`#251 <https://github.com/git-cola/git-cola/pull/251>`_)
2637 * Hitting enter on simple dialogs now accepts them.
2638   (`#255 <https://github.com/git-cola/git-cola/pull/255>`_)
2640 Fixes
2641 -----
2642 * `git dag` no longer relies on `sys.maxint`, which is
2643   not available in Python3.
2644   (`#249 <https://github.com/git-cola/git-cola/issues/249>`_)
2646 * Python3-related fixes.
2647   (`#254 <https://github.com/git-cola/git-cola/pull/254>`_)
2649 * Python3-on-Windows-related fixes.
2650   (`#250 <https://github.com/git-cola/git-cola/pull/250>`_)
2651   (`#252 <https://github.com/git-cola/git-cola/pull/252>`_)
2652   (`#253 <https://github.com/git-cola/git-cola/pull/253>`_)
2654 * Switching repositories using the bookmarks widget was not
2655   refreshing the inotify watcher.
2656   (`#256 <https://github.com/git-cola/git-cola/pull/256>`_)
2658 * Special commit messages trailers (e.g. "Acked-by:") are now special-cased to
2659   fix word wrapping lines that start with "foo:".
2660   (`#257 <https://github.com/git-cola/git-cola/issues/257>`_)
2662 * `git dag` sometimes left behind selection artifacts.
2663   We now refresh the view to avoid them.
2664   (`#204 <https://github.com/git-cola/git-cola/issues/204>`_)
2667 .. _v2.0.2:
2669 v2.0.2
2670 ======
2671 Usability, bells and whistles
2672 -----------------------------
2673 * Better inotify support for file creation and deletion.
2674   (`#240 <https://github.com/git-cola/git-cola/issues/240>`_)
2676 * `git cola` now supports the X11 Session Management Protocol
2677   and remembers its state across logout/reboot.
2678   (`#164 <https://github.com/git-cola/git-cola/issues/164>`_)
2680 * `git cola` has a new icon.
2681   (`#190 <https://github.com/git-cola/git-cola/issues/190>`_)
2683 Packaging
2684 ---------
2685 * Building the documentation no longer requires `asciidoc`.
2686   We now use `Sphinx <http://sphinx-doc.org/>`_ for building
2687   html documentation and man pages.
2689 Fixes
2690 -----
2691 * Reworked the git-dag gravatar icon code to avoid a unicode
2692   error in Python 2.
2694 * Commit message line-wrapping was made to better match the GUI editor.
2695   (`#242 <https://github.com/git-cola/git-cola/issues/242>`_)
2697 * Better support for Python3 on Windows
2698   (`#246 <https://github.com/git-cola/git-cola/issues/246>`_)
2700 Packaging
2701 ---------
2702 * git-cola no longer depends on Asciidoc for building its documentation
2703   and man-pages.  We now depend on [Sphinx](http://sphinx-doc.org/) only.
2706 .. _v2.0.1:
2708 v2.0.1
2709 ======
2710 Usability, bells and whistles
2711 -----------------------------
2712 * Some context menu actions are now hidden when selected
2713   files do not exist.
2714   (`#238 <https://github.com/git-cola/git-cola/issues/238>`_)
2716 Fixes
2717 -----
2718 * The build-git-cola.sh contrib script was improved.
2719   (`#235 <https://github.com/git-cola/git-cola/pull/235>`_)
2721 * Non-ascii worktrees work properly again.
2722   (`#234 <https://github.com/git-cola/git-cola/issues/234>`_)
2724 * The browser now guards itself against missing files.
2725   (`bz #1041378 <https://bugzilla.redhat.com/show_bug.cgi?id=1071378>`_)
2727 * Saving widget state now works under Python3.
2728   (`#236 <https://github.com/git-cola/git-cola/pull/236>`_)
2731 .. _v2.0.0:
2733 v2.0.0
2734 ======
2735 Portability
2736 -----------
2737 * git-cola now runs on Python 3 thanks to Virgil Dupras.
2738   (`#233 <https://github.com/git-cola/git-cola/pull/233>`_)
2740 * Python 2.6, 2.7, and 3.2+ are now supported.
2741   Python 2.5 is no longer supported.
2743 Fixes
2744 -----
2745 * i18n test fixes thanks to Virgil Dupras.
2746   (`#231 <https://github.com/git-cola/git-cola/pull/231>`_)
2748 * git-cola.app build fixes thanks to Maicon D. Filippsen.
2749   (`#230 <https://github.com/git-cola/git-cola/pull/230>`_)
2751 * Lots of pylint improvements thanks to Alex Chernetz.
2752   (`#229 <https://github.com/git-cola/git-cola/pull/229>`_)
2755 .. _v1.9.4:
2757 v1.9.4
2758 ======
2759 Usability, bells and whistles
2760 -----------------------------
2761 * The new `Bookmarks` tool makes it really easy to switch between repositories.
2763 * There is now a dedicated dialog for applying patches.
2764   See the ``File -> Apply Patches`` menu item.
2765   (`#215 <https://github.com/git-cola/git-cola/issues/215>`_)
2767 * A new `git cola am` sub-command was added for applying patches.
2769 Fixes
2770 -----
2771 * Fixed a typo that caused inotify events to be silently ignored.
2773 * Fixed the sys.path setup for Mac OS X (Homebrew).
2774   (`#221 <https://github.com/git-cola/git-cola/issues/221>`_)
2776 * Lots of pylint fixes thanks to Alex Chernetz.
2779 .. _v1.9.3:
2781 v1.9.3
2782 ======
2783 Usability, bells and whistles
2784 -----------------------------
2785 * `git cola --amend` now starts the editor in `amend` mode.
2786   (`#187 <https://github.com/git-cola/git-cola/issues/187>`_)
2788 * Multiple lines of text can now be pasted into the `summary` field.
2789   All text beyond the first newline will be automatically moved to the
2790   `extended description` field.
2791   (`#212 <https://github.com/git-cola/git-cola/issues/212>`_)
2793 Fixes
2794 -----
2795 * Stray whitespace in `.git` files is now ignored.
2796   (`#213 <https://github.com/git-cola/git-cola/issues/213>`_)
2798 * Fix "known incorrect sRGB profile" in `staged-item.png`.
2799   (`gentoo-devel message #85066
2800   <http://comments.gmane.org/gmane.linux.gentoo.devel/85066>`_)
2803 .. _v1.9.2:
2805 v1.9.2
2806 ======
2807 Fixes
2808 -----
2809 * Fix a traceback when `git push` fails.
2810   (`bz #1034778 <https://bugzilla.redhat.com/show_bug.cgi?id=1034778>`_)
2812 Packaging
2813 ---------
2814 * Most of the git-cola sub-packages have been removed.
2815   The only remaining packages are `cola`, `cola.models`,
2816   and `cola.widgets`.
2818 * The translation file for Simplified Chinese was renamed
2819   to `zh_CN.po`.
2820   (`#209 <https://github.com/git-cola/git-cola/issues/209>`_)
2823 .. _v1.9.1:
2825 v1.9.1
2826 ======
2827 Packaging
2828 ---------
2829 * `git cola version --brief` now prints the brief version number.
2831 Fixes
2832 -----
2833 * Resurrected the "make dist" target, for those that prefer to create
2834   their own tarballs.
2836 * Fixed the typo that broke the preferences dialog.
2839 .. _v1.9.0:
2841 v1.9.0
2842 ======
2843 Usability, bells and whistles
2844 -----------------------------
2845 * We now ship a full-featured interactive `git rebase` editor.
2846   The rebase todo file is edited using the `git xbase` script which
2847   is provided at `$prefix/share/git-cola/bin/git-xbase`.
2848   This script can be used standalone by setting the `$GIT_SEQUENCE_EDITOR`
2849   before running `git rebase --interactive`.
2850   (`#1 <https://github.com/git-cola/git-cola/issues/1>`_)
2852 * Fixup commit messages can now be loaded from the commit message editor.
2854 * Tool widgets can be locked in place by using the "Tools/Lock Layout"
2855   menu action.
2856   (`#202 <https://github.com/git-cola/git-cola/issues/202>`_)
2858 * You can now push to several remotes simultaneously by selecting
2859   multiple remotes in the "Push" dialog.
2860   (`#148 <https://github.com/git-cola/git-cola/issues/148>`_)
2862 * The `grep` tool learned to search using three different modes:
2863   basic regular expressions (default), extended regular expressions,
2864   and fixed strings.
2866 Packaging
2867 ---------
2868 * `git cola` now depends on the `argparse` Python module.
2869   This module is part of the stdlib in Python 2.7 and must
2870   be installed separately when using Python 2.6 and below.
2872 Fixes
2873 -----
2874 * Support unicode in the output from `fetch`, `push`, and `pull`.
2877 .. _v1.8.5:
2879 v1.8.5
2880 ======
2881 Usability, bells and whistles
2882 -----------------------------
2883 * We now detect when the editor or history browser are misconfigured.
2884   (`#197 <https://github.com/git-cola/git-cola/issues/197>`_)
2885   (`bz #886826 <https://bugzilla.redhat.com/show_bug.cgi?id=886826>`_)
2887 * Display of untracked files can be disabled from the Preferences dialog
2888   or by setting the `gui.displayuntracked` configuration variable to `false`.
2889   (`Git Mailing List on 2013-08-21
2890   <https://public-inbox.org/git/20130821032913.GA6092@wheezy.local/>`_)
2892 Fixes
2893 -----
2894 * Unicode stash names are now supported
2895   (`#198 <https://github.com/git-cola/git-cola/issues/198>`_)
2897 * The diffs produced when reverting workspace changes were made more robust.
2900 .. _v1.8.4:
2902 v1.8.4
2903 ======
2904 Usability, bells and whistles
2905 -----------------------------
2906 * Brand new German translation thanks to Sven Claussner.
2908 * The "File" menu now provides a "New Repository..." menu action.
2910 * `git dag` now uses a dock-widget interface so that its widgets can
2911   be laid-out and arranged.  Customizations are saved and restored
2912   the next time `git dag` is launched.
2914 * `git dag` now has a "Zoom Best Fit" button next alongside the
2915   "Zoom In" and "Zoom Out" buttons.
2917 * `Ctrl+L` now focuses the "Search" field in the `git dag` tool.
2919 * Right-clicking in the "diff" viewer now updates the cursor position
2920   before performing actions, which makes it much easier to click around
2921   and selectively stage sections.  Previously, the current cursor position
2922   was used which meant that it required two clicks (left-click to update
2923   the position followed by right-click to get the context menu) for the
2924   desired section to be used.  This is now a single right-click operation.
2926 * The `Ctrl+D` "Launch Diff Tool" action learned to automatically choose
2927   between `git difftool` and `git mergetool`.  If the file is unmerged then
2928   we automatically launch `git mergetool` on the path, otherwise we use
2929   `git difftool`.  We do this because `git difftool` is not intended to
2930   be used on unmerged paths.  Automatically using `git mergetool` when
2931   appropriate is the most intuitive and muscle-memory-friendly thing to do.
2933 * You can now right-click on folders in your standard file browser
2934   and choose "Open With -> Git Cola"  (Linux-only).
2936 Fixes
2937 -----
2938 * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple
2939   at `sys.version_info`.  We now avoid using that variable for better
2940   portability.
2942 * We now read the user's Git configuration from `~/.config/git/config`
2943   if that file is available, otherwise we use the traditional `~/.gitconfig`
2944   path, just like Git itself.
2946 * Some edge cases were fixed when applying partial/selected diffs.
2948 * The diff viewer is now properly cleared when refreshing.
2949   (`#194 <https://github.com/git-cola/git-cola/issues/194>`_)
2952 .. _v1.8.3:
2954 v1.8.3
2955 ======
2956 Usability, bells and whistles
2957 -----------------------------
2958 * The diff viewer now has an "Options" menu which can be
2959   used to set "git diff" options.  This can be used to
2960   ignore whitespace changes or to show a change with its
2961   surrounding function as context.
2962   (`#150 <https://github.com/git-cola/git-cola/issues/150>`_)
2964 * `git cola` now remembers your commit message and will restore it
2965   when `git cola` is restarted.
2966   (`#175 <https://github.com/git-cola/git-cola/pull/175>`_)
2968 * `Ctrl+M` can now be used to toggle the "Amend last commit"
2969   checkbox in the commit message editor.
2970   (`#161 <https://github.com/git-cola/git-cola/pull/161>`_)
2972 * Deleting remote branches can now be done from the "Branch" menu.
2973   (`#152 <https://github.com/git-cola/git-cola/issues/152>`_)
2975 * The commit message editor now has a built-in spell checker.
2977 Fixes
2978 -----
2979 * We now avoid invoking external diffs when showing diffstats.
2980   (`#163 <https://github.com/git-cola/git-cola/pull/163>`_)
2982 * The `Status` tool learned to reselect files when refreshing.
2983   (`#165 <https://github.com/git-cola/git-cola/issues/165>`_)
2985 * `git cola` now remembers whether it has been maximized and will restore the
2986   maximized state when `git cola` is restarted.
2987   (`#172 <https://github.com/git-cola/git-cola/issues/172>`_)
2989 * Performance is now vastly improved when staging hundreds or
2990   thousands of files.
2992 * `git cola` was not correctly saving repo-specific configuration.
2993   (`#174 <https://github.com/git-cola/git-cola/issues/174>`_)
2995 * Fix a UnicodeDecode in sphinxtogithub when building from source.
2998 .. _v1.8.2:
3000 v1.8.2
3001 ======
3003 Usability, bells and whistles
3004 -----------------------------
3005 * We now automatically remove missing repositories from the
3006   "Select Repository" dialog.
3007   (`#145 <https://github.com/git-cola/git-cola/issues/145>`_)
3009 * A new `git cola diff` sub-command was added for diffing changed files.
3011 Fixes
3012 -----
3013 * The inotify auto-refresh feature makes it difficult to select text in
3014   the "diff" editor when files are being continually modified by another
3015   process.  The auto-refresh causes it to lose the currently selected text,
3016   which is not wanted.  We now avoid this problem by saving and restoring
3017   the selection when refreshing the editor.
3018   (`#155 <https://github.com/git-cola/git-cola/issues/155>`_)
3020 * More strings have been marked for l10n.
3021   (`#157 <https://github.com/git-cola/git-cola/issues/157>`_)
3023 * Fixed the Alt+D Diffstat shortcut.
3024   (`#159 <https://github.com/git-cola/git-cola/issues/159>`_)
3026 Fixes
3027 -----
3028 * Better error handling when cloning repositories.
3030   We were not handling the case where a git URL has
3031   no basename, e.g. `https://git.example.com/`.
3032   `git cola` originally rejected these URLs instead of
3033   allowing users to clone them.  It now allows these URLs
3034   when they point to valid git repositories.
3036   Additionally, `git cola` learned to echo the errors
3037   reported by `git clone` when it fails.
3038   (`#156 <https://github.com/git-cola/git-cola/issues/156>`_)
3041 .. _v1.8.1:
3043 v1.8.1
3044 ======
3046 Usability, bells and whistles
3047 -----------------------------
3048 * `git dag` got a big visual upgrade.
3050 * `Ctrl+G` now launches the "Grep" tool.
3052 * `Ctrl+D` launches difftool and `Ctrl+E` launches your editor
3053   when in the diff panel.
3055 * git-cola can now be told to use an alternative language.
3056   For example, if the native language is German and we want git-cola to
3057   use English then we can create a `~/.config/git-cola/language` file with
3058   "en" as its contents: ``echo en >~/.config/git-cola/language``
3059   (`#140 <https://github.com/git-cola/git-cola/issues/140>`_)
3061 * A new `git cola merge` sub-command was added for merging branches.
3063 * Less blocking in the main UI
3065 Fixes
3066 -----
3067 * Autocomplete issues on KDE
3068   (`#144 <https://github.com/git-cola/git-cola/issues/144>`_)
3070 * The "recently opened repositories" startup dialog did not
3071   display itself in the absence of bookmarks.
3072   (`#139 <https://github.com/git-cola/git-cola/issues/139>`_)
3075 .. _v1.8.0:
3077 v1.8.0
3078 ======
3080 Usability, bells and whistles
3081 -----------------------------
3082 * `git cola` learned to honor `.gitattributes` when showing and
3083   interactively applying diffs.  This makes it possible to store
3084   files in git using a non-utf-8 encoding and `git cola` will
3085   properly accept them.  This must be enabled by settings
3086   `cola.fileattributes` to true, as it incurs a small performance
3087   penalty.
3088   (`#96 <https://github.com/git-cola/git-cola/issues/96>`_)
3090 * `git cola` now wraps commit messages at 72 columns automatically.
3091   This is configurable using the `cola.linebreak` variable to enable/disable
3092   the feature, and `cola.textwidth` to configure the limit.
3093   (`#133 <https://github.com/git-cola/git-cola/issues/133>`_)
3095 * A new "Open Recent" sub-menu was added to the "File" menu.
3096   This makes it easy to open a recently-edited repository.
3097   (`#135 <https://github.com/git-cola/git-cola/issues/135>`_)
3099 * We now show a preview for untracked files when they are clicked
3100   using the `Status` tool.
3101 * A new "Open Using Default Application" action was added to the
3102   `Status` tool.  It is activated using either `Spacebar` or through
3103   the context menu.  This action uses `xdg-open` on Linux and
3104   `open` on Mac OS X.
3105 * A new "Open Parent Directory" action was added to the `Status` tool.
3106   It is activated using either `Shift+Spacebar` or through the
3107   context menu.
3108 * `git dag` learned to honor the `log.date` git configuration variable.
3109   This makes the date display follow whatever format the user has
3110   configured.
3111 * A new `git cola config` sub-command was added for quickly
3112   tweaking `git cola`'s git configuration settings.
3113 * Some small usability tweaks -- some user confirmation prompts
3114   were defaulting to "Cancel" when they should have been defaulting
3115   to the affirmative option instead.
3117 Fixes
3118 -----
3119 * Properly handle arbitrarily-named branches.
3120 * We went back to launching `git mergetool` using an xterm.
3121   The reason is that there are a couple of places where `git mergetool`
3122   requires a terminal for user interaction not covered by `--no-prompt`.
3123 * We now properly handle an edge case when applying short diffs at
3124   the start of a file.
3127 .. _v1.7.7:
3129 v1.7.7
3130 ======
3132 Usability, bells and whistles
3133 -----------------------------
3134 * New and improved `grep` mode lets you instantly find and edit files.
3135 * New `git cola grep` standalone mode.
3136 * Support for passing arguments to the configured editors, e.g. `gvim -p`
3137   This makes it possible to select multiple files in the status
3138   window and use `Ctrl + E` to edit them all at once.
3139 * Remote operations now prompt on errors only.
3140 * The `Tab` key now jumps to the extended description when editing the summary.
3141 * More shortcut key labels and misc. UX improvements.
3143 Fixes
3144 -----
3145 * Selecting an item no longer copies its filename to the copy/paste buffer.
3146   `Ctrl + C` or the "Copy" context-menu action can be used instead.
3147 * The repository monitoring feature on Windows learned to ignore
3148   changes within the ".git" directory.  Thanks to Andreas Sommer.
3149   (`#120 <https://github.com/git-cola/git-cola/issues/120>`_)
3152 .. _v1.7.6:
3154 v1.7.6
3155 ======
3157 Usability, bells and whistles
3158 -----------------------------
3159 * `git dag` learned to color-code branchy edges.
3160   The edge colors change when a new branch is detected,
3161   which makes the history much easier to follow.
3162   A huge thanks to Uri Okrent for making it happen.
3164 * New GUI for editing remote repositories.
3166 * New `git cola archive` and `git cola remote` sub-commands.
3168 * `git cola browser` learned an 'Untrack' command.
3170 * The diff editor learned to staged/unstaged while amending.
3172 * The status tool can now scroll horizontally.
3174 * New git repositories can be created by clicking 'New' on the
3175   `git cola --prompt` startup screen.
3178 .. _v1.7.5:
3180 v1.7.5
3181 ======
3183 Usability, bells and whistles
3184 -----------------------------
3185 * Auto-completion was added to more tools.
3187 * `git dag` is easier to use on smaller displays -- the author
3188   field elides its text which allows for a more compact display.
3190 * Selected commits in `git dag` were made more prominent and
3191   easier to see.
3193 * 'Create Branch' learned to fetch remote branches and uses a
3194   background thread to do so.
3196 * User-configured GUI tools are listed alphabetically in the 'Actions' menu.
3198 * The 'Pull' dialog remembers the value of the 'Rebase' checkbox
3199   between invocations.
3202 .. _v1.7.4.1:
3204 v1.7.4.1
3205 ========
3207 Fixes
3208 -----
3209 * Detect Homebrew so that OS X users do not need to set PYTHONPATH.
3211 * `git dag` can export patches again.
3214 .. _v1.7.4:
3216 v1.7.4
3217 ======
3219 Usability, bells and whistles
3220 -----------------------------
3221 * The 'Classic' tool was renamed to 'Browser' and learned to
3222   limit history to the current branch.
3224 * `git dag` learned about gravatar and uses it to show images
3225   for commit authors.
3227 * `git dag` learned to use OpenGL for rendering resulting in
3228   much faster rendering.
3230 * More dialogs learned vim-style keyboard shortcuts.
3232 * The commit message editor learned better arrow key navigation.
3235 .. _v1.7.3:
3237 v1.7.3
3238 ======
3240 Usability, bells and whistles
3241 -----------------------------
3242 * `git cola` learned a few new sub commands:
3244 .. sourcecode:: sh
3246     git cola dag
3247     git cola branch
3248     git cola search
3250 * `Return` in the summary field jumps to the extended description.
3252 * `Ctrl+Return` is now a shortcut for 'Commit'.
3254 * Better French translation for 'Sign-off'.
3256 * The 'Search' widget now has a much simpler and streamlined
3257   user interface.
3259 * vim-style `h,j,k,l` navigation shortcuts were added to the DAG widget.
3261 * `git dag` no longer prompts for files when diffing commits if the
3262   text field contains paths.
3264 * General user interface and performance improvements.
3266 Fixes
3267 -----
3268 * The diff viewer no longer changes font size when holding `Control`
3269   while scrolling with the mouse wheel.
3271 * Files with a typechange (e.g. symlinks that become files, etc.)
3272   are now correctly identified as being modified.
3274 Packaging
3275 ---------
3276 * The `cola.controllers` and `cola.views` packages were removed.
3279 .. _v1.7.2:
3281 v1.7.2
3282 ======
3284 Usability, bells and whistles
3285 -----------------------------
3286 * `git cola` can now launch sub commands, e.g.:
3288 .. sourcecode:: sh
3290     git cola classic
3291     git cola stash
3292     git cola fetch
3293     git cola push
3294     git cola pull
3295     git cola tag
3297 * `git dag` is more responsive when gathering auto-completions.
3299 * Keyboard shortcuts are displayed when the '?' key is pressed.
3301 * Various keyboard shortcuts were added for improved usability.
3303 * The status widget now lists unmerged files before modified files.
3305 * vim-style `h,j,k,l` navigation shortcuts were added to the status widget.
3307 * A 'Recently Modified Files...' tool was added.
3309 * Tools can now be hidden with `Alt + #` (where `#` is a keyboard number)
3310   and focused with `Alt + Shift + #`.
3312 * The syntax highlighting colors for diffs was made less intrusive.
3314 * The commit message editor was redesigned to have a more compact
3315   and keyboard-convenient user interface.
3317 * Keyboard shortcuts for adding a Signed-off-by (`Ctrl + i`)
3318   and creating a commit (`Ctrl + m`) were added.
3320 * The status widget was adjusted to use less screen real-estate.
3322 Fixes
3323 -----
3324 * Avoid updating the index when responding to inotify events.
3325   This avoids interfering with operations such as `git rebase --interactive`.
3326   (`#99 <https://github.com/git-cola/git-cola/issues/99>`_)
3328 Packaging
3329 ---------
3330 * Create `git-dag.pyw` in the win32 installer.
3332 * win32 shortcuts now contain explicit calls to `pythonw.exe` instead of
3333   calling the `.pyw` file directly.
3335 Deprecated Features
3336 -------------------
3337 * The 'Apply Changes from Branch...' feature was removed.
3338   `git dag`'s 'Grab File...' feature used alongside the index/worktree editor
3339   is a simpler alternative.
3342 .. _v1.7.1.1:
3344 v1.7.1.1
3345 ========
3347 Fixes
3348 -----
3349 * Further enhanced the staging/unstaging behavior in the status widget.
3350   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
3352 * Unmerged files are no longer listed as modified.
3354 Packaging
3355 ---------
3356 The `cola-$version` tarballs on github were originally setup to
3357 have the same contents as the old tarballs hosted on tuxfamily.
3358 The `make dist` target was changed to write files to a
3359 `git-cola-$version` subdirectory and tarball.
3361 This makes the filenames consistent for the source tarball,
3362 the darwin .app tarball, and the win32 .exe installer.
3365 .. _v1.7.1:
3367 v1.7.1
3368 ======
3370 Usability, bells and whistles
3371 -----------------------------
3372 * Refined the staging/unstaging behavior for code reviews.
3373   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
3375 * Added more styling and icons to menus and buttons.
3377 * Adjusted some terminology to more closely match the git CLI.
3379 Fixes
3380 -----
3381 * Boolean `git config` settings with no value are now supported
3382   (these are not created by git these days but exist in legacy repositories).
3384 * Unicode branches and tags are supported in the "branch diff" tool.
3386 * Guard against low-memory conditions and more interrupted system calls.
3388 Packaging
3389 ---------
3390 * Added desktop launchers for git-cola.desktop and git-dag.desktop.
3391   This replaces the old cola.desktop, so some adjustments to RPM .spec
3392   and debian/ files will be needed.
3394 * Fixed the darwin app-tarball Makefile target to create relative paths.
3396 Cleanup
3397 -------
3398 * The `--style` option was removed.  `git cola` follows the system theme
3399   so there's no need for this option these days.
3402 .. _v1.7.0:
3404 v1.7.0
3405 ======
3407 Usability, bells and whistles
3408 -----------------------------
3409 * Export a patch series from `git dag` into a `patches/` directory.
3411 * `git dag` learned to diff commits, slice history along paths, etc.
3413 * Added instant-preview to the `git stash` widget.
3415 * A simpler preferences editor is used to edit `git config` values.
3416   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
3417   (`#89 <https://github.com/git-cola/git-cola/issues/89>`_)
3419 * Previous commit messages can be re-loaded from the message editor.
3420   (`#33 <https://github.com/git-cola/git-cola/issues/33>`_)
3422 Fixes
3423 -----
3424 * Display commits with no file changes.
3425   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
3427 * Improved the diff editor's copy/paste behavior
3428   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
3430 Packaging
3431 ---------
3432 * Bumped version number to ceil(minimum git version).
3433   `git cola` now requires `git` >= 1.6.3.
3435 * Simplified git-cola's versioning when building from tarballs
3436   outside of git.  We no longer check for a 'version' file at
3437   the root of the repository.  We instead keep a default version
3438   in `cola/version.py` and use it when `git cola`'s `.git` repository
3439   is not available.
3442 .. _v1.4.3.5:
3444 v1.4.3.5
3445 ========
3447 Usability, bells and whistles
3448 -----------------------------
3449 * inotify is much snappier and available on Windows
3450   thanks to Karl Bielefeldt.
3452 * New right-click command to add untracked files to .gitignore
3453   thanks to Audrius Karabanovas.
3455 * Stash, fetch, push, and pull usability improvements
3457 * General usability improvements
3459 * stderr is logged when applying partial diffs.
3461 Fixes
3462 -----
3463 * Files can be unstaged when amending.
3464   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
3466 * Show the configured remote.$remote.pushurl in the GUI
3467   (`#83 <https://github.com/git-cola/git-cola/issues/83>`_)
3469 * Removed usage of the "user" module.
3470   (`#86 <https://github.com/git-cola/git-cola/issues/86>`_)
3472 * Avoids an extra `git update-index` call during startup.
3475 .. _v1.4.3.4:
3477 v1.4.3.4
3478 ========
3480 Usability, bells and whistles
3481 -----------------------------
3482 * We now provide better feedback when `git push` fails.
3483   (`#69 <https://github.com/git-cola/git-cola/issues/69>`_)
3485 * The Fetch, Push, and Pull dialogs now give better feedback
3486   when interacting with remotes.  The dialogs are modal and
3487   a progress dialog is used.
3489 Fixes
3490 -----
3491 * More unicode fixes, again.  It is now possible to have
3492   unicode branch names, repository paths, home directories, etc.
3493   This continued the work initiated by Redhat's bugzilla #694806.
3495   https://bugzilla.redhat.com/show_bug.cgi?id=694806
3498 .. _v1.4.3.3:
3500 v1.4.3.3
3501 ========
3503 Usability, bells and whistles
3504 -----------------------------
3505 * The `git cola` desktop launchers now prompt for a repo
3506   by default.  This is done by using the new `--prompt`
3507   flag which tells `git cola` to ignore any git repositories
3508   in the current directory and prompt for one instead.
3510 Fixes
3511 -----
3512 * More Unicode fixes for repositories and home directories with
3513   embedded unicode characters.  Thanks to Christian Jann for
3514   patience and helpful bug reports.
3516 * Fix the 'Clone' button in the startup dialog.
3519 .. _v1.4.3.2:
3521 v1.4.3.2
3522 ========
3524 Usability, bells and whistles
3525 -----------------------------
3526 * Faster startup time! `git cola` now offloads initialization
3527   to a background thread so that the GUI appears almost instantly.
3529 * Specialized diff options for p4merge, vimdiff, araxis, emerge,
3530   and ecmerge in difftool (backported from git.git).
3532 Fixes
3533 -----
3534 * Fix launching commands in the background on Windows
3535   (e.g. when launching `git difftool`).
3537 * Fix unicode errors when home or repository directories contain
3538   unicode characters.
3539   (`#74 <https://github.com/git-cola/git-cola/issues/74>`_)
3540   (`bz #694806 <https://bugzilla.redhat.com/show_bug.cgi?id=694806>`_)
3543 .. _v1.4.3.1:
3545 v1.4.3.1
3546 ========
3548 Usability, bells and whistles
3549 -----------------------------
3550 * The `cola classic` tool can be now configured to be dockable.
3551   (`#56 <https://github.com/git-cola/git-cola/issues/56>`_)
3553 * The `cola classic` tool now uses visual sigils to indicate a file's status.
3554   The idea and icons were provided by Uri Okrent.
3556 * Include the 'Rescan' button in the 'Actions' widget regardless
3557   of whether inotify is installed.
3559 Packaging
3560 ---------
3561 * Fix installation of translations per Fedora
3562   This incorporates Fedora's fix for the translations path
3563   which originally appeared in cola-1.4.3-translations.patch.
3565 * Mac OS X git-cola developers can now generate git-cola.app
3566   application bundles using 'make app-bundle'.
3568 Fixes
3569 -----
3570 * Fixed a stacktrace when trying to use "Get Commit Message Template"
3571   with an unconfigured "commit.template" git config variable.
3572   (`bz #67521 <https://bugzilla.redhat.com/show_bug.cgi?id=675721>`_)
3573   (`#72 <https://github.com/git-cola/git-cola/issues/72>`_)
3575 * Properly raise the main window on Mac OS X.
3577 * Properly handle staging a huge numbers of files at once.
3579 * Speed up 'git config' usage by fixing cola's caching proxy.
3581 * Guard against damaged ~/.cola files.
3584 .. _v1.4.3:
3586 v1.4.3
3587 ======
3589 Usability, bells and whistles
3590 -----------------------------
3591 * `git dag` now has a separate display area
3592   for displaying commit metadata.  This area will soon
3593   grow additional functionality such as cherry-picking,
3594   branching, etc.
3596 Fixes
3597 -----
3598 * Fixed tests from a previous refactoring.
3600 * Guard against 'diff.external' configuration by always
3601   calling 'git diff' with the '--no-ext-diff' option.
3602   (`#67 <https://github.com/git-cola/git-cola/issues/67>`_)
3604 * Respect 'gui.diffcontext' so that cola's diff display
3605   shows the correct number of context lines.
3607 * Raise the GUI so that it is in the foreground on OS X.
3609 Packaging
3610 ---------
3611 * We now allow distutils to rewrite cola's shebang line.
3612   This allows us to run on systems where "which python"
3613   is Python3k.  This is exposed by setting the `PYTHON`
3614   Makefile variable to the location of python2.x.
3616 * git-cola.app is now a tiny download because it no longer
3617   contains Qt and PyQt.  These libraries are provided as a
3618   separate download.
3619   (`Link <http://code.google.com/p/git-cola/downloads/list>`_)
3622 .. _v1.4.2.5:
3624 v1.4.2.5
3625 ========
3627 Usability, bells and whistles
3628 -----------------------------
3629 * Clicking on paths in the status widget copies them into the
3630   copy/paste buffer for easy middle-clicking into terminals.
3632 * `Ctrl+C` in diff viewer copies the selected diff to the clipboard.
3634 Fixes
3635 -----
3636 * Fixed the disappearing actions buttons on PyQt 4.7.4
3637   as reported by Arch and Ubuntu 10.10.
3638   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
3640 * Fixed mouse interaction with the status widget where some
3641   items could not be de-selected.
3643 Packaging
3644 ---------
3645 * Removed hard-coded reference to lib/ when calculating Python's
3646   site-packages directory.
3649 .. _v1.4.2.4:
3651 v1.4.2.4
3652 ========
3654 Usability, bells and whistles
3655 -----------------------------
3656 * Removed "single-click to (un)stage" in the status view.
3657   This is a usability improvement since we no longer perform
3658   different actions depending on where a row is clicked.
3660 * Added ability to create unsigned, annotated tags.
3662 Fixes
3663 -----
3664 * Updated documentation to use `cola.git` instead of `cola.gitcmd`.
3667 .. _v1.4.2.3:
3669 v1.4.2.3
3670 ========
3672 Usability, bells and whistles
3673 -----------------------------
3674 * Allow un/staging by right-clicking top-level items
3675   (`#57 <https://github.com/git-cola/git-cola/issues/57>`_)
3677 * Running 'commit' with no staged changes prompts to allow
3678   staging all files.
3679   (`#55 <https://github.com/git-cola/git-cola/issues/55>`_)
3681 * Fetch, Push, and Pull are now available via the menus
3682   (`#58 <https://github.com/git-cola/git-cola/issues/58>`_)
3684 Fixes
3685 -----
3686 * Simplified the actions widget to work around a regression
3687   in PyQt4 4.7.4.
3688   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
3691 .. _v1.4.2.2:
3693 v1.4.2.2
3694 ========
3696 Usability, bells and whistles
3697 -----------------------------
3698 * `git dag` interaction was made faster.
3700 Fixes
3701 -----
3702 * Added '...' indicators to the buttons for
3703   'Fetch...', 'Push...', 'Pull...', and 'Stash...'.
3704   (`#51 <https://github.com/git-cola/git-cola/issues/51>`_)
3706 * Fixed a hang-on-exit bug in the cola-provided
3707   'ssh-askpass' implementation.
3710 .. _v1.4.2.1:
3712 v1.4.2.1
3713 ========
3715 Usability, bells and whistles
3716 -----------------------------
3717 * Staging and unstaging is faster.
3718   (`#48 <https://github.com/git-cola/git-cola/issues/48>`_)
3720 * `git dag` reads history in a background thread.
3722 Portability
3723 -----------
3724 * Added :data:`cola.compat.hashlib` for `Python 2.4` compatibility
3725 * Improved `PyQt 4.1.x` compatibility.
3727 Fixes
3728 -----
3729 * Configured menu actions use ``sh -c`` for Windows portability.
3732 .. _v1.4.2:
3734 v1.4.2
3735 ======
3737 Usability, bells and whistles
3738 -----------------------------
3739 * Added support for the configurable ``guitool.<tool>.*``
3740   actions as described in the ``git config`` documentation.
3741   (`git-config(1) <https://git-scm.com/docs/git-config>`_)
3742   (`#44 <https://github.com/git-cola/git-cola/issues/44>`_)
3744   This makes it possible to add new actions to `git cola`
3745   by simply editing ``~/.gitconfig``.  This implements the
3746   same guitool support as `git gui`.
3748 * Introduced a stat cache to speed up `git config` and
3749   repository status checks.
3751 * Added Alt-key shortcuts to the main `git cola` interface.
3753 * The `Actions` dock widget switches between a horizontal
3754   and vertical layout when resized.
3756 * We now use ``git diff --submodule`` for submodules
3757   (used when git >= 1.6.6).
3759 * The context menu for modified submodules includes an option
3760   to launch `git cola`.
3761   (`#17 <https://github.com/git-cola/git-cola/issues/17>`_)
3763 * Prefer ``$VISUAL`` over ``$EDITOR`` when both are defined.
3764   These are used to set a default editor in lieu of `core.editor`
3765   configuration.
3767 * Force the editor to be ``gvim`` when we see ``vim``.
3768   This prevents us from launching an editor in the (typically
3769   unattached) parent terminal and creating zombie editors
3770   that cannot be easily killed.
3772 * Selections are remembered and restored across updates.
3773   This makes the `partial-staging` workflow easier since the
3774   diff view will show the updated diff after staging.
3776 * Show the path to the current repository in a tooltip
3777   over the commit message editor.
3778   (`#45 <https://github.com/git-cola/git-cola/issues/45>`_)
3780 * Log internal ``git`` commands when ``GIT_COLA_TRACE`` is defined.
3781   (`#39 <https://github.com/git-cola/git-cola/issues/39>`_)
3783 Fixes
3784 -----
3785 * Improved backwards compatibility for Python 2.4.
3787 * `Review mode` can now review the current branch; it no longer
3788   requires you to checkout the branch into which the reviewed
3789   branch will be merged.
3791 * Guard against `color.ui = always` configuration when using
3792   `git log` by passing ``--no-color``.
3794 * ``yes`` and ``no`` are now supported as valid booleans
3795   by the `git config` parser.
3797 * Better defaults are used for `fetch`, `push`, and `pull`..
3798   (`#43 <https://github.com/git-cola/git-cola/issues/43>`_)
3800 Packaging
3801 ---------
3802 * Removed colon (`:`) from the applilcation name on Windows
3803   (`#41 <https://github.com/git-cola/git-cola/issues/41>`_)
3805 * Fixed bugs with the Windows installer
3806   (`#40 <https://github.com/git-cola/git-cola/issues/40>`_)
3808 * Added a more standard i18n infrastructure.  The install
3809   tree now has the common ``share/locale/$lang/LC_MESSAGES/git-cola.mo``
3810   layout in use by several projects.
3812 * Started trying to accommodate Mac OSX 10.6 (Snow Leopard)
3813   in the ``darwin/`` build scripts but our tester is yet to
3814   report success building a `.app` bundle.
3816 * Replaced use of ``perl`` in Sphinx/documentation Makefile
3817   with more-portable ``sed`` constructs.  Thanks to
3818   Stefan Naewe for discovering the portability issues and
3819   providing msysgit-friendly patches.
3822 .. _v1.4.1.2:
3824 v1.4.1.2
3825 ========
3827 Usability, bells and whistles
3828 -----------------------------
3829 * It is now possible to checkout from the index as well
3830   as from `HEAD`.  This corresponds to the
3831   `Removed Unstaged Changes` action in the `Repository Status` tool.
3833 * The `remote` dialogs (fetch, push, pull) are now slightly
3834   larger by default.
3836 * Bookmarks can be selected when `git cola` is run outside of a git repository.
3838 * Added more user documentation.  We now include many links to
3839   external git resources.
3841 * Added `git dag` to the available tools.
3842   `git dag` is a node-based DAG history browser.
3843   It doesn't do much yet, but it's been merged so that we can start
3844   building and improving upon it.
3846 Fixes
3847 -----
3848 * Fixed a missing ``import`` when showing `right-click` actions
3849   for unmerged files in the `Repository Status` tool.
3851 * ``git update-index --refresh`` is no longer run every time
3852   ``git cola version`` is run.
3854 * Don't try to watch non-existent directories when using `inotify`.
3856 * Use ``git rev-parse --symbolic-full-name`` plumbing to find
3857   the name of the current branch.
3859 Packaging
3860 ---------
3861 * The ``Makefile`` will now conditionally include a ``config.mak``
3862   file located at the root of the project.  This allows for user
3863   customizations such as changes to the `prefix` variable
3864   to be stored in a file so that custom settings do not need to
3865   be specified every time on the command-line.
3867 * The build scripts no longer require a ``.git`` directory to
3868   generate the ``builtin_version.py`` module.  The release tarballs
3869   now include a ``version`` file at the root of the project which
3870   is used in lieu of having the git repository available.
3871   This allows for ``make clean && make`` to function outside of
3872   a git repository.
3874 * Added maintainer's ``make dist`` target to the ``Makefile``.
3876 * The built-in `simplejson` and `jsonpickle` libraries can be
3877   excluded from ``make install`` by specifying the ``standalone=true``
3878   `make` variable.  For example, ``make standalone=true install``.
3879   This corresponds to the ``--standalone`` option to ``setup.py``.
3882 .. _v1.4.1.1:
3884 v1.4.1.1
3885 ========
3887 Usability, bells and whistles
3888 -----------------------------
3889 * We now use patience diff by default when it is available via
3890   `git diff --patience`.
3892 * Allow closing the `cola classic` tool with `Ctrl+W`.
3894 Fixes
3895 -----
3896 * Fixed an unbound variable error in the `push` dialog.
3898 Packaging
3899 ---------
3900 * Don't include `simplejson` in MANIFEST.in.
3902 * Update desktop entry to read `Cola Git GUI`.
3905 .. _v1.4.1:
3907 v1.4.1
3908 ======
3910 This feature release adds two new features directly from
3911 `git cola`'s github issues backlog.  On the developer
3912 front, further work was done towards modularizing the code base.
3914 Usability, bells and whistles
3915 -----------------------------
3916 * Dragging and dropping patches invokes `git am`
3917   (`#3 <https://github.com/git-cola/git-cola/issues/3>`_)
3919 * A dialog to allow opening or cloning a repository
3920   is presented when `git cola` is launched outside of a git repository.
3921   (`#22 <https://github.com/git-cola/git-cola/issues/22>`_)
3923 * Warn when `push` is used to create a new branch
3924   (`#35 <https://github.com/git-cola/git-cola/issues/35>`_)
3926 * Optimized startup time by removing several calls to `git`.
3929 Portability
3930 -----------
3931 * `git cola` is once again compatible with PyQt 4.3.x.
3933 Developer
3934 ---------
3935 * `cola.gitcmds` was added to factor out git command-line utilities
3937 * `cola.gitcfg` was added for interacting with `git config`
3939 * `cola.models.browser` was added to factor out repobrowser data
3941 * Added more tests
3944 .. _v1.4.0.5:
3946 v1.4.0.5
3947 ========
3949 Fixes
3950 -----
3951 * Fix launching external applications on Windows
3953 * Ensure that the `amend` checkbox is unchecked when switching modes
3955 * Update the status tree when amending commits
3958 .. _v1.4.0.4:
3960 v1.4.0.4
3961 ========
3963 Packaging
3964 ---------
3965 * Fix Lintian warnings
3968 .. _v1.4.0.3:
3970 v1.4.0.3
3971 ========
3973 Fixes
3974 -----
3975 * Fix X11 warnings on application startup
3978 .. _v1.4.0.2:
3980 v1.4.0.2
3981 ========
3983 Fixes
3984 -----
3985 * Added missing 'Exit Diff Mode' button for 'Diff Expression' mode
3986   (`#31 <https://github.com/git-cola/git-cola/issues/31>`_)
3988 * Fix a bug when initializing fonts on Windows
3989   (`#32 <https://github.com/git-cola/git-cola/issues/32>`_)
3992 .. _v1.4.0.1:
3994 v1.4.0.1
3995 ========
3997 Fixes
3998 -----
3999 * Keep entries in sorted order in the `cola classic` tool
4001 * Fix staging untracked files
4002   (`#27 <https://github.com/git-cola/git-cola/issues/27>`_)
4004 * Fix the `show` command in the Stash dialog
4005   (`#29 <https://github.com/git-cola/git-cola/issues/29>`_)
4007 * Fix a typo when loading merge commit messages
4008   (`#30 <https://github.com/git-cola/git-cola/issues/30>`_)
4011 .. _v1.4.0:
4013 v1.4.0
4014 ======
4016 This release focuses on a redesign of the git-cola user interface,
4017 a tags interface, and better integration of the `cola classic` tool.
4018 A flexible interface based on configurable docks is used to manage the
4019 various cola widgets.
4021 Usability, bells and whistles
4022 -----------------------------
4023 * New GUI is flexible and user-configurable
4025 * Individual widgets can be detached and rearranged arbitrarily
4027 * Add an interface for creating tags
4029 * Provide a fallback `SSH_ASKPASS` implementation to prompt for
4030   SSH passwords on fetch/push/pull
4032 * The commit message editor displays the current row/column and
4033   warns when lines get too long
4035 * The `cola classic` tool displays upstream changes
4037 * `git cola --classic` launches `cola classic` in standalone mode
4039 * Provide more information in log messages
4041 Fixes
4042 -----
4043 * Inherit the window manager's font settings
4045 * Miscellaneous PyQt4 bug fixes and workarounds
4047 Developer
4048 ---------
4049 * Removed all usage of Qt Designer `.ui` files
4051 * Simpler model/view architecture
4053 * Selection is now shared across tools
4055 * Centralized notifications are used to keep views in sync
4057 * The `cola.git` command class was made thread-safe
4059 * Less coupling between model and view actions
4061 * The status view was rewritten to use the MVC architecture
4063 * Added more documentation and tests
4066 .. _v1.3.9:
4068 v1.3.9
4069 ======
4071 Usability, bells and whistles
4072 -----------------------------
4073 * Added a `cola classic` tool for browsing the entire repository
4075 * Handle diff expressions with spaces
4077 * Handle renamed files
4079 Portability
4080 -----------
4081 * Handle carat `^` characters in diff expressions on Windows
4083 * Worked around a PyQt 4.5/4.6 QThreadPool bug
4085 Documentation
4086 -------------
4087 * Added a keyboard shortcuts reference page
4089 * Added developer API documentation
4091 Fixes
4092 -----
4093 * Fix the diff expression used when reviewing branches
4095 * Fix a bug when pushing branches
4097 * Fix X11 warnings at startup
4099 * Fix more interrupted system calls on Mac OS X
4102 .. _v1.3.8:
4104 v1.3.8
4105 ======
4107 Usability, bells and whistles
4108 -----------------------------
4109 * Fresh and tasty SVG logos
4111 * Added `Branch Review` mode for reviewing topic branches
4113 * Added diff modes for diffing between tags, branches,
4114   or arbitrary `git diff` expressions
4116 * The push dialog selects the current branch by default.
4117   This is in preparation for `git 1.7.0` where unconfigured `git push`
4118   will refuse to push when run without specifying the remote name
4119   and branch.  See the `git` release notes for more information
4121 * Support `open` and `clone` commands on Windows
4123 * Allow saving cola UI layouts
4125 * Re-enabled `double-click-to-stage` for unmerged entries.
4126   Disabling it for unmerged items was inconsistent, though safer.
4128 * Show diffs when navigating the status tree with the keyboard
4130 Packaging
4131 ---------
4132 * Worked around `pyuic4` bugs in the `setup.py` build script
4134 * Added Mac OSX application bundles to the download page
4137 .. _v1.3.7:
4139 v1.3.7
4140 ======
4142 Subsystems
4143 ----------
4144 * `git difftool` became an official git command in `git 1.6.3`.
4146 * `git difftool` learned `--no-prompt` / `-y` and a corresponding
4147   `difftool.prompt` configuration variable
4149 Usability, bells and whistles
4150 -----------------------------
4151 * Warn when `non-fast-forward` is used with fetch, push or pull
4153 * Allow `Ctrl+C` to exit cola when run from the command line
4155 Fixes
4156 -----
4157 * Support Unicode font names
4159 * Handle interrupted system calls
4161 Developer
4162 ---------
4163 * `PEP-8`-ified more of the cola code base
4165 * Added more tests
4167 Packaging
4168 ---------
4169 * All resources are now installed into `$prefix/share/git-cola`.
4170   Closed Debian bug #519972
4172   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519972
4175 .. _v1.3.6:
4177 v1.3.6
4178 ======
4180 Subsystems
4181 ----------
4182 * Added support for Kompare in `git difftool`
4184 * Added a separate configuration namespace for `git difftool`
4186 * Added the `diff.tool` configuration variable to define the default diff tool
4188 Usability, bells and whistles
4189 -----------------------------
4190 * The stash dialog allows passing the `--keep-index` option to `git stash`
4192 * Amending a published commit warns at commit time
4194 * Simplified the file-across-revisions comparison dialog
4196 * `origin` is selected by default in fetch/push/pull
4198 * Removed the search field from the log widget
4200 * The log window moved into a drawer widget at the bottom of the UI
4202 * Log window display can be configured with
4203   `cola.showoutput` = `{never, always, errors}`.  `errors` is the default.
4205 * `NOTE` -- `cola.showoutput` was removed with the GUI rewrite in 1.4.0.
4207 Developer
4208 ---------
4209 * Improved nose unittest usage
4211 Packaging
4212 ---------
4213 * Added a Windows/msysGit installer
4215 * Included private versions of `simplejson` and `jsonpickle`
4216   for ease of installation and development