models: avoid resetting state in set_worktree()
[git-cola.git] / CHANGES.rst
blob36d111882100c9d28d0fd7dc46242bc035998555
1 .. _v4.0.2:
3 v4.0.2
4 ======
6 Usability, bells and whistles
7 -----------------------------
8 * The Rebase editor (`git-cola-sequence-editor`) now supports multi-select.
9   Use `Shift-{Up,Down}` to select multiple lines and the keyboard hotkeys
10   listed in the `?` dialog to drive the UI.
11   (`#1257 <https://github.com/git-cola/git-cola/pull/1257>`_)
13 * The `$GIT_VISUAL` and `$VISUAL` environment variable are now consulted in addition
14   to `$GIT_EDITOR` and `$EDITOR` when the `gui.editor` configuration is unset.
15   (`#1237 <https://github.com/git-cola/git-cola/pull/1237>`_)
17 * The application window icon is now enabled when running on Wayland.
18   (`#1240 <https://github.com/git-cola/git-cola/pull/1240>`_)
20 * The Status widget now has an "Open Worktree" action.
21   (`#1245 <https://github.com/git-cola/git-cola/pull/1245>`_)
23 * The "Open Using Default Application", "Open Directory",
24   "Open Parent Directory" and "Open Worktree" actions are now available on Windows.
26 * The dialog for opening repositories is now a read-only dialog that omits the
27   ability to create folders and modify the filesystem.
28   (`#1168 <https://github.com/git-cola/git-cola/issues/1168>`_)
30 Fixes
31 -----
32 * Documentation rendering errors that have been fixed.
33   (`#1256 <https://github.com/git-cola/git-cola/pull/1256>`_)
35 * Use of a `~/.config/git-cola/language` file to override the language has been fixed.
36   (`#1246 <https://github.com/git-cola/git-cola/issues/1246>`_)
38 * We no longer write the `cola.spellcheck` configuration value on launch.
39   (`#1238 <https://github.com/git-cola/git-cola/pull/1238>`_)
41 Translations
42 ------------
43 * Updated Spanish translation.
44   (`#1244 <https://github.com/git-cola/git-cola/pull/1244>`_)
46 * Updated Japanese translation.
47   (`#1249 <https://github.com/git-cola/git-cola/pull/1249>`_)
49 Packaging
50 ---------
51 * Building documentation offline is supported again.
52   (`#1250 <https://github.com/git-cola/git-cola/issues/1250>`_)
54 * The Appstream Metadata files were missing in the v4.0.0 release are included again.
55   (`#1254 <https://github.com/git-cola/git-cola/pull/1254>`_)
56   (`#1253 <https://github.com/git-cola/git-cola/issues/1253>`_)
59 .. _v4.0.1:
61 v4.0.1
62 ======
64 Usability, bells and whistles
65 -----------------------------
66 * Double-clicking dock widgets no longer creates sub-windows when the layout is locked.
67   (`#1176 <https://github.com/git-cola/git-cola/issues/1176>`_)
68   (`#1198 <https://github.com/git-cola/git-cola/pull/1198>`_)
70 Fixes
71 -----
72 * We now guard against `locale.getdefaultlocale()` returning `None` in some
73   configurations, notably on macOS if none of 'LC_ALL', 'LC_CTYPE', 'LANG' or 'LANGUAGE'
74   are defined.
75   (`#1234 <https://github.com/git-cola/git-cola/issues/1234>`_)
77 * The preferences dialog has been fixed to properly handle booleans.
78   (`#1235 <https://github.com/git-cola/git-cola/issues/1235>`_)
80 * The `docs/` directory was restructured to avoid missing `setup.py` errors.
81   `share/doc/git-cola` is now a symlink pointing to `docs/`.
82   (`#1230 <https://github.com/git-cola/git-cola/issues/1230>`_)
84 * Message boxes could sometimes display off-screen or using geometry that is larger
85   than the current desktop. Message box sizes are now clamped to the desktop size.
86   (`#1228 <https://github.com/git-cola/git-cola/issues/1228>`_)
89 .. _v4.0.0:
91 v4.0.0
92 ======
94 Breaking Changes
95 ----------------
96 These changes are primarily breaking changes for packagers of Git Cola.
97 For example, Linux distribution and Homebrew package maintainers may need to
98 be aware of these changes.
100 Changes have been made build infrastructure and the resulting filesystem artifacts.
102 * The build system is now Python3-only and has been modernized for PEP-517/518.
103   While Git Cola still builds and runs under Python2, it is no longer officially
104   supported and may stop working in a future release without notice.
105   (`#1201 <https://github.com/git-cola/git-cola/issues/1201>`_)
107 * The `#!/usr/bin/env python` shebang lines in the `git-cola` and `git-dag` wrapper
108   scripts have been updated to use `python3`.
109   (`#1204 <https://github.com/git-cola/git-cola/pull/1204>`_)
111 * The build system was switched to `setuptools` and no longer depends on `distutils`.
112   ``python setup.py {build,install,build_pot,build_mo}`` are no longer provided.
113   Use the https://pypa-build.readthedocs.io/en/stable/installation.html
114   ``python -m build`` tool to generate sdist and wheel distributions,
115   and ``pip install .`` to install Git Cola from source.
116   (`#1204 <https://github.com/git-cola/git-cola/pull/1204>`_)
118 * The `git-cola`, `git-dag` and `git-cola-sequence-editor` commands are now installed
119   using setuptools entry points.
121 * The `bin/` wrapper scripts in the source tree continue to be provided for convenience
122   but they are not the scripts that get installed.
124 * The `qtpy` Python package is no longer installed alongside the `cola` Python package.
126 * The `cola` package is now installed into the standard Python site-packages location.
128 * The `share/git-cola/lib` private Python modules directory no longer exists.
130 * The `NO_VENDOR_LIBS` and `NO_PRIVATE_LIBS` Makefile options are no longer necessary.
132 * The `share/git-cola` filesystem namespace no longer exists. All of cola's package data
133   is distributed alongside the `cola` module as package data.
135 * Building the Sphinx documentation now also requires the `jaraco.packaging` and
136   `rst.linker` packages. See `requirements/requirements-dev.txt` for the package
137   requirement details.
139 Usability, bells and whistles
140 -----------------------------
141 * `Custom UI themes
142   <https://git-cola.readthedocs.io/en/latest/git-cola.html#custom-themes>`_
143   can be used by adding `*.qss` Qt stylesheet files to `~/.config/git-cola/themes/`.
144   (`#1222 <https://github.com/git-cola/git-cola/pull/1222>`_)
145   (`#1226 <https://github.com/git-cola/git-cola/pull/1226>`_)
147 * Git Cola now keeps track of child Browser windows and will close all of them when
148   the main window is closed.
149   (`#1200 <https://github.com/git-cola/git-cola/pull/1200>`_)
151 Fixes
152 -----
153 * Staging conflicted binary files has been fixed to avoid Unicode decoding errors.
154   (`#1189 <https://github.com/git-cola/git-cola/issues/1189>`_)
156 * Ensure that secure permissions are used when creating temporary files.
157   (`#1209 <https://github.com/git-cola/git-cola/pull/1209>`_)
159 * The line numbering in the diff viewer was corrected when displaying merge diffs.
160   (`#1208 <https://github.com/git-cola/git-cola/pull/1208>`_)
162 * Documentation typofixes.
163   (`#1193 <https://github.com/git-cola/git-cola/pull/1193>`_)
165 * Git Cola was revamped to use Qt signals and slots for all of its notifications.
166   This made its notification system more robust.
167   (`#1202 <https://github.com/git-cola/git-cola/pull/1202>`_)
168   (`#1203 <https://github.com/git-cola/git-cola/pull/1203>`_)
169   (`#1205 <https://github.com/git-cola/git-cola/pull/1205>`_)
170   (`#1206 <https://github.com/git-cola/git-cola/pull/1206>`_)
172 Packaging
173 ---------
174 * `vcruntime140.dll` and `msvcp140.dll` are now included in the Windows installation.
175   (`#1207 <https://github.com/git-cola/git-cola/pull/1207>`_)
178 .. _v3.12.0:
180 v3.12.0
181 =======
183 Usability, bells and whistles
184 -----------------------------
185 * The git config guitool action can now be grouped under user-defined menus.
186   This is done by using slash (``/``) delimiters in the action name.
187   Entries before the final slash are treated like submenus inside the
188   top-level ``Actions`` menu.
189   (`#1150 <https://github.com/git-cola/git-cola/issues/1150>`_)
191 * Toolbars now have a full set of icons. The icons follow the system theme
192   and can be configured to display text, just icons, or text and icons.
193   (`#1177 <https://github.com/git-cola/git-cola/pull/1177>`_)
195 * The startup dialog will now open the selected repository when the "enter"
196   key is pressed.
197   (`#1162 <https://github.com/git-cola/git-cola/issues/1162>`_)
199 * ``Shift+S`` will stage selected lines (in addition to ``s``).
200   (`#1187 <https://github.com/git-cola/git-cola/issues/1187>`_)
202 Fixes
203 -----
204 * The vendored qtpy library was patched to retain Python2 compatibility.
206 * The "Unstage" toolbar action was fixed.
207   (`#1178 <https://github.com/git-cola/git-cola/issues/1178>`_)
209 * We now avoid `setWidth(float)` for compatibility with newer Qt versions.
210   (`#1183 <https://github.com/git-cola/git-cola/pull/1183>`_)
212 * Documentation typofixes.
213   (`#1185 <https://github.com/git-cola/git-cola/pull/1185>`_)
215 Translations
216 ------------
217 * Updated Polish translation.
218   (`#1184 <https://github.com/git-cola/git-cola/pull/1184>`_)
220 Development
221 -----------
222 * Git Cola now uses Github Actions for running its continuous integration tests.
223   (`#1179 <https://github.com/git-cola/git-cola/pull/1179>`_)
226 .. _v3.11.0:
228 v3.11.0
229 =======
231 Usability, bells and whistles
232 -----------------------------
233 * The Status tool was improved to better retain selected files when
234   the state changes and the display is refreshed.
235   (`#1130 <https://github.com/git-cola/git-cola/issues/1130>`_)
236   (`#1131 <https://github.com/git-cola/git-cola/pull/1131>`_)
238 * The Diff editor can now stage selected lines for untracked files.
239   Git Cola will detect when a file is untracked and will allow you to
240   partially stage it, just like existing tracked files.
241   (`#1146 <https://github.com/git-cola/git-cola/pull/1146>`_)
242   (`#1084 <https://github.com/git-cola/git-cola/issues/1084>`_)
244 * Diffing of staged files has been implemented for repositories that contain
245   no commits.
246   (`#1149 <https://github.com/git-cola/git-cola/pull/1149>`_)
247   (`#1110 <https://github.com/git-cola/git-cola/issues/1110>`_)
249 * Documentation improvements and typofixes.
250   (`#1163 <https://github.com/git-cola/git-cola/pull/1163>`_)
251   (`#1164 <https://github.com/git-cola/git-cola/pull/1164>`_)
253 Security
254 --------
255 * The `FIPS security mode
256   <https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/FIPS_Mode_-_an_explanation>`_
257   is now supported by Git Cola when running on FIPS-enabled Python
258   (Python 3.9+ or centos8/rhel8's patched Python 3.6).
259   (`#1157 <https://github.com/git-cola/git-cola/issues/1157>`_)
261 Fixes
262 -----
263 * The `argparse` usage was adjusted to remain compatible with older Pythons.
264   (`#1155 <https://github.com/git-cola/git-cola/issues/1155>`_)
266 * The window restoration logic was fixed to properly save/restore settings
267   when different languages are used.
268   (`#1071 <https://github.com/git-cola/git-cola/issues/1071>`_)
269   (`#1161 <https://github.com/git-cola/git-cola/issues/1161>`_)
270   (`#382 <https://github.com/git-cola/git-cola/issues/382>`_)
272 * `git dag` no longer passes floats to `QPen::setWidth()` for better compatibility.
273   (`bz #2014950 <https://bugzilla.redhat.com/show_bug.cgi?id=2014950>`_)
275 Packaging
276 ---------
277 * The Windows installer was slimmed down by removing unused Qt DLLs.
278   (`#1152 <https://github.com/git-cola/git-cola/pull/1152>`_)
281 .. _v3.10.1:
283 v3.10.1
284 =======
286 Fixes
287 -----
288 * Patch release to fix a typo in the Interactive Rebase feature.
290 .. _v3.10:
292 v3.10
293 =====
295 Usability, bells and whistles
296 -----------------------------
297 * The git config reader now supports the `include.path` directive
298   for including config files.
299   (`#1136 <https://github.com/git-cola/git-cola/issues/1136>`_)
300   (`#1137 <https://github.com/git-cola/git-cola/pull/1137>`_)
302 * The dialog for selecting commits now support filtering.
303   (`#1121 <https://github.com/git-cola/git-cola/pull/1121>`_)
305 * The diff editor now wraps long lines by default. The diff options
306   menu can be used to enable/disable line wrapping.
307   (`#1123 <https://github.com/git-cola/git-cola/pull/1123>`_)
309 * Git Cola now honors `core.hooksPath` for configuring custom Git hooks,
310   which was introduced in Git v2.9.
311   (`#1118 <https://github.com/git-cola/git-cola/issues/1118>`_)
313 * A new `Ctrl + Shift + S` hotkey was added for staging/unstaging all
314   files, both modified and untracked.
316 * The `Status` tool now supports `Ctrl + A` for selecting all files and
317   it behaves more predictably when performing operations when multiple
318   categories of files are selected (eg. when both modified and untracked
319   header items are selected).
320   (`#1117 <https://github.com/git-cola/git-cola/issues/1117>`_)
322 Translations
323 ------------
324 * Updated Hungarian translation.
325   (`#1135 <https://github.com/git-cola/git-cola/pull/1135>`_)
327 Fixes
328 -----
329 * The "Interactive Rebase" feature was updated to work with Windows.
331 * `make install-man` was updated to support Sphinx 4.0.
332   (`#1141 <https://github.com/git-cola/git-cola/issues/1141>`_)
334 * `git cola --help-commands` was updated for newer versions of argparse.
335   (`#1133 <https://github.com/git-cola/git-cola/issues/1133>`_)
337 Development
338 -----------
339 * Git Cola can now be started as a Python module.
340   (`#1119 <https://github.com/git-cola/git-cola/pull/1119>`_)
343 .. _v3.9:
345 v3.9
346 ====
348 Usability, bells and whistles
349 -----------------------------
350 * The startup dialog now detects when Recent and Favorite repositories no
351   longer exist on disk, and offers to remove these entries when selected.
352   (`#1089 <https://github.com/git-cola/git-cola/pull/1089>`_)
354 * The startup dialog now includes a simpler and more condensed folder view
355   that can be used for selecting Favorites and Recent repositories.
356   (`#1086 <https://github.com/git-cola/git-cola/pull/1086>`_)
358 * The "Commit" menu now includes an "Undo Last Commit" action.
359   (`#890 <https://github.com/git-cola/git-cola/issues/890>`_)
361 * The "Reset" menu was revamped to expose all of Git's reset modes alongside a
362   new "Restore Worktree" action that updates the worktree using "git read-tree".
363   (`#890 <https://github.com/git-cola/git-cola/issues/890>`_)
365 Translations
366 ------------
367 * Updated Polish translation.
368   (`#1107 <https://github.com/git-cola/git-cola/pull/1107>`_)
370 * Updated Japanese translation.
371   (`#1098 <https://github.com/git-cola/git-cola/pull/1098>`_)
373 * Updated Brazilian translation.
374   (`#1091 <https://github.com/git-cola/git-cola/pull/1091>`_)
376 Packaging
377 ---------
378 * The ``--use-env-python`` option for ``setup.py`` is now Python3 compatible.
379   (`#1102 <https://github.com/git-cola/git-cola/issues/1102>`_)
382 .. _v3.8:
384 v3.8
385 ====
387 Usability, bells and whistles
388 -----------------------------
389 * The submodules widget can now be used to add submodules.
390   Submodules are now updated recursively.
391   (`#534 <https://github.com/git-cola/git-cola/issues/534>`_)
393 * The image diff viewer can now be toggled between text and image modes.
394   This is helpful when, for example, diffing .svg files where it can be useful
395   to see diffs in both an image and text representation.
396   (`#859 <https://github.com/git-cola/git-cola/issues/859>`_)
397   (`#1035 <https://github.com/git-cola/git-cola/pull/1035>`_)
399 * The default `ssh-askpass` username + password dialog included with Git Cola
400   can now toggle between showing and masking the password input field.
401   (`#1069 <https://github.com/git-cola/git-cola/pull/1069>`_)
403 Translations
404 ------------
405 * Updated Polish translation.
406   (`#1076 <https://github.com/git-cola/git-cola/pull/1076>`_)
408 * Updated Hungarian translation.
409   (`#1067 <https://github.com/git-cola/git-cola/pull/1067>`_)
411 Packaging
412 ---------
413 * The `share/appdata` AppStream data was renamed to `share/metainfo`
414   in accordance with `AppStream standard changes from 2016
415   <https://github.com/ximion/appstream/blob/master/NEWS#L1363>`_.
416   (`#1079 <https://github.com/git-cola/git-cola/pull/1079>`_)
418 * The ``cola`` modules are now installed into the Python ``site-packages``
419   directory by default.  This allows distributions to package ``git-cola`` for
420   multiple versions of Python.  See the PACKAGING NOTES section in the README
421   for details about suppressing the installation of the private
422   ``share/git-cola/lib/cola`` modules when building cola.
423   (`#181 <https://github.com/git-cola/git-cola/issues/181>`_)
425 * Git Cola's rebase / sequence editor, formerly known as ``git-xbase`` and
426   installed as ``share/git-cola/bin/git-xbase``, has been renamed to
427   ``git-cola-sequence-editor`` and is now installed into the default
428   ``bin/git-cola-sequence-editor`` executable location to enable external
429   reuse of this general-purpose tool.
431 * A workaround used by the pynsist installer preamble script was obsoleted by
432   `takluyver/pynsist#149 <https://github.com/takluyver/pynsist/pull/149>`_
433   and has now been removed.
434   (`#1073 <https://github.com/git-cola/git-cola/pull/1073>`_)
436 Fixes
437 -----
438 * `git dag` now uses integer widths when initializing its brushes.
439   (`#1080 <https://github.com/git-cola/git-cola/pull/1080>`_)
442 .. _v3.7:
444 v3.7
445 ====
447 Usability, bells and whistles
448 -----------------------------
449 * The ``git-xbase`` rebase editor now includes a file list for filtering
450   the changes displayed in the diff view.
451   (`#1051 <https://github.com/git-cola/git-cola/pull/1051>`_)
453 * The fallback `ssh-askpass` script, which provides the Username/Password
454   login dialog when performing remote operations, previously presented both
455   the username and password input fields with ``***`` asterisks.
456   The dialog now uses asterisks for the password field only.
457   (`#1026 <https://github.com/git-cola/git-cola/pull/1026>`_)
459 * Stashes can now be applied using the `Ctrl + Enter` hotkey, popped with the
460   `Ctrl + Backspace` hotkey, and dropped with the `Ctrl + Shift + Backspace`
461   hotkey when inside the stash dialog.  This enables a keyboard-centric
462   mouse-free workflow when using the stash dialog.
464 * When amending a commit, `git cola` will check whether the commit has been
465   published to a remote branch using ``git branch -r --contains HEAD``.
466   This command can be slow when operating on a repository with many
467   remote branches.  The new `cola.checkpublishedcommits` configuration
468   variable allows you to opt-out of this check, which improves performance
469   when amending a commit.  The settings widget exposes this variable as,
470   "Check Published Commits when Amending".
471   (`#1021 <https://github.com/git-cola/git-cola/issues/1021>`_)
472   (`#1027 <https://github.com/git-cola/git-cola/pull/1027>`_)
474 Translations
475 ------------
476 * Updated Polish translation.
477   (`#1033 <https://github.com/git-cola/git-cola/pull/1033>`_)
479 Fixes
480 -----
481 * ``git-dag.appdata.xml`` was updated to allow network access for author icons.
482   (`#1050 <https://github.com/git-cola/git-cola/pull/1050>`_)
484 * The inotify filesystem monitor now handles
485   `OSError: [Errno 24] Too many open files` errors by disabling inotify.
486   (`#1015 <https://github.com/git-cola/git-cola/issues/1015>`_)
488 * Typos in various documentation files have been fixed.
489   (`#1025 <https://github.com/git-cola/git-cola/pull/1025>`_)
491 * The "Recent Repositories" limit was off by one, and now correctly
492   remembers the configured number of repositories in the menu.
493   (`#1024 <https://github.com/git-cola/git-cola/pull/1024>`_)
495 * The "revert" action in the DAG and other tools now uses
496   ``git revert --no-edit``, which avoids launching an editor
497   when reverting the commit.  Use `Ctrl+m` in the commit message
498   editor after reverting a commit to rewrite its commit message.
499   (`#1020 <https://github.com/git-cola/git-cola/issues/1020>`_)
502 .. _v3.6:
504 v3.6
505 ====
507 Usability, bells and whistles
508 -----------------------------
509 * The remote editor is much faster since it no longer queries
510   remotes, and uses the cached information instead.
511   (`#986 <https://github.com/git-cola/git-cola/issues/986>`_)
513 * Commit message templates can now be loaded automatically by setting
514   ``git config cola.autoloadcommittemplate true``.
515   (`#1013 <https://github.com/git-cola/git-cola/pull/1013>`_)
516   (`#735 <https://github.com/git-cola/git-cola/pull/735>`_)
518 * The UI layout can now be reset back to its initial state by selecting
519   the "Reset Layout" action.  This reverts the layout to the same state
520   as when the app first launched.
521   (`#1008 <https://github.com/git-cola/git-cola/pull/1008>`_)
522   (`#994 <https://github.com/git-cola/git-cola/issues/994>`_)
524 * Files can now be ignored in either the project's `.gitignore`, or in the
525   repository's private local `.git/info/exclude` ignore file.
526   (`#1006 <https://github.com/git-cola/git-cola/pull/1006>`_)
527   (`#1000 <https://github.com/git-cola/git-cola/issues/1000>`_)
529 * New remotes are now selected when they are added in the "Edit Remotes" tool.
530   (`#1002 <https://github.com/git-cola/git-cola/pull/1002>`_)
532 * The "Recent" repositories list is now saved to disk when opening a
533   repository.  Previously, this list was only updated when exiting the app.
534   (`#1001 <https://github.com/git-cola/git-cola/pull/1001>`_)
536 * The bookmarks tool now has a "Delete" option in its right-click menu.
537   (`#999 <https://github.com/git-cola/git-cola/pull/999>`_)
539 * The current repository is no longer listed in the "File/Open Recent" menu.
540   (`#998 <https://github.com/git-cola/git-cola/pull/998>`_)
542 Translations
543 ------------
544 * Updated Hungarian translation.
545   (`#1005 <https://github.com/git-cola/git-cola/pull/1005>`_)
546   (`#1018 <https://github.com/git-cola/git-cola/pull/1018>`_)
548 * Updated Turkish translation.
549   (`#1003 <https://github.com/git-cola/git-cola/pull/1003>`_)
550   (`#1011 <https://github.com/git-cola/git-cola/pull/1011>`_)
552 Fixes
553 -----
554 * Better support for Python 3.8's line buffering modes.
555   (`#1014 <https://github.com/git-cola/git-cola/pull/1014>`_)
557 * The default `ssh-askpass` script now uses a more generic `#!` shebang line.
558   (`#1012 <https://github.com/git-cola/git-cola/pull/1012>`_)
560 * Fetch, push, and pull operations will now refresh the model and display when
561   operations complete.
562   (`#996 <https://github.com/git-cola/git-cola/issues/996>`_)
564 * The branches widget now refreshes its display when changing branches.
565   (`#992 <https://github.com/git-cola/git-cola/pull/992>`_)
567 Packaging
568 ---------
569 * The `share/git-cola/bin/git-xbase` script will now have its `#!` lines
570   updated during installation.
571   (`#991 <https://github.com/git-cola/git-cola/pull/991>`_)
573 Development
574 -----------
575 * The unit tests were made more platform-independent.
576   (`#993 <https://github.com/git-cola/git-cola/pull/993>`_)
579 .. _v3.5:
581 v3.5
582 ====
584 Usability, bells and whistles
585 -----------------------------
586 * Auto-completion for filenames can now be disabled.  This speeds up
587   revision completion when working in large repositories with many files.
588   (`#981 <https://github.com/git-cola/git-cola/pull/981>`_)
590 * The Stash dialog now shows the stash date as a tooltip when hovering
591   over a stashed change.
592   (`#982 <https://github.com/git-cola/git-cola/pull/982>`_)
594 * Qt HiDPI settings are overridden by the `git cola` HiDPI appearance settings.
595   These overrides can now be disabled by selecting the "Disable" mode.
596   This allows users to control Qt's HiDPI settings through environment
597   variables.  Additionally, the "Auto" mode now detects the presence of
598   the Qt HiDPI variables and no longer overrides them when the user has
599   configured their environment explicitly.
600   (`#963 <https://github.com/git-cola/git-cola/issues/963>`_)
602 * Confirmation dialogs can now focus buttons using the Tab key.
603   Previously, the "Y" and "N" keys could be used to confirm or deny
604   using the keyboard, but "Tab" is more familiar.
605   (`#965 <https://github.com/git-cola/git-cola/issues/965>`_)
607 * Error dialogs (for example, when a commit hook fails) will now always
608   show the details.  The details were previously hidden behind a toggle.
609   (`#968 <https://github.com/git-cola/git-cola/issues/968>`_)
611 Translations
612 ------------
613 * Updated Japanese translation.
614   (`#973 <https://github.com/git-cola/git-cola/pull/973>`_)
615   (`#974 <https://github.com/git-cola/git-cola/pull/974>`_)
617 * Updated Simplified Chinese translation.
618   (`#950 <https://github.com/git-cola/git-cola/pull/950>`_)
620 Fixes
621 -----
622 * The filesystem monitor no longer logs that it has been enabled after the
623   inotify watch limit is reached on Linux.
624   (`#984 <https://github.com/git-cola/git-cola/pull/984>`_)
626 * Better unicode robustness.
627   (`#990 <https://github.com/git-cola/git-cola/issues/990>`_)
628   (`#910 <https://github.com/git-cola/git-cola/issues/991>`_)
630 * The "Branches" widget did not always update itself when deleting branches
631   (for example, when inotify is disabled or unavailable).
632   (`#978 <https://github.com/git-cola/git-cola/issues/978>`_)
634 * Non-ascii unicode byte strings are more robustly handled by the log widget.
635   (`#977 <https://github.com/git-cola/git-cola/issues/977>`_)
637 * Non-unicode results from the `gettext` library are more robustly handled.
638   (`#969 <https://github.com/git-cola/git-cola/issues/969>`_)
640 * Launching `git cola` from within a directory that has since been deleted
641   would previously result in a traceback, and is now robustly handled.
642   (`#961 <https://github.com/git-cola/git-cola/issues/961>`_)
644 Packaging
645 ---------
646 * The vendored `qtpy` library was updated to `v1.9`.
649 .. _v3.4:
651 v3.4
652 ====
654 Usability, bells and whistles
655 -----------------------------
656 * The file browser now includes "Blame" in its context menu.
657   (`#953 <https://github.com/git-cola/git-cola/issues/953>`_)
659 * The "Push" action now uses "git push --force-with-lease" when using
660   the "Force" option with Git v1.8.5 and newer.
661   (`#946 <https://github.com/git-cola/git-cola/issues/946>`_)
663 * Updated German translation.
664   (`#936 <https://github.com/git-cola/git-cola/pull/936>`_)
666 * The `Status` widget learned to optionally display file counts in its
667   category headers, and indent the files displayed in each category.
668   (`#931 <https://github.com/git-cola/git-cola/pull/931>`_)
670 * The `Branches` widget can now sort branches by their most recent commit.
671   (`#930 <https://github.com/git-cola/git-cola/pull/930>`_)
673 * `git cola` now includes configurable GUI themes that can be used to style
674   the user interface.  Enable the new themes by configuring `cola.theme`
675   in the preferences window.  See the
676   `cola.theme documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#cola-theme>`_
677   for more details.  (`#924 <https://github.com/git-cola/git-cola/pull/924>`_)
679 * `git cola` now has built-in support for HiDPI displays by enabling
680   Qt's 5.6's `QT_AUTO_SCREEN_SCALE_FACTOR` feature.
681   (`#938 <https://github.com/git-cola/git-cola/issues/938>`_)
683 * `git cola` now uses HiDPI pixmaps when rendering icons, and the builtin
684   icons have been updated to look sharp when displayed in HiDPI.
685   (`#932 <https://github.com/git-cola/git-cola/pull/932>`_)
687 Fixes
688 -----
689 * `git cola`'s "Revert Unstaged Edits" previously checked out from "HEAD^",
690   when in "Amend" mode, and removing staged changes.  This behavior has been
691   changed to always checkout from the index, which avoids data loss.
692   (`#947 <https://github.com/git-cola/git-cola/issues/947>`_)
694 * `git cola` has been updated to work with newer versions of `gnome-terminal`
695   and no longer shell-quotes its arguments when launching `gnome-terminal`.
696   The `cola.terminalshellquote` configuration variable can be set to `true` to
697   get the old behavior, or to handle other terminals that take the command to run
698   as a single string instead of as arguments to `execv()`.
699   (`#935 <https://github.com/git-cola/git-cola/pull/935>`_)
701 * `git dag` now properly handles arbitrary input on Python3.
702   Previously, an exception would be raised when entering `--grep=xxx` where
703   `xxx` is a quoted string with a missing end-quote.
704   (`#941 <https://github.com/git-cola/git-cola/pull/941>`_)
706 Development
707 -----------
708 * The contribution guidelines for contributors has been updated to mention
709   how to regenerate the `*.mo` message files.
710   (`#934 <https://github.com/git-cola/git-cola/pull/934>`_)
713 .. _v3.3:
715 v3.3
716 ====
718 Usability, bells and whistles
719 -----------------------------
720 * `git dag` improved how it renders parent commits.
721   (`#921 <https://github.com/git-cola/git-cola/pull/921>`_)
723 * The `Branches` widget now checks out branches when double-clicked.
724   (`#920 <https://github.com/git-cola/git-cola/pull/920>`_)
726 * The new `Submodules` widget makes it easy to interact with submodules.
727   Additionally, submodules can now be updated using the `Status` widget.
728   (`#916 <https://github.com/git-cola/git-cola/pull/916>`_)
730 * Updated Japanese translation.
731   (`#914 <https://github.com/git-cola/git-cola/pull/914>`_)
733 * The "Open Terminal" action now launches a Git Bash shell on Windows.
734   (`#913 <https://github.com/git-cola/git-cola/pull/913>`_)
736 * New menu actions for updating all submodules.
737   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
739 * The status widget can now update submodules.
740   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
742 * The "Apply Patch" `git cola am` dialog now includes a diff viewer
743   to display the contents of the selected patch.
745 * The "Alt+D" diffstat hotkey now selects the staged/modified/etc.
746   header in the Status widget, which shows the totality of everything
747   that will be committed.
748   (`#771 <https://github.com/git-cola/git-cola/issues/771>`_)
750 * Running "Launch Editor" from the diff editor now opens the editor at the
751   current line.
752   (`#898 <https://github.com/git-cola/git-cola/pull/898>`_)
754 * The textwidth and tabwidth configuration values can now be set
755   per-repository, rather than globally only.
757 * Text entry widgets switched to using a block cursor in `v3.2`.
758   This has been reverted to the original line cursor for consistency
759   with other applications and user expectations.
760   (`#889 <https://github.com/git-cola/git-cola/issues/889>`_)
762 * The "edit at line" feature, used by the "Grep" tool, now supports
763   the Sublime text editor.
764   (`#894 <https://github.com/git-cola/git-cola/pull/894>`_)
766 Fixes
767 -----
768 * Launching external programs has been improved on Windows.
769   (`#925 <https://github.com/git-cola/git-cola/pull/925>`_)
771 * Improve compatibility when using PySide2.
772   (`#912 <https://github.com/git-cola/git-cola/pull/912>`_)
774 * The Diff Editor was not honoring the configured tab width on startup.
775   (`#900 <https://github.com/git-cola/git-cola/issues/900>`_)
777 * The "Delete Files" feature was creating an unreadable display when
778   many files were selected.  Word-wrap the list of files so that the
779   display stays within a sensible size.
780   (`#895 <https://github.com/git-cola/git-cola/issues/895>`_)
782 * Spelling and grammar fixes.
783   (`#915 <https://github.com/git-cola/git-cola/pull/915>`_)
784   (`#891 <https://github.com/git-cola/git-cola/pull/891>`_)
786 Development
787 -----------
788 * The logo was run through `tidy` to give it a consistent style.
789   Some technical issues with the logo were improved.
790   (`#877 <https://github.com/git-cola/git-cola/issues/877>`_)
792 * The entire codebase is now checked by `flake8`, rather than just
793   the module and test directories.  This catches things like
794   the pynsist installer scripts.
795   (`#884 <https://github.com/git-cola/git-cola/issues/884>`_)
796   (`#882 <https://github.com/git-cola/git-cola/issues/882>`_)
797   (`#879 <https://github.com/git-cola/git-cola/pull/879>`_)
799 Packaging
800 ---------
801 * The vendored `qtpy` library was updated to `v1.6`.
803 * The Windows installer's wrapper scripts were missing an import.
804   (`#878 <https://github.com/git-cola/git-cola/issues/878>`_)
807 .. _v3.2:
809 v3.2
810 ====
812 Usability, bells and whistles
813 -----------------------------
814 * The `git cola dag` DAG window now supports `git revert`.
815   (`#843 <https://github.com/git-cola/git-cola/issues/843>`_)
817 * `git stash pop` is now supported by the stash dialog.
818   (`#844 <https://github.com/git-cola/git-cola/issues/844>`_)
820 * The status widget now ensures that each item is visible when selection
821   changes.  Previously, if you scrolled to the right to see the name of
822   a long filename, and then selected a short filename above it, the widget
823   may not have shown the short filename in the viewport.  We now ensure
824   that the filenames are visible when the selection changes.
825   (`#828 <https://github.com/git-cola/git-cola/pull/828>`_)
827 * The `git xbase` rebase editor no longer displays an error when
828   cancelling an interactive rebase.
829   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
831 * The dialog shown when renaming remotes has been simplified.
832   (`#840 <https://github.com/git-cola/git-cola/pull/840>`_)
833   (`#838 <https://github.com/git-cola/git-cola/issues/838>`_)
835 * The help dialog in the `git-xbase` Rebase editor is now scrollable.
836   (`#855 <https://github.com/git-cola/git-cola/issues/855>`_)
838 Translations
839 ------------
840 * Updated Brazilian translation.
841   (`#845 <https://github.com/git-cola/git-cola/pull/845>`_)
843 * Updated Czech translation.
844   (`#854 <https://github.com/git-cola/git-cola/pull/854>`_)
845   (`#853 <https://github.com/git-cola/git-cola/pull/853>`_)
846   (`#835 <https://github.com/git-cola/git-cola/pull/835>`_)
847   (`#813 <https://github.com/git-cola/git-cola/pull/813>`_)
849 * Update Spanish translation.
850   (`#862 <https://github.com/git-cola/git-cola/pull/862>`_)
851   (`#867 <https://github.com/git-cola/git-cola/pull/867>`_)
853 Packaging
854 ---------
855 * The original `#!/usr/bin/env python` shebang lines can now be
856   retained by passing `USE_ENV_PYTHON=1` to `make` when installing.
857   (`#850 <https://github.com/git-cola/git-cola/issues/850>`_)
859 * The Makefile is now resilient to DESTDIR and prefix containing whitespace.
860   (`#858 <https://github.com/git-cola/git-cola/pull/858>`_)
862 * The vendored `qtpy` library was updated to `v1.4.2`.
864 * `python3-distutils` is needed to build cola on Debian.
865   (`#837 <https://github.com/git-cola/git-cola/issues/837>`_)
867 Fixes
868 -----
869 * The "C" key no longer closes the message dialogs, for example the
870   one that is shown when a commit fails its pre-commit hooks.
871   This allows "Ctrl+C" copy to work, rather than closing the dialog.
872   (`#734 <https://github.com/git-cola/git-cola/issues/734>`_)
874 * Dock widgets sizes are now properly saved and restored when the main
875   window is maximized.
876   (`#848 <https://github.com/git-cola/git-cola/issues/848>`_)
878 * The spellcheck feature was broken under Python3.
879   (`#857 <https://github.com/git-cola/git-cola/issues/857>`_)
881 * A regression when saving stashes was fixed.
882   (`#847 <https://github.com/git-cola/git-cola/issues/847>`_)
884 * Diffing image files was not updating the available context menus,
885   which prevented the "Stage" action from being present in the menu.
886   (`#841 <https://github.com/git-cola/git-cola/issues/841>`_)
888 * `git cola` now detects when `git lfs uninstall` has been run.  This allows
889   you to re-initialize "Git LFS" in an existing repository where it had been
890   previously uninstalled.
891   (`#842 <https://github.com/git-cola/git-cola/issues/842>`_)
893 * Custom color values that did not contain any hexadecimal digits in the
894   `a-f` range were being converted into integers by the config reader.  This
895   then caused the configured colors to be ignored.
897   These color values are now interpreted correctly.  Additionally, color
898   values can now use an optional HTML-like `#` prefix.
900   Example `.gitconfig` snippet::
902     [cola "color"]
903         text = "#0a0303"
905   (`#836 <https://github.com/git-cola/git-cola/pull/836>`_)
906   (`#849 <https://github.com/git-cola/git-cola/issues/849>`_)
908 * We now display an error message graphically when `Git` is not installed.
909   Previously, the message went to stderr only.
910   (`#830 <https://github.com/git-cola/git-cola/issues/830>`_)
912 * Changing diff options was causing resulting in an exception.
913   (`#833 <https://github.com/git-cola/git-cola/issues/833>`_)
914   (`#834 <https://github.com/git-cola/git-cola/pull/834>`_)
916 * The DAG window now updates itself when branches and tags are created.
917   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
919 * The user's `$PATH` environment variable can now contain utf-8
920   encoded paths.  Previously, launching external commands could
921   lead to tracebacks.
922   (`#807 <https://github.com/git-cola/git-cola/issues/807>`_)
924 * Git Cola development sandboxes can now be stored on utf-8 encoded
925   filesystem paths.  Previously, the interactive rebase feature
926   could be broken when running in that environment.
927   (`#825 <https://github.com/git-cola/git-cola/issues/825>`_)
929 * The log window now uses an ISO-8601 timestamp, which
930   avoids localized output in the log window.
931   (`#817 <https://github.com/git-cola/git-cola/issues/817>`_)
933 Development
934 -----------
935 * The code base has been thoroughly sanitized using `pylint`, and
936   travis is now running pylint over the entire project.
938 * Miscellaneous improvements and code improvements.
939   (`#874 <https://github.com/git-cola/git-cola/issues/874>`_)
942 .. _v3.1:
944 v3.1
945 ====
947 Usability, bells and whistles
948 -----------------------------
949 * The "Browser" widget learned to rename files using "git mv".
950   (`#239 <https://github.com/git-cola/git-cola/issues/239>`_)
952 * The "Diff" widget learned to diff images.  Side-by-side and pixel diff
953   modes allow you to inspect changes to common images formats.
954   (`#444 <https://github.com/git-cola/git-cola/issues/444>`_)
955   (`#803 <https://github.com/git-cola/git-cola/pull/803>`_)
957 * Git LFS and Git Annex are natively supported by the image diff viewer.
959 * Git Annex operations are now included. `git annex init` can be performed on
960   repositories, and `git annex add` can be run on untracked files from the
961   status widget.  Install `git-annex` to activate this feature.
963 * Git LFS operations are now included. `git lfs install` can be performed on
964   repositories, and `git lfs track` can be run on untracked files from the
965   status widget.  Install `git-lfs` to activate this feature.
967 * The "Stash" tool learned to stash staged changes only.  Select the
968   "Stage Index" option and only staged changes will be stashed away.
969   (`#413 <https://github.com/git-cola/git-cola/issues/413>`_)
971 * The "Stash" tool learned to use vim-like navigation keyboard shortcuts,
972   shows error messages when things go wrong, and now saves the "Stash Index"
973   and "Keep Index" options across sessions.
975 * The Edit menu's "Copy" and "Select All" actions now forward to either the
976   diff, status, recent, or favorites widgets, based on which widget has focus.
978 * The "File" and "Edit" menu can now be activated using `Alt-{f,e}` hotkeys.
979   (`#759 <https://github.com/git-cola/git-cola/issues/759>`_)
981 * It was easy to accidentally trigger the first action in the `Status` tool's
982   context menu when using a quick right-click to bring up the menu.
983   A short sub-second delay was added to ensure that the top-most action is not
984   triggered unless enough time has passed.  This prevents accidental
985   activation of the first item (typically "Stage" or "Unstage") without
986   burdening common use cases.
987   (`#755 <https://github.com/git-cola/git-cola/pull/755>`_)
988   (`#643 <https://github.com/git-cola/git-cola/issues/643>`_)
990 * The "Ctrl+S" hotkey now works for the header items in the Status tool.
991   Selected the "Modified" header item and activating the "Stage" hotkey,
992   for example, will stage all modified files.  This works for the "Staged",
993   "Modified", and "Untracked" headers.  This is not enabled for the
994   "Unmerged" header by design.
995   (`#772 <https://github.com/git-cola/git-cola/issues/772>`_)
997 * The list of "Recent" repositories previously capped the number of
998   repositories shown to 8 repositories.  This can be set to a higher
999   value by setting the `cola.maxrecent` configuration variable.
1000   (`#752 <https://github.com/git-cola/git-cola/issues/752>`_)
1002 * The "Create Branch" dialog now prevents invalid branch names.
1003   (`#765 <https://github.com/git-cola/git-cola/issues/765>`_)
1005 * Updated Turkish translation.
1006   (`#756 <https://github.com/git-cola/git-cola/pull/756>`_)
1008 * Updated Ukrainian translation.
1009   (`#753 <https://github.com/git-cola/git-cola/pull/753>`_)
1011 * Updated German translation.
1012   (`#802 <https://github.com/git-cola/git-cola/pull/802>`_)
1014 * Updated Czech translation
1015   (`#792 <https://github.com/git-cola/git-cola/pull/792>`_)
1016   (`#806 <https://github.com/git-cola/git-cola/pull/806>`_)
1018 * The window title can be configured to not display the absolute path of the
1019   repository.
1020   (`#775 <https://github.com/git-cola/git-cola/issues/775>`_)
1022 * The "Edit Remotes" editor learned to edit remote URLS.
1024 * Bare repositories can now be created by selecting the
1025   "New Bare Repository..." action from the `File` menu.
1027 * The "Branches" widget learned to configure upstream branches.
1029 * A new `git cola clone` sub-command was added for cloning repositories.
1031 Packaging
1032 ---------
1033 * The vendored `qtpy` library was updated to `v1.3.1`.
1035 * The macOS installation was made simpler for better compatibility with
1036   Homebrew.
1037   (`#636 <https://github.com/git-cola/git-cola/issues/636>`_)
1039 * The Windows installer is now much simpler.  Git Cola now bundles
1040   Python and PyQt5, so users need only install the "Git for Windows"
1041   and "Git Cola" installers to get things working.
1043 Fixes
1044 -----
1045 * Uninitialized difftool errors will now be displayed graphically.
1046   They were previously going to the shell.
1047   (`#457 <https://github.com/git-cola/git-cola/issues/457>`_)
1049 * Translations marked "fuzzy" will no longer be used when translating strings.
1050   (`#782 <https://github.com/git-cola/git-cola/issues/782>`_)
1052 * Deleted unmerged files will now correctly use a deleted icon.
1053   (`#479 <https://github.com/git-cola/git-cola/issues/479>`_)
1055 * The `Ctrl+C` "Copy" hotkey on the diff viewer has been fixed.
1056   (`#767 <https://github.com/git-cola/git-cola/issues/767>`_)
1058 * The "Create Tag" dialog did not correctly handle the case when a signed
1059   tag is requested, but no message is provided, and the user chooses to
1060   create an unannotated tag instead.  This convenience fallback will now
1061   properly create an unsigned, unannotated tag.
1062   (`#696 <https://github.com/git-cola/git-cola/issues/696>`_)
1064 * `.gitconfig` and `.git/config` values editable by the Preferences dialog
1065   (aka `git cola config`) will now get unset when set to an empty value.
1066   For example, setting a different `user.email` in the current repository,
1067   followed by a subsequent emptying of that field, would previously result in
1068   an empty string getting stored in the config.  This has been fixed so that
1069   the value will now get unset in the config instead.
1070   (`#406 <https://github.com/git-cola/git-cola/issues/406>`_)
1072 * Spelling and typofixes.
1073   (`#748 <https://github.com/git-cola/git-cola/pull/748>`_)
1075 * `core.commentChar` is now honored when set in the local repository
1076   `.git/config`.
1077   (`#766 <https://github.com/git-cola/git-cola/issues/766>`_)
1079 * The log window was using a format string that did not display
1080   correctly in all locales.  A locale-aware format is now used.
1081   (`#800 <https://github.com/git-cola/git-cola/pull/800>`_)
1083 * The dialog displayed when prompting for a reference could sometimes
1084   lose focus.
1085   (`#804 <https://github.com/git-cola/git-cola/pull/804>`_)
1088 .. _v3.0:
1090 v3.0
1091 ====
1093 Usability, bells and whistles
1094 -----------------------------
1095 * Updated Simplified Chinese translation.
1096   (`#726 <https://github.com/git-cola/git-cola/pull/726>`_)
1098 * Updated Ukrainian translation.
1099   (`#723 <https://github.com/git-cola/git-cola/pull/723>`_)
1101 * New Czech translation.
1102   (`#736 <https://github.com/git-cola/git-cola/pull/736>`_)
1103   (`#737 <https://github.com/git-cola/git-cola/pull/737>`_)
1104   (`#740 <https://github.com/git-cola/git-cola/pull/740>`_)
1105   (`#743 <https://github.com/git-cola/git-cola/pull/743>`_)
1107 * The "name" field in the "Create Tag" dialog now includes autocompletion,
1108   which makes it easy to see which tags currently exist.
1110 * `git cola` now has configurable toolbars.  Use the `View -> Add toolbar`
1111   menu item to add a toolbar.
1113 * Setting `cola.expandtab` to `true` will now expand tabs into spaces
1114   in the commit message editor.  The number of spaces to insert is determined
1115   by consulting `cola.tabwidth`, which defaults to `8`.
1117 * The "Copy SHA-1" hotkey is now `Alt + Ctrl + C`, to avoid clobbering the
1118   ability to copy text from the DAG window.
1119   (`#705 <https://github.com/git-cola/git-cola/pull/705>`_)
1121 * The "Prepare Commit Message" action can now be invoked via the
1122   `Ctrl+Shift+Return` shortcut.
1123   (`#707 <https://github.com/git-cola/git-cola/pull/707>`_)
1125 * The `Branches` pane now has a filter field that highlights branches whose
1126   names match the string entered into its text field.
1127   (`#713 <https://github.com/git-cola/git-cola/pull/713>`_)
1129 * Actions that are triggered in response to button presses were being
1130   triggered when the button was pressed, rather than when it was released,
1131   which was a usability flaw.  All buttons now respond when clicked
1132   rather than when pressed.
1133   (`#715 <https://github.com/git-cola/git-cola/pull/715>`_)
1135 * The DAG window will now only refresh when object IDs change.
1136   Previously, the DAG would redraw itself in response to inotify events,
1137   such as filesystem operations, which was disruptive when inspecting a large
1138   diff in its diff viewer.  The DAG will now only redraw when the object IDs
1139   corresponding to its query input changes.  Furthermore, when redrawing, the
1140   scrollbar positions are retained to minimize disruption to the viewport
1141   contents.
1142   (`#620 <https://github.com/git-cola/git-cola/issues/620>`_)
1143   (`#724 <https://github.com/git-cola/git-cola/issues/724>`_)
1145 * The "About" dialog now includes the SHA-1 where Git Cola was built.
1146   (`#530 <https://github.com/git-cola/git-cola/issues/530>`_)
1148 * The "Status" widget now has "Copy Leading Path to Clipboard" and
1149   "Copy Basename to Clipboard" actions.
1150   (`#435 <https://github.com/git-cola/git-cola/issues/435>`_)
1151   (`#436 <https://github.com/git-cola/git-cola/issues/436>`_)
1153 * The "Status" widget now supports custom "Copy ... to Clipboard" actions.
1154   (`#437 <https://github.com/git-cola/git-cola/issues/437>`_)
1156 * The main menu now has an "Edit" menu.
1157   (`#725 <https://github.com/git-cola/git-cola/issues/725>`_)
1159 * `git dag` learned to checkout commits into a detached HEAD state.
1160   (`#698 <https://github.com/git-cola/git-cola/issues/698>`_)
1162 * The `status` widget's context menus now omit actions selection-dependent
1163   actions when no file is selected.
1164   (`#731 <https://github.com/git-cola/git-cola/pull/731>`_)
1166 * The startup dialog now focuses the repository list so that repositories
1167   can be selected with the keyboard without mouse intervention.
1168   (`#741 <https://github.com/git-cola/git-cola/issues/741>`_)
1170 Fixes
1171 -----
1172 * `git dag` now prevents nodes from overlapping in more situations.
1173   (`#689 <https://github.com/git-cola/git-cola/pull/689>`_)
1175 * Adding untracked Git submodule repo directories previously ran
1176   `git add submodule/` but we now call `git add submodule` without
1177   the trailing slash (`/`) to avoid staging files that belong to the
1178   submodule (which is possibly a `git` bug).  By working around the
1179   buggy behavior we allow users to recover by issuing the appropriate
1180   `git submodule add` command to properly register the submodule.
1181   (`#681 <https://github.com/git-cola/git-cola/pull/681>`_)
1183 * We now avoid `git for-each-ref --sort=version:refname` on versions
1184   of `git` older than `v2.7.0`.  Previously we only avoided it for
1185   versions older than `v2.0.0`, which was a mistake.
1186   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
1188 * The error message displayed when `git` is not installed has been fixed.
1189   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
1191 * Adding new remotes was silently broken.
1192   (`#684 <https://github.com/git-cola/git-cola/issues/684>`_)
1193   (`#685 <https://github.com/git-cola/git-cola/pull/685>`_)
1195 * The repo selection dialog had errors during startup when the
1196   `cola.refreshonfocus` feature was enabled, as reported on Ubuntu 16.04.
1197   (`#690 <https://github.com/git-cola/git-cola/issues/690>`_)
1199 * Restored support for PyQt 4.6 (Centos 6.8)
1200   (`#692 <https://github.com/git-cola/git-cola/issues/692>`_)
1202 * Switching repositories now resets the "Amend Mode" and other settings
1203   when switching.
1204   (`#710 <https://github.com/git-cola/git-cola/issues/710>`_)
1206 * `git rebase` error messages now displayed when rebasing fails or stops
1207   via the standalone `git cola rebase` front-end.
1208   (`#721 <https://github.com/git-cola/git-cola/issues/721>`_)
1210 * `git cola` learned to stage broken symlinks.
1211   (`#727 <https://github.com/git-cola/git-cola/issues/727>`_)
1213 * The "View History" feature in the `Browser` tool was fixed, and now
1214   disambiguates between refs and paths.
1215   (`#732 <https://github.com/git-cola/git-cola/issues/732>`_)
1217 * The diff editor now has better support for files with CRLF `\r\n`
1218   line endings.
1219   (`#730 <https://github.com/git-cola/git-cola/issues/730>`_)
1221 * `cola.inotify` in a repo-local config is now honored
1222   when `git cola` is launched from a desktop entry (`git cola --prompt`).
1223   (`#695 <https://github.com/git-cola/git-cola/issues/695>`_)
1226 .. _v2.11:
1228 v2.11
1229 =====
1231 Usability, bells and whistles
1232 -----------------------------
1233 * New Ukrainian translation.
1234   (`#670 <https://github.com/git-cola/git-cola/pull/670>`_)
1235   (`#672 <https://github.com/git-cola/git-cola/pull/672>`_)
1237 * New and improved French translations.
1239 * The new `Branches` widget makes it easier to checkout, merge, push,
1240   and pull branches from a single interface.
1242 * `git cola` now includes a dark icon theme.  The dark icon theme can be
1243   activated either by setting the `GIT_COLA_ICON_THEME` environment variable
1244   to `dark`, by configuring `cola.icontheme` to `dark`, or by specifying
1245   `--icon-theme=dark` on the command line.
1246   (`#638 <https://github.com/git-cola/git-cola/pull/638>`_)
1248 * Autocompletion was added to the `Fetch`, `Push`, and `Pull` dialogs.
1250 * The commit message editor now remembers the "Spellcheck" setting
1251   after exiting.
1252   (`#645 <https://github.com/git-cola/git-cola/pull/645>`_)
1254 * `git dag` now uses an improved algorithm for laying out the graph,
1255   which avoids collisions under certain graph configurations, and
1256   avoids overlapping tag with commits.
1257   (`#648 <https://github.com/git-cola/git-cola/pull/648>`_)
1258   (`#651 <https://github.com/git-cola/git-cola/pull/651>`_)
1259   (`#654 <https://github.com/git-cola/git-cola/pull/654>`_)
1260   (`#656 <https://github.com/git-cola/git-cola/pull/656>`_)
1261   (`#659 <https://github.com/git-cola/git-cola/pull/659>`_)
1263 * `git dag` now remembers its column sizes across sessions.
1264   (`#674 <https://github.com/git-cola/git-cola/issues/674>`_)
1266 * `Grep` now shows a preview of the selected file's content in a split window
1267   below the grep results.
1269 * `Grep` now includes line numbers in the preview pane's output.
1271 * `Edit Remotes` now remembers its window settings after exiting.
1273 * `Diff` now has an option to display line numbers in the editor.
1274   (`#136 <https://github.com/git-cola/git-cola/issues/136>`_)
1276 * `Amend Last Commit` can now be triggered via the `Commit` menu in addition
1277   to the commit message editor's options.
1278   (`#640 <https://github.com/git-cola/git-cola/issues/640>`_)
1280 * The `File Browser` tool was made much faster and can now operate on
1281   much larger repositories.
1282   (`#499 <https://github.com/git-cola/git-cola/issues/499>`_)
1284 * A new "turbo" mode was added that allows you to opt-out of operations
1285   that can slow `git cola` on large repositories.  The turbo mode is
1286   enabled by configuring `git config cola.turbo true`.  Turbo mode
1287   disables the background loading of Git commit messages and other
1288   details in the `File Browser` widget.
1290 * A new GitIgnore dialog allows adding custom gitignore patterns.
1291   (`#653 <https://github.com/git-cola/git-cola/pull/653>`_)
1293 * The spellchecker in `git cola` can now use an additional dictionary
1294   by configuring `cola.dictionary` to the path to a file containing
1295   a newline-separated list of words.
1296   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
1298 * The stash, export patches, diff, and gitignore dialogs now remember
1299   their window sizes.
1301 * A new `git cola recent` sub-command was added for finding recently
1302   edited files.
1304 * The `Fetch` dialog now allows pruning remote branches.
1305   (`#639 <https://github.com/git-cola/git-cola/issues/639>`_)
1306   (`#680 <https://github.com/git-cola/git-cola/pull/680>`_)
1308 Fixes
1309 -----
1310 * `git cola`'s spellchecker now supports the new `dict-common` filesystem
1311   layout, and prefers the `/usr/share/dict/cracklib-small` file over the
1312   `/usr/share/dict/words` provided on older distributions.
1313   This makes the spellchecker compatible with Arch, which does not provide
1314   a `words` symlink like Debian.
1315   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
1317 * Properly handle the case where an existing file is untracked using
1318   the File Browser.
1320 * Fix a quirk where the "Create Branch" dialog sometimes required clicking
1321   twice on the radio buttons.
1322   (`#662 <https://github.com/git-cola/git-cola/pull/662>`_)
1324 * Fixed a focus issue to ensure that "Push", "Fetch", and "Pull" can
1325   be executed with the press of a single enter key after being shown.
1326   (`#661 <https://github.com/git-cola/git-cola/issues/661>`_)
1328 * Committing is now allowed in when resolving a merge results in no
1329   changes.  This state was previously prevented by the commit message editor,
1330   which prevented users from resolving merges that result in no changes.
1331   (`#679 <https://github.com/git-cola/git-cola/pull/679>`_)
1333 * The filesystem monitor would sometimes emit backtraces when directories
1334   are modified.  This has been fixed.
1335   (`bz #1438522 <https://bugzilla.redhat.com/show_bug.cgi?id=1438522>`_)
1337 * Absolute paths are now returned when querying for `.git`-relative paths
1338   from within a submodule, which uses `.git`-files.
1339   This fixes launching `git cola` from within a subdirectory of a submodule.
1340   (`#675 <https://github.com/git-cola/git-cola/pull/675>`_)
1343 .. _v2.10:
1345 v2.10
1346 =====
1348 Usability, bells and whistles
1349 -----------------------------
1350 * `git cola` can now invoke the `.git/hooks/cola-prepare-commit-msg`
1351   hook to update the commit message.  This hook takes the same parameters
1352   as Git's `prepare-commit-message` hook.  The default path to this hook
1353   can be overridden by setting the `cola.prepareCommitMessageHook`
1354   configuration variable.
1355   (`Documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#prepare-commit-message>`_)
1357 * `git cola diff` (and the corresponding `Diff` menu actions) can now
1358   launch difftool with the standard `Ctrl+D` hotkey.  The `Ctrl+E` hotkey was
1359   also added for launching an editor.
1361 * Traditional Chinese (Taiwan) translation updates.
1363 Fixes
1364 -----
1365 * `git cola` now works when installed in non-ascii, utf8-encoded paths.
1366   (`#629 <https://github.com/git-cola/git-cola/issues/629>`_)
1368 * Styling issues that caused black backgrounds in various widgets when using
1369   PyQ5 on Mac OS X have been fixed.
1370   (`#624 <https://github.com/git-cola/git-cola/issues/624>`_)
1372 * The "Open Recent" menu action was broken and has been fixed.
1373   (`#634 <https://github.com/git-cola/git-cola/issues/634>`_)
1375 * Exiting `git cola` with a maximized main window would hang when reopened
1376   on Linux.
1377   (`#641 <https://github.com/git-cola/git-cola/issues/641>`_)
1379 Packaging
1380 ---------
1381 * `appdata.xml` files are now provided at
1382   `share/appdata/git-cola.xml` and `share/appdata/git-dag.xml`
1383   for use by the Linux software gallery.
1384   (`#627 <https://github.com/git-cola/git-cola/pull/627>`_)
1385   (`Appdata <https://people.freedesktop.org/~hughsient/appdata/>`_)
1388 .. _v2.9.1:
1390 v2.9.1
1391 ======
1393 Fixes
1394 -----
1395 * The "Open Recent" menu was updated to new bookmarks format.
1396   (`#628 <https://github.com/git-cola/git-cola/issues/628>`_)
1399 .. _v2.9:
1401 v2.9
1402 ====
1404 Usability, bells and whistles
1405 -----------------------------
1406 * New Polish translation thanks to Łukasz Wojniłowicz
1407   (`#598 <https://github.com/git-cola/git-cola/pull/598>`_)
1409 * The `Bypass Commit Hooks` feature now disables itself automatically
1410   when a new commit is created.  The new behavior turns the option into a
1411   single-use flag, which helps prevent users from accidentally leaving it
1412   active longer than intended.
1413   (`#595 <https://github.com/git-cola/git-cola/pull/595>`_)
1415 * `git dag` learned to launch an external diff viewer on selected commits.
1416   The standard `Ctrl+D` shortcut can be used to view diffs.
1417   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1419 * `git dag` learned to launch directory diffs via `git difftool --dir-diff`.
1420   The `Ctrl+Shift+D` shortcut launches difftool in directory-diff mode.
1421   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1423 * Items in the "Favorites" list can now be renamed, which makes it
1424   easier to differentiate between several checkouts of the same repository.
1425   (`#599 <https://github.com/git-cola/git-cola/issues/599>`_)
1426   (`#601 <https://github.com/git-cola/git-cola/pull/601>`_)
1428 * The startup screen now includes a logo and `git cola` version information.
1429   (`#526 <https://github.com/git-cola/git-cola/issues/526>`_)
1431 * The `About` page was revamped to contain multiple tabs.  A new tab was added
1432   that provides details about `git cola`''s dependencies.  New tabs were also
1433   added for giving credit to `git cola`'s authors and translators.
1435 * The `About` page can now be accessed via `git cola about`.
1437 * The "Fast-forward only" and "No fast-forward" options supported by
1438   `git pull` are now accessible via `git cola pull`.
1440 * Doing a forced push no longer requires selecting the remote branch.
1441   (`#618 <https://github.com/git-cola/git-cola/pull/618>`_)
1443 * `git cola push` now has an option to suppress the prompt that is shown
1444   when pushing would create new remote branches.
1445   (`#605 <https://github.com/git-cola/git-cola/issues/605>`_)
1447 * `git dag` now shows commit messages in a more readable color.
1448   (`#574 <https://github.com/git-cola/git-cola/issues/574>`_)
1450 * `git cola browse` and the `status` widget learned to launch the OS-specified
1451   default action for a file.  When used on directories via `git cola browse`,
1452   or when "Open Parent Directory" is used on files, the OS-specified
1453   file browser will typically be used.
1455 * `git cola browse` and the `status` widget learned to launch terminals.
1457 Fixes
1458 -----
1459 * `git cola browse` was not updating when expanding items.
1460   (`#588 <https://github.com/git-cola/git-cola/issues/588>`_)
1462 * Typofixes in comments, naming, and strings have been applied.
1463   (`#593 <https://github.com/git-cola/git-cola/pull/593>`_)
1465 * The inotify and win32 filesystem monitoring no longer refreshes
1466   when updates are made to ignored files.
1467   (`#517 <https://github.com/git-cola/git-cola/issues/517>`_)
1468   (`#516 <https://github.com/git-cola/git-cola/issues/516>`_)
1470 * The `Refresh` button on the actions panel no longer raises an
1471   exception when using PyQt5.
1472   (`#604 <https://github.com/git-cola/git-cola/issues/604>`_)
1474 * Fixed a typo in the inotify backend that is triggered when files are removed.
1475   (`#607 <https://github.com/git-cola/git-cola/issues/607>`_)
1477 * Fixed a typo when recovering from a failed attempt to open a repository.
1478   (`#606 <https://github.com/git-cola/git-cola/issues/606>`_)
1480 * `git dag` now properly updates itself when launched from the menubar.
1481   (`#613 <https://github.com/git-cola/git-cola/pull/613>`_)
1483 * If git-cola is invoked on Windows using `start pythonw git-cola`,
1484   a console window will briefly flash on the screen each time
1485   `git cola` invokes `git`.  The console window is now suppressed.
1487 * We now avoid some problematic Popen flags on Windows which were
1488   breaking the `git rebase` feature on Windows.
1490 * The `Save` button in `git dag`'s "Grab File..." feature now properly
1491   prompts for a filename when saving files.
1492   (`#617 <https://github.com/git-cola/git-cola/pull/617>`_)
1494 Development
1495 -----------
1496 * The `qtpy` symlink in the source tree has been removed to allow for easier
1497   development on Windows.
1498   (`#626 <https://github.com/git-cola/git-cola/issues/626>`_)
1501 .. _v2.8:
1503 v2.8
1504 ====
1506 Usability, bells and whistles
1507 -----------------------------
1508 * `git cola push` learned to configure upstream branches.
1509   (`#563 <https://github.com/git-cola/git-cola/issues/563>`_)
1511 Fixes
1512 -----
1513 * The diffstat view is now properly updated when notifications are
1514   received via inotify filesystem monitoring.
1515   (`#577 <https://github.com/git-cola/git-cola/issues/577>`_)
1517 * Python3 with PyQt5 had a bug that prevented `git cola` from starting.
1518   (`#589 <https://github.com/git-cola/git-cola/pull/589>`_)
1521 .. _v2.7:
1523 v2.7
1524 ====
1526 Fixes
1527 -----
1529 * When repositories stored in non-ASCII, UTF-8-encoded filesystem paths
1530   were operated upon with `LC_ALL=C` set in the environment, unicode errors
1531   would occur when using `python2`.  `git cola` was made more robust and will
1532   now operate correctly within this environment.
1533   (`#581 <https://github.com/git-cola/git-cola/issues/581>`_)
1535 * Support for the `GIT_WORK_TREE` environment variable was fixed.
1536   (`#582 <https://github.com/git-cola/git-cola/pull/582>`_)
1538 Development
1539 -----------
1541 * The `unittest.mock` module is now used instead of the original `mock` module
1542   when running the `git cola` test suite using Python3.
1543   (`#569 <https://github.com/git-cola/git-cola/issues/569>`_)
1545 Packaging
1546 ---------
1548 * `git cola` is now compatible with *PyQt5*, *PyQt4*, and *Pyside*.
1549   `git cola` previously supported *PyQt4* only, but will now use whichever
1550   library is available.  Users are not required to upgrade at this time,
1551   but *PyQt5* support can be enabled anytime by making its python
1552   modules available.
1553   (`#232 <https://github.com/git-cola/git-cola/issues/232>`_)
1555   *NOTE*: We do not yet recommend using *PyQt5* because there are known
1556   exit-on-segfault bugs in *Qt5* that have not yet been addressed.
1557   `git cola` is sensitive to this bug and is known to crash on exit
1558   when using `git dag` or the interactive rebase feature on *PyQt5*.
1560   https://bugreports.qt.io/browse/QTBUG-52988
1562   *PyQt4* is stable and there are no known issues when using it so
1563   we recommend using it until the Qt5 bugs have been resolved.
1565 * `git cola` now depends on *QtPy* and includes a bundled copy of the
1566   `qtpy` library.  If you are packaging `git cola` and would prefer to use
1567   `qtpy` from your distribution instead of the built-in version then use
1568   `make NO_VENDOR_LIBS=1` when building `git cola`.  This will prevent
1569   vendored libraries from being installed.
1572 .. _v2.6:
1574 v2.6
1575 ====
1577 Usability, bells and whistles
1578 -----------------------------
1580 * A new "Reset" sub-menu provides access to running "git reset --mixed"
1581   when resetting branch heads and "git reset  --merge" when resetting
1582   worktrees.
1583   (`#542 <https://github.com/git-cola/git-cola/issues/542>`_)
1585 * `git cola` now supports linked worktrees, i.e. worktrees created by
1586   `git worktree`.
1587   (`#554 <https://github.com/git-cola/git-cola/issues/554>`_)
1589 Fixes
1590 -----
1592 * Diff highlighting is now robust to the user having
1593   diff.supressBlankEmpty=true in their git config.
1594   (`#541 <https://github.com/git-cola/git-cola/issues/541>`_)
1596 * The filesystem monitor now properly handles repositories that use
1597   `.git`-files, e.g. when using submodules.
1598   (`#545 <https://github.com/git-cola/git-cola/issues/545>`_)
1599   (`#546 <https://github.com/git-cola/git-cola/pulls/546>`_)
1601 * Per-repository git configuration is now properly detected when launching
1602   `git cola` from an application launcher.
1603   (`#548 <https://github.com/git-cola/git-cola/issues/548>`_)
1605 * `git cola` now cleans up after itself immediately to avoid leaving behind
1606   empty `/tmp/git-cola-XXXXXX` directories when the user uses `Ctrl+C`
1607   to quit the app.
1608   (`#566 <https://github.com/git-cola/git-cola/issues/566>`_)
1610 Packaging
1611 ---------
1613 * It is now possible to install `git cola` to and from utf8-encoded filesystem
1614   paths.  Previously, Python's stdlib would throw an encoding error during
1615   installation.  We workaround the stdlib by forcing python2 to use utf-8,
1616   thus fixing assumptions in the stdlib library code.
1617   (`#551 <https://github.com/git-cola/git-cola/issues/551>`_)
1620 .. _v2.5:
1622 v2.5
1623 ====
1625 Usability, bells and whistles
1626 -----------------------------
1628 * The icon for untracked files was adjusted to better differentiate
1629   between files and the "Untracked" header.
1630   (`#509 <https://github.com/git-cola/git-cola/issues/509>`_)
1632 * Ctrl+O was added as a hotkey for opening repositories.
1633   (`#507 <https://github.com/git-cola/git-cola/pull/507>`_)
1635 * `git dag` now uses consistent edge colors across updates.
1636   (`#512 <https://github.com/git-cola/git-cola/issues/512>`_)
1638 * `git cola`'s Bookmarks widget can now be used to set a "Default Repository".
1639   Under the hood, we set the `cola.defaultrepo` configuration variable.
1640   The default repository is used whenever `git cola` is launched outside of
1641   a Git repository.  When unset, or when set to a bogus value, `git cola`
1642   will prompt for a repository, as it previously did.
1643   (`#513 <https://github.com/git-cola/git-cola/issues/513>`_)
1645 * `git cola`'s Russian and Spanish translations were improved
1646   thanks to Vaiz and Zeioth.
1647   (`#514 <https://github.com/git-cola/git-cola/pull/514>`_)
1648   (`#515 <https://github.com/git-cola/git-cola/pull/515>`_)
1649   (`#523 <https://github.com/git-cola/git-cola/pull/523>`_)
1651 * `git cola` was translated to Turkish thanks to Barış ÇELİK.
1652   (`#520 <https://github.com/git-cola/git-cola/pull/520>`_)
1654 * The status view now supports launching `git gui blame`.  It can be
1655   configured to use a different command by setting `cola.blameviewer`.
1656   (`#521 <https://github.com/git-cola/git-cola/pull/521>`_)
1658 * `git dag` now allows selecting non-contiguous ranges in the log widget.
1659   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1661 * Any font can now be chosen for the diff editor, not just monospace fonts.
1662   (`#525 <https://github.com/git-cola/git-cola/issues/525>`_)
1664 Fixes
1665 -----
1667 * `xfce4-terminal` and `gnome-terminal` are now supported when launching
1668   `git mergetool` to resolve merges.  These terminals require that the command
1669   to execute is shell-quoted and passed as a single string argument to `-e`
1670   rather than as additional command line arguments.
1671   (`#524 <https://github.com/git-cola/git-cola/issues/524>`_)
1673 * Fixed a unicode problem when formatting the error message that is shown
1674   when `gitk` is not installed.  We now handle unicode data in tracebacks
1675   generated by python itself.
1676   (`#528 <https://github.com/git-cola/git-cola/issues/528>`_)
1678 * The `New repository` feature was fixed.
1679   (`#533 <https://github.com/git-cola/git-cola/pull/533>`_)
1681 * We now use omit the extended description when creating "fixup!" commits,
1682   for consistency with the Git CLI.  We now include only the one-line summary
1683   in the final commit message.
1684   (`#522 <https://github.com/git-cola/git-cola/issues/522>`_)
1687 .. _v2.4:
1689 v2.4
1690 ====
1692 Usability, bells and whistles
1693 -----------------------------
1695 * The user interface is now HiDPI-capable.  git-cola now uses SVG
1696   icons, and its interface can be scaled by setting the `GIT_COLA_SCALE`
1697   environment variable.
1699 * `git dag` now supports the standard editor, difftool, and history hotkeys.
1700   It is now possible to invoke these actions from file widget's context
1701   menu and through the standard hotkeys.
1702   (`#473 <https://github.com/git-cola/git-cola/pull/473>`_)
1704 * The `Status` tool also learned about the history hotkey.
1705   Additionally, the `Alt-{j,k}` aliases are also supported in the `Status`
1706   tool for consistency with the other tools where the non-Alt hotkeys are not
1707   available.
1708   (`#488 <https://github.com/git-cola/git-cola/pull/488>`_)
1710 * The `File Browser` tool now has better default column sizes,
1711   and remembers its window size and placement.
1713 * The `File Browser` now supports the refresh hotkey, and has better
1714   behavior when refreshing.  The selection is now retained, and new and
1715   removed files are found when refreshing.
1717 * A new `git-cola-completion.bash` completion script is provided in the
1718   `contrib/` directory.  It must be used alongside Git's completion script.
1719   Source it from your `~/.bashrc` (or `~/.zshrc`, etc) after sourcing
1720   the `git-completion.bash` script and you will have command-line completion
1721   support for the `git cola` and `git dag` sub-commands.
1723 * The "checkout" dialog now offers completion for remote branches and other
1724   git refs.  This makes it easier to checkout remote branches in a detached
1725   head state.  Additionally, the checkout dialog also offers completion for
1726   remote branches that have not yet been checked out, which makes it easier to
1727   create a local tracking branch by just completing for that potential name.
1728   (`#390 <https://github.com/git-cola/git-cola/issues/390>`_)
1730 * The "create branch" and "create tag" dialogs now save and restore their
1731   window settings.
1733 * The "status" widget can now be configured to use a bold font with a darker
1734   background for the header items.
1735   (`#506 <https://github.com/git-cola/git-cola/pull/506>`_)
1737 * The "status" widget now remembers its horizontol scrollbar position across
1738   updates.  This is helpful when working on projects with long paths.
1739   (`#494 <https://github.com/git-cola/git-cola/issues/494>`_)
1741 Fixes
1742 -----
1744 * When using *Git for Windows*, a `git` window would appear
1745   when running *Windows 8*.  We now pass additional flags to
1746   `subprocess.Popen` to prevent a `git` window from appearing.
1747   (`#477 <https://github.com/git-cola/git-cola/issues/477>`_)
1748   (`#486 <https://github.com/git-cola/git-cola/pull/486>`_)
1750 * Launching difftool with `.PY` in `$PATHEXT` on Windows was fixed.
1751   (`#492 <https://github.com/git-cola/git-cola/issues/492>`_)
1753 * Creating a local branch tracking a remote branch that contains
1754   slashes in its name is now properly handled.
1755   (`#496 <https://github.com/git-cola/git-cola/issues/496>`_)
1757 * The "Browse Other Branch" feature was broken by Python3, and is now fixed.
1758   (`#501 <https://github.com/git-cola/git-cola/issues/501>`_)
1760 * We now avoid `long` for better Python3 compatibility.
1761   (`#502 <https://github.com/git-cola/git-cola/issues/502>`_)
1763 * We now use Git's default merge message when merging branches.
1764   (`#508 <https://github.com/git-cola/git-cola/issues/508>`_)
1766 * Miscellaneous fixes
1767   (`#485 <https://github.com/git-cola/git-cola/pull/485>`_)
1769 Packaging
1770 ---------
1772 * git-cola's documentation no longer uses an intersphinx link mapping
1773   to docs.python.org.  This fixes warnings when building rpms using koji,
1774   where network access is prevented.
1776   https://bugzilla.redhat.com/show_bug.cgi?id=1231812
1779 .. _v2.3:
1781 v2.3
1782 ====
1784 Usability, bells and whistles
1785 -----------------------------
1787 * The Interactive Rebase feature now works on Windows!
1788   (`#463 <https://github.com/git-cola/git-cola/issues/463>`_)
1790 * The `diff` editor now understands vim-style `hjkl` navigation hotkeys.
1791   (`#476 <https://github.com/git-cola/git-cola/issues/476>`_)
1793 * `Alt-{j,k}` navigation hotkeys were added to allow changing to the
1794   next/previous file from the diff and commit editors.
1796 * The `Rename branch` menu action is now disabled in empty repositories.
1797   (`#475 <https://github.com/git-cola/git-cola/pull/475>`_)
1798   (`#459 <https://github.com/git-cola/git-cola/issues/459>`_)
1800 * `git cola` now checks unmerged files for conflict markers before
1801   staging them.  This feature can be disabled in the preferences.
1802   (`#464 <https://github.com/git-cola/git-cola/issues/464>`_)
1804 * `git dag` now remembers which commits were selected when refreshing
1805   so that it can restore the selection afterwards.
1806   (`#480 <https://github.com/git-cola/git-cola/issues/480>`_)
1808 * "Launch Editor", "Launch Difftool", "Stage/Unstage",
1809   and "Move Up/Down" hotkeys now work when the commit message
1810   editor has focus.
1811   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
1813 * The diff editor now supports the `Ctrl+u` hotkey for reverting
1814   diff hunks and selected lines.
1816 * The `core.commentChar` Git configuration value is now honored.
1817   Commit messages and rebase instruction sheets will now use
1818   the configured character for comments.  This allows having
1819   commit messages that start with `#` when `core.commentChar`
1820   is configured to its non-default value.
1821   (`#446 <https://github.com/git-cola/git-cola/issues/446>`_)
1823 Fixes
1824 -----
1826 * Diff syntax highlighting was improved to handle more edge cases
1827   and false positives.
1828   (`#467 <https://github.com/git-cola/git-cola/pull/467>`_)
1830 * Setting commands in the interactive rebase editor was fixed.
1831   (`#472 <https://github.com/git-cola/git-cola/issues/472>`_)
1833 * git-cola no longer clobbers the Ctrl+Backspace text editing shortcut
1834   in the commit message editor.
1835   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
1837 * The copy/paste clipboard now persists after `git cola` exits.
1838   (`#484 <https://github.com/git-cola/git-cola/issues/484>`_)
1841 .. _v2.2.1:
1843 v2.2.1
1844 ======
1846 Fixes
1847 -----
1848 * Fixed the "Sign off" feature in the commit message editor.
1851 .. _v2.2:
1853 v2.2
1854 ====
1856 Usability, bells and whistles
1857 -----------------------------
1858 * Double-click will now choose a commit in the "Select commit" dialog.
1860 * `git cola` has a feature that reads `.git/MERGE_MSG` and friends for the
1861   commit message when a merge is in-progress.  Upon refresh, `git cola` will
1862   now detect when a merge has completed and reset the commit message back to
1863   its previous state.  It is only reset if the editor contains a message
1864   that was read from the file and has not been manually edited by the user.
1866 * The commit message editor's context menu now has a "Clear..." action for
1867   clearing the message across both the summary and description fields.
1869 * Traditional Chinese (Taiwan) translation updates.
1871 * The system theme's icons are now used wherever possible.
1872   (`#458 <https://github.com/git-cola/git-cola/pull/458>`_)
1874 Fixes
1875 -----
1876 * The stash viewer now uses ``git show --no-ext-diff`` to avoid running
1877   user-configured diff tools.
1879 * `git cola` now uses the `setsid()` system call to ensure that the
1880   `GIT_ASKPASS` and `SSH_ASKPASS` helper programs are used when pushing
1881   changes using `git`.  The askpass helpers will now be used even when
1882   `git cola` is launched from a terminal.
1884   The behavior without `setsid()` is that `git cola` can appear to hang while
1885   pushing changes.  The hang happens when `git` prompts the user for a
1886   password using the terminal, but the user never sees the prompt.  `setsid()`
1887   detaches the terminal, which ensures that the askpass helpers are used.
1888   (`#218 <https://github.com/git-cola/git-cola/issues/218>`_)
1889   (`#262 <https://github.com/git-cola/git-cola/issues/262>`_)
1890   (`#377 <https://github.com/git-cola/git-cola/issues/377>`_)
1892 * `git dag`'s file list tool was updated to properly handle unicode paths.
1894 * `gnome-terminal` is no longer used by default when `cola.terminal` is unset.
1895   It is broken, as was detailed in #456.
1896   (`#456 <https://github.com/git-cola/git-cola/issues/456>`_)
1898 * The interactive rebase feature was not always setting `$GIT_EDITOR`
1899   to the value of `gui.editor`, thus there could be instances where rebase
1900   will seem to not stop, or hang, when performing "reword" actions.
1902   We now set the `$GIT_EDITOR` environment variable when performing the
1903   "Continue", "Skip", and "Edit Todo" rebase actions so that the correct
1904   editor is used during the rebase.
1905   (`#445 <https://github.com/git-cola/git-cola/issues/445>`_)
1907 Packaging
1908 ---------
1909 * `git cola` moved from a 3-part version number to a simpler 2-part "vX.Y"
1910   version number.  Most of our releases tend to contain new features.
1913 .. _v2.1.2:
1915 v2.1.2
1916 ======
1917 Usability, bells and whistles
1918 -----------------------------
1919 * Updated zh_TW translations.
1921 * `git cola rebase` now defaults to `@{upstream}`, and generally uses the same
1922   CLI syntax as `git rebase`.
1924 * The commit message editor now allows you to bypass commit hooks by selecting
1925   the "Bypass Commit Hooks" option.  This is equivalent to passing the
1926   `--no-verify` option to `git commit`.
1927   (`#357 <https://github.com/git-cola/git-cola/issues/357>`_)
1929 * We now prevent the "Delete Files" action from creating a dialog that does
1930   not fit on screen.
1931   (`#378 <https://github.com/git-cola/git-cola/issues/378>`_)
1933 * `git xbase` learned to edit rebase instruction sheets that contain
1934   `exec` commands.
1936 * The diff colors are now configurable.  `cola.color.{text,add,remove,header}`
1937   can now be set with 6-digit hexadecimal colors.
1938   See the `git cola manual <https://git-cola.readthedocs.io/en/latest/git-cola.html#configuration-variables>_`
1939   for more details.
1941 * Improved hotkey documentation.
1943 Fixes
1944 -----
1945 * `git cola` will now allow starting an interactive rebase with a dirty
1946   worktree when `rebase.autostash` is set.
1947   (`#360 <https://github.com/git-cola/git-cola/issues/360>`_)
1950 .. _v2.1.1:
1952 v2.1.1
1953 ======
1954 Usability, bells and whistles
1955 -----------------------------
1956 * A new "Find files" widget was added, and can be activated by
1957   using the `Ctrl+t` or `t` hotkeys.
1959 * A new `git cola find` sub-command was added for finding files.
1961 * `git cola` now remembers the text cursor's position when staging
1962   interactively with the keyboard.  This makes it easier to use the keyboard
1963   arrows to select and stage lines.
1965 * The completion widgets will now select the top completion item
1966   when `Enter` or `Return` are pressed.
1968 * You can now refresh using `F5` in addition to the existing `Ctrl+R` hotkey.
1970 Fixes
1971 -----
1972 * `git cola` now passes `--no-abbrev-commit` to `git log` to override
1973   having `log.abbrevCommit = true` set in `.gitconfig`.
1976 .. _v2.1.0:
1978 v2.1.0
1979 ======
1980 Usability, bells and whistles
1981 -----------------------------
1982 * `git dag` now forwards all unknown arguments along to `git log`.
1983   (`#389 <https://github.com/git-cola/git-cola/issues/389>`_)
1985 * Line-by-line interactive staging was made more robust.
1986   (`#399 <https://github.com/git-cola/git-cola/pull/399>`_)
1988 * "Bookmarks" was renamed to "Favorites".
1989   (`#392 <https://github.com/git-cola/git-cola/issues/392>`_)
1991 * Untracked files are now displayed using a unique icon.
1992   (`#388 <https://github.com/git-cola/git-cola/pull/388>`_)
1994 Fixes
1995 -----
1996 * `git dag` was triggering a traceback on Fedora when parsing Git logs.
1997   (`bz #181676 <https://bugzilla.redhat.com/show_bug.cgi?id=1181686>`_)
1999 * inotify expects unicode paths on Python3.
2000   (`#393 <https://github.com/git-cola/git-cola/pull/393>`_)
2002 * Untracked files are now assumed to be utf-8 encoded.
2003   (`#401 <https://github.com/git-cola/git-cola/issues/401>`_)
2006 .. _v2.0.8:
2008 v2.0.8
2009 ======
2010 Usability, bells and whistles
2011 -----------------------------
2012 * `git cola` can now create GPG-signed commits and merges.
2013   See the documentation for details about setting up a GPG agent.
2014   (`#149 <https://github.com/git-cola/git-cola/issues/149>`_)
2016 * The status widget learned to copy relative paths when `Ctrl+x` is pressed.
2017   (`#358 <https://github.com/git-cola/git-cola/issues/358>`_)
2019 * Custom GUI actions can now define their own keyboard shortcuts by
2020   setting `guitool.$name.shortcut` to a string understood by Qt's
2021   `QAction::setShortcut()` API, e.g. `Alt+X`.
2022   See the
2023   `Qt docs <http://qt-project.org/doc/qt-4.8/qkeysequence.html#QKeySequence-2>`_
2024   for more details about the supported values.
2026 * `git cola` learned to rename branches.
2027   (`#364 <https://github.com/git-cola/git-cola/pull/364>`_)
2028   (`#278 <https://github.com/git-cola/git-cola/issues/278>`_)
2030 * `git dag` now has a "Show history" context menu which can be used to filter
2031   history using the selected paths.
2033 Fixes
2034 -----
2035 * `sphinxtogithub.py` was fixed for Python3.
2036   (`#353 <https://github.com/git-cola/git-cola/pull/353>`_)
2038 * The commit that changed how we read remotes from `git remote`
2039   to parsing `git config` was reverted since it created problems
2040   for some users.
2042 * Fixed a crash when using the `rebase edit` feature.
2043   (`#351 <https://github.com/git-cola/git-cola/issues/351>`_)
2045 * Better drag-and-drop behavior when dropping into gnome-terminal.
2046   (`#373 <https://github.com/git-cola/git-cola/issues/373>`_)
2048 Packaging
2049 ---------
2050 * The `git-cola-folder-handler.desktop` file handler was fixed
2051   to pass validation by `desktop-file-validate`.
2052   (`#356 <https://github.com/git-cola/git-cola/issues/356>`_)
2054 * The `git.svg` icon was renamed to `git-cola.svg`, and `git cola` was taught
2055   to prefer icons from the desktop theme when available.
2058 .. _v2.0.7:
2060 v2.0.7
2061 ======
2062 Usability, bells and whistles
2063 -----------------------------
2064 * New hotkey: `Ctrl+Shift+M` merges branches.
2066 * New hotkey: `Ctrl+R` refreshes the DAG viewer.
2067   (`#347 <https://github.com/git-cola/git-cola/issues/347>`_)
2069 Fixes
2070 -----
2071 * We now use `git config` to parse the list of remotes
2072   instead of parsing the output of `git remote`, which
2073   is a Git porcelain and should not be used by scripts.
2075 * Avoid "C++ object has been deleted" errors from PyQt4.
2076   (`#346 <https://github.com/git-cola/git-cola/issues/346>`_)
2078 Packaging
2079 ---------
2080 * The `make install` target now uses `install` instead of `cp`.
2083 .. _v2.0.6:
2085 v2.0.6
2086 ======
2087 Usability, bells and whistles
2088 -----------------------------
2089 * Updated Brazilian Portuguese translation.
2091 * The status and browse widgets now allow drag-and-drop into
2092   external applications.
2093   (`#335 <https://github.com/git-cola/git-cola/issues/335>`_)
2095 * We now show a progress bar when cloning repositories.
2096   (`#312 <https://github.com/git-cola/git-cola/issues/312>`_)
2098 * The bookmarks widget was simplified to not need a
2099   separate dialog.
2100   (`#289 <https://github.com/git-cola/git-cola/issues/289>`_)
2102 * Updated Traditional Chinese translation.
2104 * We now display a warning when trying to rebase with uncommitted changes.
2105   (`#338 <https://github.com/git-cola/git-cola/issues/338>`_)
2107 * The status widget learned to filter paths.
2108   `Ctrl+Shift+S` toggles the filter widget.
2109   (`#337 <https://github.com/git-cola/git-cola/issues/337>`_)
2110   (`#339 <https://github.com/git-cola/git-cola/pull/339>`_)
2112 * The status widget learned to move files to the trash
2113   when the `send2trash <https://github.com/hsoft/send2trash>`_
2114   module is installed.
2115   (`#341 <https://github.com/git-cola/git-cola/issues/341>`_)
2117 * "Recent repositories" is now a dedicated widget.
2118   (`#342 <https://github.com/git-cola/git-cola/issues/342>`_)
2120 * New Spanish translation thanks to Pilar Molina Lopez.
2121   (`#344 <https://github.com/git-cola/git-cola/pull/344>`_)
2123 Fixes
2124 -----
2125 * Newly added remotes are now properly seen by the fetch/push/pull dialogs.
2126   (`#343 <https://github.com/git-cola/git-cola/issues/343>`_)
2129 .. _v2.0.5:
2131 v2.0.5
2132 ======
2133 Usability, bells and whistles
2134 -----------------------------
2135 * New Brazilian Portuguese translation thanks to Vitor Lobo.
2137 * New Indonesian translation thanks to Samsul Ma'arif.
2139 * Updated Simplified Chinese translation thanks to Zhang Han.
2141 * `Ctrl+Backspace` is now a hotkey for "delete untracked files" in
2142   the status widget.
2144 * Fetch/Push/Pull dialogs now use the configured remote of the current
2145   branch by default.
2146   (`#324 <https://github.com/git-cola/git-cola/pull/324>`_)
2148 Fixes
2149 -----
2150 * We now use `os.getcwd()` on Python3.
2151   (`#316 <https://github.com/git-cola/git-cola/pull/316>`_)
2152   (`#326 <https://github.com/git-cola/git-cola/pull/326>`_)
2154 * The `Ctrl+P` hotkey was overloaded to both "push" and "cherry-pick",
2155   so "cherry-pick" was moved to `Ctrl+Shift+C`.
2157 * Custom GUI tools with mixed-case names are now properly supported.
2159 * "Diff Region" is now referred to as "Diff Hunk" for consistency
2160   with common terminology from diff/patch tools.
2161   (`#328 <https://github.com/git-cola/git-cola/issues/328>`_)
2163 * git-cola's test suite is now portable to MS Windows.
2164   (`#332 <https://github.com/git-cola/git-cola/pull/332>`_)
2167 .. _v2.0.4:
2169 v2.0.4
2170 ======
2171 Usability, bells and whistles
2172 -----------------------------
2173 * We now handle the case when inotify `add_watch()` fails
2174   and display instructions on how to increase the number of watches.
2175   (`#263 <https://github.com/git-cola/git-cola/issues/263>`_)
2177 * New and improved zh_TW localization thanks to V字龍(Vdragon).
2178   (`#265 <https://github.com/git-cola/git-cola/pull/265>`_)
2179   (`#267 <https://github.com/git-cola/git-cola/pull/267>`_)
2180   (`#268 <https://github.com/git-cola/git-cola/pull/268>`_)
2181   (`#269 <https://github.com/git-cola/git-cola/issues/269>`_)
2182   (`#270 <https://github.com/git-cola/git-cola/pull/270>`_)
2183   (`#271 <https://github.com/git-cola/git-cola/pull/271>`_)
2184   (`#272 <https://github.com/git-cola/git-cola/pull/272>`_)
2186 * New hotkeys: `Ctrl+F` for fetch, `Ctrl+P` for push,
2187   and `Ctrl+Shift+P` for pull.
2189 * The bookmarks widget's context menu actions were made clearer.
2190   (`#281 <https://github.com/git-cola/git-cola/issues/281>`_)
2192 * The term "Staging Area" is used consistently in the UI
2193   to allow for better localization.
2194   (`#283 <https://github.com/git-cola/git-cola/issues/283>`_)
2196 * The "Section" term is now referred to as "Diff Region"
2197   in the UI.
2198   (`#297 <https://github.com/git-cola/git-cola/issues/297>`_)
2200 * The localization documentation related to the LANGUAGE
2201   environment variable was improved.
2202   (`#293 <https://github.com/git-cola/git-cola/pull/293>`_)
2204 * The "Actions" panel now contains tooltips for each button
2205   in case the button labels gets truncated by Qt.
2206   (`#292 <https://github.com/git-cola/git-cola/issues/292>`_)
2208 * Custom `git config`-defined actions can now be run in the
2209   background by setting `guitool.<name>.background` to `true`.
2211 Fixes
2212 -----
2213 * We now use bold fonts instead of SmallCaps to avoid
2214   artifacts on several configurations.
2216 * We now pickup `user.email`, `cola.tabwidth`, and similar settings
2217   when defined in /etc/gitconfig.
2218   (`#259 <https://github.com/git-cola/git-cola/issues/259>`_)
2220 * Better support for unicode paths when using inotify.
2221   (`bz #1104181 <https://bugzilla.redhat.com/show_bug.cgi?id=1104181>`_)
2223 * Unicode fixes for non-ascii locales.
2224   (`#266 <https://github.com/git-cola/git-cola/issues/266>`_)
2225   (`#273 <https://github.com/git-cola/git-cola/issues/273>`_)
2226   (`#276 <https://github.com/git-cola/git-cola/issues/276>`_)
2227   (`#282 <https://github.com/git-cola/git-cola/issues/282>`_)
2228   (`#298 <https://github.com/git-cola/git-cola/issues/298>`_)
2229   (`#302 <https://github.com/git-cola/git-cola/issues/302>`_)
2230   (`#303 <https://github.com/git-cola/git-cola/issues/303>`_)
2231   (`#305 <https://github.com/git-cola/git-cola/issues/305>`_)
2233 * Viewing history from the file browser was fixed for Python3.
2234   (`#274 <https://github.com/git-cola/git-cola/issues/274>`_)
2236 * setup.py was fixed to install the `*.rst` documentation.
2237   (`#279 <https://github.com/git-cola/git-cola/issues/279>`_)
2239 * Patch export was fixed for Python3.
2240   (`#290 <https://github.com/git-cola/git-cola/issues/290>`_)
2242 * Fixed adding a bookmark with trailing slashes.
2243   (`#295 <https://github.com/git-cola/git-cola/pull/295>`_)
2245 * The default `git dag` layout is now setup so that its widgets
2246   can be freely resized on Linux.
2247   (`#299 <https://github.com/git-cola/git-cola/issues/299>`_)
2249 * Invalid tag names are now reported when creating tags.
2250   (`#296 <https://github.com/git-cola/git-cola/pull/296>`_)
2253 .. _v2.0.3:
2255 v2.0.3
2256 ======
2257 Usability, bells and whistles
2258 -----------------------------
2259 * `git cola` no longer prompts after successfully creating a new branch.
2260   (`#251 <https://github.com/git-cola/git-cola/pull/251>`_)
2262 * Hitting enter on simple dialogs now accepts them.
2263   (`#255 <https://github.com/git-cola/git-cola/pull/255>`_)
2265 Fixes
2266 -----
2267 * `git dag` no longer relies on `sys.maxint`, which is
2268   not available in Python3.
2269   (`#249 <https://github.com/git-cola/git-cola/issues/249>`_)
2271 * Python3-related fixes.
2272   (`#254 <https://github.com/git-cola/git-cola/pull/254>`_)
2274 * Python3-on-Windows-related fixes.
2275   (`#250 <https://github.com/git-cola/git-cola/pull/250>`_)
2276   (`#252 <https://github.com/git-cola/git-cola/pull/252>`_)
2277   (`#253 <https://github.com/git-cola/git-cola/pull/253>`_)
2279 * Switching repositories using the bookmarks widget was not
2280   refreshing the inotify watcher.
2281   (`#256 <https://github.com/git-cola/git-cola/pull/256>`_)
2283 * Special commit messages trailers (e.g. "Acked-by:") are now special-cased to
2284   fix word wrapping lines that start with "foo:".
2285   (`#257 <https://github.com/git-cola/git-cola/issues/257>`_)
2287 * `git dag` sometimes left behind selection artifacts.
2288   We now refresh the view to avoid them.
2289   (`#204 <https://github.com/git-cola/git-cola/issues/204>`_)
2292 .. _v2.0.2:
2294 v2.0.2
2295 ======
2296 Usability, bells and whistles
2297 -----------------------------
2298 * Better inotify support for file creation and deletion.
2299   (`#240 <https://github.com/git-cola/git-cola/issues/240>`_)
2301 * `git cola` now supports the X11 Session Management Protocol
2302   and remembers its state across logout/reboot.
2303   (`#164 <https://github.com/git-cola/git-cola/issues/164>`_)
2305 * `git cola` has a new icon.
2306   (`#190 <https://github.com/git-cola/git-cola/issues/190>`_)
2308 Packaging
2309 ---------
2310 * Building the documentation no longer requires `asciidoc`.
2311   We now use `Sphinx <http://sphinx-doc.org/>`_ for building
2312   html documentation and man pages.
2314 Fixes
2315 -----
2316 * Reworked the git-dag gravatar icon code to avoid a unicode
2317   error in Python 2.
2319 * Commit message line-wrapping was made to better match the GUI editor.
2320   (`#242 <https://github.com/git-cola/git-cola/issues/242>`_)
2322 * Better support for Python3 on Windows
2323   (`#246 <https://github.com/git-cola/git-cola/issues/246>`_)
2325 Packaging
2326 ---------
2327 * git-cola no longer depends on Asciidoc for building its documentation
2328   and man-pages.  We now depend on [Sphinx](http://sphinx-doc.org/) only.
2331 .. _v2.0.1:
2333 v2.0.1
2334 ======
2335 Usability, bells and whistles
2336 -----------------------------
2337 * Some context menu actions are now hidden when selected
2338   files do not exist.
2339   (`#238 <https://github.com/git-cola/git-cola/issues/238>`_)
2341 Fixes
2342 -----
2343 * The build-git-cola.sh contrib script was improved.
2344   (`#235 <https://github.com/git-cola/git-cola/pull/235>`_)
2346 * Non-ascii worktrees work properly again.
2347   (`#234 <https://github.com/git-cola/git-cola/issues/234>`_)
2349 * The browser now guards itself against missing files.
2350   (`bz #1041378 <https://bugzilla.redhat.com/show_bug.cgi?id=1071378>`_)
2352 * Saving widget state now works under Python3.
2353   (`#236 <https://github.com/git-cola/git-cola/pull/236>`_)
2356 .. _v2.0.0:
2358 v2.0.0
2359 ======
2360 Portability
2361 -----------
2362 * git-cola now runs on Python 3 thanks to Virgil Dupras.
2363   (`#233 <https://github.com/git-cola/git-cola/pull/233>`_)
2365 * Python 2.6, 2.7, and 3.2+ are now supported.
2366   Python 2.5 is no longer supported.
2368 Fixes
2369 -----
2370 * i18n test fixes thanks to Virgil Dupras.
2371   (`#231 <https://github.com/git-cola/git-cola/pull/231>`_)
2373 * git-cola.app build fixes thanks to Maicon D. Filippsen.
2374   (`#230 <https://github.com/git-cola/git-cola/pull/230>`_)
2376 * Lots of pylint improvements thanks to Alex Chernetz.
2377   (`#229 <https://github.com/git-cola/git-cola/pull/229>`_)
2380 .. _v1.9.4:
2382 v1.9.4
2383 ======
2384 Usability, bells and whistles
2385 -----------------------------
2386 * The new `Bookmarks` tool makes it really easy to switch between repositories.
2388 * There is now a dedicated dialog for applying patches.
2389   See the ``File -> Apply Patches`` menu item.
2390   (`#215 <https://github.com/git-cola/git-cola/issues/215>`_)
2392 * A new `git cola am` sub-command was added for applying patches.
2394 Fixes
2395 -----
2396 * Fixed a typo that caused inotify events to be silently ignored.
2398 * Fixed the sys.path setup for Mac OS X (Homebrew).
2399   (`#221 <https://github.com/git-cola/git-cola/issues/221>`_)
2401 * Lots of pylint fixes thanks to Alex Chernetz.
2404 .. _v1.9.3:
2406 v1.9.3
2407 ======
2408 Usability, bells and whistles
2409 -----------------------------
2410 * `git cola --amend` now starts the editor in `amend` mode.
2411   (`#187 <https://github.com/git-cola/git-cola/issues/187>`_)
2413 * Multiple lines of text can now be pasted into the `summary` field.
2414   All text beyond the first newline will be automatically moved to the
2415   `extended description` field.
2416   (`#212 <https://github.com/git-cola/git-cola/issues/212>`_)
2418 Fixes
2419 -----
2420 * Stray whitespace in `.git` files is now ignored.
2421   (`#213 <https://github.com/git-cola/git-cola/issues/213>`_)
2423 * Fix "known incorrect sRGB profile" in `staged-item.png`.
2424   (`gentoo-devel message #85066
2425   <http://comments.gmane.org/gmane.linux.gentoo.devel/85066>`_)
2428 .. _v1.9.2:
2430 v1.9.2
2431 ======
2432 Fixes
2433 -----
2434 * Fix a traceback when `git push` fails.
2435   (`bz #1034778 <https://bugzilla.redhat.com/show_bug.cgi?id=1034778>`_)
2437 Packaging
2438 ---------
2439 * Most of the git-cola sub-packages have been removed.
2440   The only remaining packages are `cola`, `cola.models`,
2441   and `cola.widgets`.
2443 * The translation file for Simplified Chinese was renamed
2444   to `zh_CN.po`.
2445   (`#209 <https://github.com/git-cola/git-cola/issues/209>`_)
2448 .. _v1.9.1:
2450 v1.9.1
2451 ======
2452 Packaging
2453 ---------
2454 * `git cola version --brief` now prints the brief version number.
2456 Fixes
2457 -----
2458 * Resurrected the "make dist" target, for those that prefer to create
2459   their own tarballs.
2461 * Fixed the typo that broke the preferences dialog.
2464 .. _v1.9.0:
2466 v1.9.0
2467 ======
2468 Usability, bells and whistles
2469 -----------------------------
2470 * We now ship a full-featured interactive `git rebase` editor.
2471   The rebase todo file is edited using the `git xbase` script which
2472   is provided at `$prefix/share/git-cola/bin/git-xbase`.
2473   This script can be used standalone by setting the `$GIT_SEQUENCE_EDITOR`
2474   before running `git rebase --interactive`.
2475   (`#1 <https://github.com/git-cola/git-cola/issues/1>`_)
2477 * Fixup commit messages can now be loaded from the commit message editor.
2479 * Tool widgets can be locked in place by using the "Tools/Lock Layout"
2480   menu action.
2481   (`#202 <https://github.com/git-cola/git-cola/issues/202>`_)
2483 * You can now push to several remotes simultaneously by selecting
2484   multiple remotes in the "Push" dialog.
2485   (`#148 <https://github.com/git-cola/git-cola/issues/148>`_)
2487 * The `grep` tool learned to search using three different modes:
2488   basic regular expressions (default), extended regular expressions,
2489   and fixed strings.
2491 Packaging
2492 ---------
2493 * `git cola` now depends on the `argparse` Python module.
2494   This module is part of the stdlib in Python 2.7 and must
2495   be installed separately when using Python 2.6 and below.
2497 Fixes
2498 -----
2499 * Support unicode in the output from `fetch`, `push`, and `pull`.
2502 .. _v1.8.5:
2504 v1.8.5
2505 ======
2506 Usability, bells and whistles
2507 -----------------------------
2508 * We now detect when the editor or history browser are misconfigured.
2509   (`#197 <https://github.com/git-cola/git-cola/issues/197>`_)
2510   (`bz #886826 <https://bugzilla.redhat.com/show_bug.cgi?id=886826>`_)
2512 * Display of untracked files can be disabled from the Preferences dialog
2513   or by setting the `gui.displayuntracked` configuration variable to `false`.
2514   (`Git Mailing List on 2013-08-21
2515   <https://public-inbox.org/git/20130821032913.GA6092@wheezy.local/>`_)
2517 Fixes
2518 -----
2519 * Unicode stash names are now supported
2520   (`#198 <https://github.com/git-cola/git-cola/issues/198>`_)
2522 * The diffs produced when reverting workspace changes were made more robust.
2525 .. _v1.8.4:
2527 v1.8.4
2528 ======
2529 Usability, bells and whistles
2530 -----------------------------
2531 * Brand new German translation thanks to Sven Claussner.
2533 * The "File" menu now provides a "New Repository..." menu action.
2535 * `git dag` now uses a dock-widget interface so that its widgets can
2536   be laid-out and arranged.  Customizations are saved and restored
2537   the next time `git dag` is launched.
2539 * `git dag` now has a "Zoom Best Fit" button next alongside the
2540   "Zoom In" and "Zoom Out" buttons.
2542 * `Ctrl+L` now focuses the "Search" field in the `git dag` tool.
2544 * Right-clicking in the "diff" viewer now updates the cursor position
2545   before performing actions, which makes it much easier to click around
2546   and selectively stage sections.  Previously, the current cursor position
2547   was used which meant that it required two clicks (left-click to update
2548   the position followed by right-click to get the context menu) for the
2549   desired section to be used.  This is now a single right-click operation.
2551 * The `Ctrl+D` "Launch Diff Tool" action learned to automatically choose
2552   between `git difftool` and `git mergetool`.  If the file is unmerged then
2553   we automatically launch `git mergetool` on the path, otherwise we use
2554   `git difftool`.  We do this because `git difftool` is not intended to
2555   be used on unmerged paths.  Automatically using `git mergetool` when
2556   appropriate is the most intuitive and muscle-memory-friendly thing to do.
2558 * You can now right-click on folders in your standard file browser
2559   and choose "Open With -> Git Cola"  (Linux-only).
2561 Fixes
2562 -----
2563 * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple
2564   at `sys.version_info`.  We now avoid using that variable for better
2565   portability.
2567 * We now read the user's Git configuration from `~/.config/git/config`
2568   if that file is available, otherwise we use the traditional `~/.gitconfig`
2569   path, just like Git itself.
2571 * Some edge cases were fixed when applying partial/selected diffs.
2573 * The diff viewer is now properly cleared when refreshing.
2574   (`#194 <https://github.com/git-cola/git-cola/issues/194>`_)
2577 .. _v1.8.3:
2579 v1.8.3
2580 ======
2581 Usability, bells and whistles
2582 -----------------------------
2583 * The diff viewer now has an "Options" menu which can be
2584   used to set "git diff" options.  This can be used to
2585   ignore whitespace changes or to show a change with its
2586   surrounding function as context.
2587   (`#150 <https://github.com/git-cola/git-cola/issues/150>`_)
2589 * `git cola` now remembers your commit message and will restore it
2590   when `git cola` is restarted.
2591   (`#175 <https://github.com/git-cola/git-cola/pull/175>`_)
2593 * `Ctrl+M` can now be used to toggle the "Amend last commit"
2594   checkbox in the commit message editor.
2595   (`#161 <https://github.com/git-cola/git-cola/pull/161>`_)
2597 * Deleting remote branches can now be done from the "Branch" menu.
2598   (`#152 <https://github.com/git-cola/git-cola/issues/152>`_)
2600 * The commit message editor now has a built-in spell checker.
2602 Fixes
2603 -----
2604 * We now avoid invoking external diffs when showing diffstats.
2605   (`#163 <https://github.com/git-cola/git-cola/pull/163>`_)
2607 * The `Status` tool learned to reselect files when refreshing.
2608   (`#165 <https://github.com/git-cola/git-cola/issues/165>`_)
2610 * `git cola` now remembers whether it has been maximized and will restore the
2611   maximized state when `git cola` is restarted.
2612   (`#172 <https://github.com/git-cola/git-cola/issues/172>`_)
2614 * Performance is now vastly improved when staging hundreds or
2615   thousands of files.
2617 * `git cola` was not correctly saving repo-specific configuration.
2618   (`#174 <https://github.com/git-cola/git-cola/issues/174>`_)
2620 * Fix a UnicodeDecode in sphinxtogithub when building from source.
2623 .. _v1.8.2:
2625 v1.8.2
2626 ======
2628 Usability, bells and whistles
2629 -----------------------------
2630 * We now automatically remove missing repositories from the
2631   "Select Repository" dialog.
2632   (`#145 <https://github.com/git-cola/git-cola/issues/145>`_)
2634 * A new `git cola diff` sub-command was added for diffing changed files.
2636 Fixes
2637 -----
2638 * The inotify auto-refresh feature makes it difficult to select text in
2639   the "diff" editor when files are being continually modified by another
2640   process.  The auto-refresh causes it to lose the currently selected text,
2641   which is not wanted.  We now avoid this problem by saving and restoring
2642   the selection when refreshing the editor.
2643   (`#155 <https://github.com/git-cola/git-cola/issues/155>`_)
2645 * More strings have been marked for l10n.
2646   (`#157 <https://github.com/git-cola/git-cola/issues/157>`_)
2648 * Fixed the Alt+D Diffstat shortcut.
2649   (`#159 <https://github.com/git-cola/git-cola/issues/159>`_)
2651 Fixes
2652 -----
2653 * Better error handling when cloning repositories.
2655   We were not handling the case where a git URL has
2656   no basename, e.g. `https://git.example.com/`.
2657   `git cola` originally rejected these URLs instead of
2658   allowing users to clone them.  It now allows these URLs
2659   when they point to valid git repositories.
2661   Additionally, `git cola` learned to echo the errors
2662   reported by `git clone` when it fails.
2663   (`#156 <https://github.com/git-cola/git-cola/issues/156>`_)
2666 .. _v1.8.1:
2668 v1.8.1
2669 ======
2671 Usability, bells and whistles
2672 -----------------------------
2673 * `git dag` got a big visual upgrade.
2675 * `Ctrl+G` now launches the "Grep" tool.
2677 * `Ctrl+D` launches difftool and `Ctrl+E` launches your editor
2678   when in the diff panel.
2680 * git-cola can now be told to use an alternative language.
2681   For example, if the native language is German and we want git-cola to
2682   use English then we can create a `~/.config/git-cola/language` file with
2683   "en" as its contents: ``echo en >~/.config/git-cola/language``
2684   (`#140 <https://github.com/git-cola/git-cola/issues/140>`_)
2686 * A new `git cola merge` sub-command was added for merging branches.
2688 * Less blocking in the main UI
2690 Fixes
2691 -----
2692 * Autocomplete issues on KDE
2693   (`#144 <https://github.com/git-cola/git-cola/issues/144>`_)
2695 * The "recently opened repositories" startup dialog did not
2696   display itself in the absence of bookmarks.
2697   (`#139 <https://github.com/git-cola/git-cola/issues/139>`_)
2700 .. _v1.8.0:
2702 v1.8.0
2703 ======
2705 Usability, bells and whistles
2706 -----------------------------
2707 * `git cola` learned to honor `.gitattributes` when showing and
2708   interactively applying diffs.  This makes it possible to store
2709   files in git using a non-utf-8 encoding and `git cola` will
2710   properly accept them.  This must be enabled by settings
2711   `cola.fileattributes` to true, as it incurs a small performance
2712   penalty.
2713   (`#96 <https://github.com/git-cola/git-cola/issues/96>`_)
2715 * `git cola` now wraps commit messages at 72 columns automatically.
2716   This is configurable using the `cola.linebreak` variable to enable/disable
2717   the feature, and `cola.textwidth` to configure the limit.
2718   (`#133 <https://github.com/git-cola/git-cola/issues/133>`_)
2720 * A new "Open Recent" sub-menu was added to the "File" menu.
2721   This makes it easy to open a recently-edited repository.
2722   (`#135 <https://github.com/git-cola/git-cola/issues/135>`_)
2724 * We now show a preview for untracked files when they are clicked
2725   using the `Status` tool.
2726 * A new "Open Using Default Application" action was added to the
2727   `Status` tool.  It is activated using either `Spacebar` or through
2728   the context menu.  This action uses `xdg-open` on Linux and
2729   `open` on Mac OS X.
2730 * A new "Open Parent Directory" action was added to the `Status` tool.
2731   It is activated using either `Shift+Spacebar` or through the
2732   context menu.
2733 * `git dag` learned to honor the `log.date` git configuration variable.
2734   This makes the date display follow whatever format the user has
2735   configured.
2736 * A new `git cola config` sub-command was added for quickly
2737   tweaking `git cola`'s git configuration settings.
2738 * Some small usability tweaks -- some user confirmation prompts
2739   were defaulting to "Cancel" when they should have been defaulting
2740   to the affirmative option instead.
2742 Fixes
2743 -----
2744 * Properly handle arbitrarily-named branches.
2745 * We went back to launching `git mergetool` using an xterm.
2746   The reason is that there are a couple of places where `git mergetool`
2747   requires a terminal for user interaction not covered by `--no-prompt`.
2748 * We now properly handle an edge case when applying short diffs at
2749   the start of a file.
2752 .. _v1.7.7:
2754 v1.7.7
2755 ======
2757 Usability, bells and whistles
2758 -----------------------------
2759 * New and improved `grep` mode lets you instantly find and edit files.
2760 * New `git cola grep` standalone mode.
2761 * Support for passing arguments to the configured editors, e.g. `gvim -p`
2762   This makes it possible to select multiple files in the status
2763   window and use `Ctrl-e` to edit them all at once.
2764 * Remote operations now prompt on errors only.
2765 * The `Tab` key now jumps to the extended description when editing the summary.
2766 * More shortcut key labels and misc. UX improvements.
2768 Fixes
2769 -----
2770 * Selecting an item no longer copies its filename to the copy/paste buffer.
2771   `Ctrl-c` or the "Copy" context-menu action can be used instead.
2772 * The repository monitoring feature on Windows learned to ignore
2773   changes within the ".git" directory.  Thanks to Andreas Sommer.
2774   (`#120 <https://github.com/git-cola/git-cola/issues/120>`_)
2777 .. _v1.7.6:
2779 v1.7.6
2780 ======
2782 Usability, bells and whistles
2783 -----------------------------
2784 * `git dag` learned to color-code branchy edges.
2785   The edge colors change when a new branch is detected,
2786   which makes the history much easier to follow.
2787   A huge thanks to Uri Okrent for making it happen.
2789 * New GUI for editing remote repositories.
2791 * New `git cola archive` and `git cola remote` sub-commands.
2793 * `git cola browser` learned an 'Untrack' command.
2795 * The diff editor learned to staged/unstaged while amending.
2797 * The status tool can now scroll horizontally.
2799 * New git repositories can be created by clicking 'New' on the
2800   `git cola --prompt` startup screen.
2803 .. _v1.7.5:
2805 v1.7.5
2806 ======
2808 Usability, bells and whistles
2809 -----------------------------
2810 * Auto-completion was added to more tools.
2812 * `git dag` is easier to use on smaller displays -- the author
2813   field elides its text which allows for a more compact display.
2815 * Selected commits in `git dag` were made more prominent and
2816   easier to see.
2818 * 'Create Branch' learned to fetch remote branches and uses a
2819   background thread to do so.
2821 * User-configured GUI tools are listed alphabetically in the 'Actions' menu.
2823 * The 'Pull' dialog remembers the value of the 'Rebase' checkbox
2824   between invocations.
2827 .. _v1.7.4.1:
2829 v1.7.4.1
2830 ========
2832 Fixes
2833 -----
2834 * Detect Homebrew so that OS X users do not need to set PYTHONPATH.
2836 * `git dag` can export patches again.
2839 .. _v1.7.4:
2841 v1.7.4
2842 ======
2844 Usability, bells and whistles
2845 -----------------------------
2846 * The 'Classic' tool was renamed to 'Browser' and learned to
2847   limit history to the current branch.
2849 * `git dag` learned about gravatar and uses it to show images
2850   for commit authors.
2852 * `git dag` learned to use OpenGL for rendering resulting in
2853   much faster rendering.
2855 * More dialogs learned vim-style keyboard shortcuts.
2857 * The commit message editor learned better arrow key navigation.
2860 .. _v1.7.3:
2862 v1.7.3
2863 ======
2865 Usability, bells and whistles
2866 -----------------------------
2867 * `git cola` learned a few new sub commands:
2869 .. sourcecode:: sh
2871     git cola dag
2872     git cola branch
2873     git cola search
2875 * `Return` in the summary field jumps to the extended description.
2877 * `Ctrl+Return` is now a shortcut for 'Commit'.
2879 * Better French translation for 'Sign-off'.
2881 * The 'Search' widget now has a much simpler and streamlined
2882   user interface.
2884 * vim-style `h,j,k,l` navigation shortcuts were added to the DAG widget.
2886 * `git dag` no longer prompts for files when diffing commits if the
2887   text field contains paths.
2889 * General user interface and performance improvements.
2891 Fixes
2892 -----
2893 * The diff viewer no longer changes font size when holding `Control`
2894   while scrolling with the mouse wheel.
2896 * Files with a typechange (e.g. symlinks that become files, etc.)
2897   are now correctly identified as being modified.
2899 Packaging
2900 ---------
2901 * The `cola.controllers` and `cola.views` packages were removed.
2904 .. _v1.7.2:
2906 v1.7.2
2907 ======
2909 Usability, bells and whistles
2910 -----------------------------
2911 * `git cola` can now launch sub commands, e.g.:
2913 .. sourcecode:: sh
2915     git cola classic
2916     git cola stash
2917     git cola fetch
2918     git cola push
2919     git cola pull
2920     git cola tag
2922 * `git dag` is more responsive when gathering auto-completions.
2924 * Keyboard shortcuts are displayed when the '?' key is pressed.
2926 * Various keyboard shortcuts were added for improved usability.
2928 * The status widget now lists unmerged files before modified files.
2930 * vim-style `h,j,k,l` navigation shortcuts were added to the status widget.
2932 * A 'Recently Modified Files...' tool was added.
2934 * Tools can now be hidden with `Alt + #` (where `#` is a keyboard number)
2935   and focused with `Alt + Shift + #`.
2937 * The syntax highlighting colors for diffs was made less intrusive.
2939 * The commit message editor was redesigned to have a more compact
2940   and keyboard-convenient user interface.
2941   
2942 * Keyboard shortcuts for adding a Signed-off-by (`Ctrl + i`)
2943   and creating a commit (`Ctrl + m`) were added.
2945 * The status widget was adjusted to use less screen real-estate.
2947 Fixes
2948 -----
2949 * Avoid updating the index when responding to inotify events.
2950   This avoids interfering with operations such as `git rebase --interactive`.
2951   (`#99 <https://github.com/git-cola/git-cola/issues/99>`_)
2953 Packaging
2954 ---------
2955 * Create `git-dag.pyw` in the win32 installer.
2957 * win32 shortcuts now contain explicit calls to `pythonw.exe` instead of
2958   calling the `.pyw` file directly.
2960 Deprecated Features
2961 -------------------
2962 * The 'Apply Changes from Branch...' feature was removed.
2963   `git dag`'s 'Grab File...' feature used alongside the index/worktree editor
2964   is a simpler alternative.
2967 .. _v1.7.1.1:
2969 v1.7.1.1
2970 ========
2972 Fixes
2973 -----
2974 * Further enhanced the staging/unstaging behavior in the status widget.
2975   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
2977 * Unmerged files are no longer listed as modified.
2979 Packaging
2980 ---------
2981 The `cola-$version` tarballs on github were originally setup to
2982 have the same contents as the old tarballs hosted on tuxfamily.
2983 The `make dist` target was changed to write files to a
2984 `git-cola-$version` subdirectory and tarball.
2986 This makes the filenames consistent for the source tarball,
2987 the darwin .app tarball, and the win32 .exe installer.
2990 .. _v1.7.1:
2992 v1.7.1
2993 ======
2995 Usability, bells and whistles
2996 -----------------------------
2997 * Refined the staging/unstaging behavior for code reviews.
2998   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
3000 * Added more styling and icons to menus and buttons.
3002 * Adjusted some terminology to more closely match the git CLI.
3004 Fixes
3005 -----
3006 * Boolean `git config` settings with no value are now supported
3007   (these are not created by git these days but exist in legacy repositories).
3009 * Unicode branches and tags are supported in the "branch diff" tool.
3011 * Guard against low-memory conditions and more interrupted system calls.
3013 Packaging
3014 ---------
3015 * Added desktop launchers for git-cola.desktop and git-dag.desktop.
3016   This replaces the old cola.desktop, so some adjustments to RPM .spec
3017   and debian/ files will be needed.
3019 * Fixed the darwin app-tarball Makefile target to create relative paths.
3021 Cleanup
3022 -------
3023 * The `--style` option was removed.  `git cola` follows the system theme
3024   so there's no need for this option these days.
3027 .. _v1.7.0:
3029 v1.7.0
3030 ======
3032 Usability, bells and whistles
3033 -----------------------------
3034 * Export a patch series from `git dag` into a `patches/` directory.
3036 * `git dag` learned to diff commits, slice history along paths, etc.
3038 * Added instant-preview to the `git stash` widget.
3040 * A simpler preferences editor is used to edit `git config` values.
3041   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
3042   (`#89 <https://github.com/git-cola/git-cola/issues/89>`_)
3044 * Previous commit messages can be re-loaded from the message editor.
3045   (`#33 <https://github.com/git-cola/git-cola/issues/33>`_)
3047 Fixes
3048 -----
3049 * Display commits with no file changes.
3050   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
3052 * Improved the diff editor's copy/paste behavior
3053   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
3055 Packaging
3056 ---------
3057 * Bumped version number to ceil(minimum git version).
3058   `git cola` now requires `git` >= 1.6.3.
3060 * Simplified git-cola's versioning when building from tarballs
3061   outside of git.  We no longer check for a 'version' file at
3062   the root of the repository.  We instead keep a default version
3063   in `cola/version.py` and use it when `git cola`'s `.git` repository
3064   is not available.
3067 .. _v1.4.3.5:
3069 v1.4.3.5
3070 ========
3072 Usability, bells and whistles
3073 -----------------------------
3074 * inotify is much snappier and available on Windows
3075   thanks to Karl Bielefeldt.
3077 * New right-click command to add untracked files to .gitignore
3078   thanks to Audrius Karabanovas.
3080 * Stash, fetch, push, and pull usability improvements
3082 * General usability improvements
3084 * stderr is logged when applying partial diffs.
3086 Fixes
3087 -----
3088 * Files can be unstaged when amending.
3089   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
3091 * Show the configured remote.$remote.pushurl in the GUI
3092   (`#83 <https://github.com/git-cola/git-cola/issues/83>`_)
3094 * Removed usage of the "user" module.
3095   (`#86 <https://github.com/git-cola/git-cola/issues/86>`_)
3097 * Avoids an extra `git update-index` call during startup.
3100 .. _v1.4.3.4:
3102 v1.4.3.4
3103 ========
3105 Usability, bells and whistles
3106 -----------------------------
3107 * We now provide better feedback when `git push` fails.
3108   (`#69 <https://github.com/git-cola/git-cola/issues/69>`_)
3110 * The Fetch, Push, and Pull dialogs now give better feedback
3111   when interacting with remotes.  The dialogs are modal and
3112   a progress dialog is used.
3114 Fixes
3115 -----
3116 * More unicode fixes, again.  It is now possible to have
3117   unicode branch names, repository paths, home directories, etc.
3118   This continued the work initiated by Redhat's bugzilla #694806.
3120   https://bugzilla.redhat.com/show_bug.cgi?id=694806
3123 .. _v1.4.3.3:
3125 v1.4.3.3
3126 ========
3128 Usability, bells and whistles
3129 -----------------------------
3130 * The `git cola` desktop launchers now prompt for a repo
3131   by default.  This is done by using the new `--prompt`
3132   flag which tells `git cola` to ignore any git repositories
3133   in the current directory and prompt for one instead.
3135 Fixes
3136 -----
3137 * More Unicode fixes for repositories and home directories with
3138   embedded unicode characters.  Thanks to Christian Jann for
3139   patience and helpful bug reports.
3141 * Fix the 'Clone' button in the startup dialog.
3144 .. _v1.4.3.2:
3146 v1.4.3.2
3147 ========
3149 Usability, bells and whistles
3150 -----------------------------
3151 * Faster startup time! `git cola` now offloads initialization
3152   to a background thread so that the GUI appears almost instantly.
3154 * Specialized diff options for p4merge, vimdiff, araxis, emerge,
3155   and ecmerge in difftool (backported from git.git).
3157 Fixes
3158 -----
3159 * Fix launching commands in the background on Windows
3160   (e.g. when launching `git difftool`).
3162 * Fix unicode errors when home or repository directories contain
3163   unicode characters.
3164   (`#74 <https://github.com/git-cola/git-cola/issues/74>`_)
3165   (`bz #694806 <https://bugzilla.redhat.com/show_bug.cgi?id=694806>`_)
3168 .. _v1.4.3.1:
3170 v1.4.3.1
3171 ========
3173 Usability, bells and whistles
3174 -----------------------------
3175 * The `cola classic` tool can be now configured to be dockable.
3176   (`#56 <https://github.com/git-cola/git-cola/issues/56>`_)
3178 * The `cola classic` tool now uses visual sigils to indicate a file's status.
3179   The idea and icons were provided by Uri Okrent.
3181 * Include the 'Rescan' button in the 'Actions' widget regardless
3182   of whether inotify is installed.
3184 Packaging
3185 ---------
3186 * Fix installation of translations per Fedora
3187   This incorporates Fedora's fix for the translations path
3188   which originally appeared in cola-1.4.3-translations.patch.
3190 * Mac OS X git-cola developers can now generate git-cola.app
3191   application bundles using 'make app-bundle'.
3193 Fixes
3194 -----
3195 * Fixed a stacktrace when trying to use "Get Commit Message Template"
3196   with an unconfigured "commit.template" git config variable.
3197   (`bz #67521 <https://bugzilla.redhat.com/show_bug.cgi?id=675721>`_)
3198   (`#72 <https://github.com/git-cola/git-cola/issues/72>`_)
3200 * Properly raise the main window on Mac OS X.
3202 * Properly handle staging a huge numbers of files at once.
3204 * Speed up 'git config' usage by fixing cola's caching proxy.
3206 * Guard against damaged ~/.cola files.
3209 .. _v1.4.3:
3211 v1.4.3
3212 ======
3214 Usability, bells and whistles
3215 -----------------------------
3216 * `git dag` now has a separate display area
3217   for displaying commit metadata.  This area will soon
3218   grow additional functionality such as cherry-picking,
3219   branching, etc.
3221 Fixes
3222 -----
3223 * Fixed tests from a previous refactoring.
3225 * Guard against 'diff.external' configuration by always
3226   calling 'git diff' with the '--no-ext-diff' option.
3227   (`#67 <https://github.com/git-cola/git-cola/issues/67>`_)
3229 * Respect 'gui.diffcontext' so that cola's diff display
3230   shows the correct number of context lines.
3232 * Raise the GUI so that it is in the foreground on OS X.
3234 Packaging
3235 ---------
3236 * We now allow distutils to rewrite cola's shebang line.
3237   This allows us to run on systems where "which python"
3238   is Python3k.  This is exposed by setting the `PYTHON`
3239   Makefile variable to the location of python2.x.
3241 * git-cola.app is now a tiny download because it no longer
3242   contains Qt and PyQt.  These libraries are provided as a
3243   separate download.
3244   (`Link <http://code.google.com/p/git-cola/downloads/list>`_)
3247 .. _v1.4.2.5:
3249 v1.4.2.5
3250 ========
3252 Usability, bells and whistles
3253 -----------------------------
3254 * Clicking on paths in the status widget copies them into the
3255   copy/paste buffer for easy middle-clicking into terminals.
3257 * `Ctrl+C` in diff viewer copies the selected diff to the clipboard.
3259 Fixes
3260 -----
3261 * Fixed the disappearing actions buttons on PyQt 4.7.4
3262   as reported by Arch and Ubuntu 10.10.
3263   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
3265 * Fixed mouse interaction with the status widget where some
3266   items could not be de-selected.
3268 Packaging
3269 ---------
3270 * Removed hard-coded reference to lib/ when calculating Python's
3271   site-packages directory.
3274 .. _v1.4.2.4:
3276 v1.4.2.4
3277 ========
3279 Usability, bells and whistles
3280 -----------------------------
3281 * Removed "single-click to (un)stage" in the status view.
3282   This is a usability improvement since we no longer perform
3283   different actions depending on where a row is clicked.
3285 * Added ability to create unsigned, annotated tags.
3287 Fixes
3288 -----
3289 * Updated documentation to use `cola.git` instead of `cola.gitcmd`.
3292 .. _v1.4.2.3:
3294 v1.4.2.3
3295 ========
3297 Usability, bells and whistles
3298 -----------------------------
3299 * Allow un/staging by right-clicking top-level items
3300   (`#57 <https://github.com/git-cola/git-cola/issues/57>`_)
3302 * Running 'commit' with no staged changes prompts to allow
3303   staging all files.
3304   (`#55 <https://github.com/git-cola/git-cola/issues/55>`_)
3306 * Fetch, Push, and Pull are now available via the menus
3307   (`#58 <https://github.com/git-cola/git-cola/issues/58>`_)
3309 Fixes
3310 -----
3311 * Simplified the actions widget to work around a regression
3312   in PyQt4 4.7.4.
3313   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
3316 .. _v1.4.2.2:
3318 v1.4.2.2
3319 ========
3321 Usability, bells and whistles
3322 -----------------------------
3323 * `git dag` interaction was made faster.
3325 Fixes
3326 -----
3327 * Added '...' indicators to the buttons for
3328   'Fetch...', 'Push...', 'Pull...', and 'Stash...'.
3329   (`#51 <https://github.com/git-cola/git-cola/issues/51>`_)
3331 * Fixed a hang-on-exit bug in the cola-provided
3332   'ssh-askpass' implementation.
3335 .. _v1.4.2.1:
3337 v1.4.2.1
3338 ========
3340 Usability, bells and whistles
3341 -----------------------------
3342 * Staging and unstaging is faster.
3343   (`#48 <https://github.com/git-cola/git-cola/issues/48>`_)
3345 * `git dag` reads history in a background thread.
3347 Portability
3348 -----------
3349 * Added :data:`cola.compat.hashlib` for `Python 2.4` compatibility
3350 * Improved `PyQt 4.1.x` compatibility.
3352 Fixes
3353 -----
3354 * Configured menu actions use ``sh -c`` for Windows portability.
3357 .. _v1.4.2:
3359 v1.4.2
3360 ======
3362 Usability, bells and whistles
3363 -----------------------------
3364 * Added support for the configurable ``guitool.<tool>.*``
3365   actions as described in the ``git config`` documentation.
3366   (`git-config(1) <https://git-scm.com/docs/git-config>`_)
3367   (`#44 <https://github.com/git-cola/git-cola/issues/44>`_)
3369   This makes it possible to add new actions to `git cola`
3370   by simply editing ``~/.gitconfig``.  This implements the
3371   same guitool support as `git gui`.
3373 * Introduced a stat cache to speed up `git config` and
3374   repository status checks.
3376 * Added Alt-key shortcuts to the main `git cola` interface.
3378 * The `Actions` dock widget switches between a horizontal
3379   and vertical layout when resized.
3381 * We now use ``git diff --submodule`` for submodules
3382   (used when git >= 1.6.6).
3384 * The context menu for modified submodules includes an option
3385   to launch `git cola`.
3386   (`#17 <https://github.com/git-cola/git-cola/issues/17>`_)
3388 * Prefer ``$VISUAL`` over ``$EDITOR`` when both are defined.
3389   These are used to set a default editor in lieu of `core.editor`
3390   configuration.
3392 * Force the editor to be ``gvim`` when we see ``vim``.
3393   This prevents us from launching an editor in the (typically
3394   unattached) parent terminal and creating zombie editors
3395   that cannot be easily killed.
3397 * Selections are remembered and restored across updates.
3398   This makes the `partial-staging` workflow easier since the
3399   diff view will show the updated diff after staging.
3401 * Show the path to the current repository in a tooltip
3402   over the commit message editor.
3403   (`#45 <https://github.com/git-cola/git-cola/issues/45>`_)
3405 * Log internal ``git`` commands when ``GIT_COLA_TRACE`` is defined.
3406   (`#39 <https://github.com/git-cola/git-cola/issues/39>`_)
3408 Fixes
3409 -----
3410 * Improved backwards compatibility for Python 2.4.
3412 * `Review mode` can now review the current branch; it no longer
3413   requires you to checkout the branch into which the reviewed
3414   branch will be merged.
3416 * Guard against `color.ui = always` configuration when using
3417   `git log` by passing ``--no-color``.
3419 * ``yes`` and ``no`` are now supported as valid booleans
3420   by the `git config` parser.
3422 * Better defaults are used for `fetch`, `push`, and `pull`..
3423   (`#43 <https://github.com/git-cola/git-cola/issues/43>`_)
3425 Packaging
3426 ---------
3427 * Removed colon (`:`) from the applilcation name on Windows
3428   (`#41 <https://github.com/git-cola/git-cola/issues/41>`_)
3430 * Fixed bugs with the Windows installer
3431   (`#40 <https://github.com/git-cola/git-cola/issues/40>`_)
3433 * Added a more standard i18n infrastructure.  The install
3434   tree now has the common ``share/locale/$lang/LC_MESSAGES/git-cola.mo``
3435   layout in use by several projects.
3437 * Started trying to accommodate Mac OSX 10.6 (Snow Leopard)
3438   in the ``darwin/`` build scripts but our tester is yet to
3439   report success building a `.app` bundle.
3441 * Replaced use of ``perl`` in Sphinx/documentation Makefile
3442   with more-portable ``sed`` constructs.  Thanks to
3443   Stefan Naewe for discovering the portability issues and
3444   providing msysgit-friendly patches.
3447 .. _v1.4.1.2:
3449 v1.4.1.2
3450 ========
3452 Usability, bells and whistles
3453 -----------------------------
3454 * It is now possible to checkout from the index as well
3455   as from `HEAD`.  This corresponds to the
3456   `Removed Unstaged Changes` action in the `Repository Status` tool.
3458 * The `remote` dialogs (fetch, push, pull) are now slightly
3459   larger by default.
3461 * Bookmarks can be selected when `git cola` is run outside of a git repository.
3463 * Added more user documentation.  We now include many links to
3464   external git resources.
3466 * Added `git dag` to the available tools.
3467   `git dag` is a node-based DAG history browser.
3468   It doesn't do much yet, but it's been merged so that we can start
3469   building and improving upon it.
3471 Fixes
3472 -----
3473 * Fixed a missing ``import`` when showing `right-click` actions
3474   for unmerged files in the `Repository Status` tool.
3476 * ``git update-index --refresh`` is no longer run every time
3477   ``git cola version`` is run.
3479 * Don't try to watch non-existent directories when using `inotify`.
3481 * Use ``git rev-parse --symbolic-full-name`` plumbing to find
3482   the name of the current branch.
3484 Packaging
3485 ---------
3486 * The ``Makefile`` will now conditionally include a ``config.mak``
3487   file located at the root of the project.  This allows for user
3488   customizations such as changes to the `prefix` variable
3489   to be stored in a file so that custom settings do not need to
3490   be specified every time on the command-line.
3492 * The build scripts no longer require a ``.git`` directory to
3493   generate the ``builtin_version.py`` module.  The release tarballs
3494   now include a ``version`` file at the root of the project which
3495   is used in lieu of having the git repository available.
3496   This allows for ``make clean && make`` to function outside of
3497   a git repository.
3499 * Added maintainer's ``make dist`` target to the ``Makefile``.
3501 * The built-in `simplejson` and `jsonpickle` libraries can be
3502   excluded from ``make install`` by specifying the ``standalone=true``
3503   `make` variable.  For example, ``make standalone=true install``.
3504   This corresponds to the ``--standalone`` option to ``setup.py``.
3507 .. _v1.4.1.1:
3509 v1.4.1.1
3510 ========
3512 Usability, bells and whistles
3513 -----------------------------
3514 * We now use patience diff by default when it is available via
3515   `git diff --patience`.
3517 * Allow closing the `cola classic` tool with `Ctrl+W`.
3519 Fixes
3520 -----
3521 * Fixed an unbound variable error in the `push` dialog.
3523 Packaging
3524 ---------
3525 * Don't include `simplejson` in MANIFEST.in.
3527 * Update desktop entry to read `Cola Git GUI`.
3530 .. _v1.4.1:
3532 v1.4.1
3533 ======
3535 This feature release adds two new features directly from
3536 `git cola`'s github issues backlog.  On the developer
3537 front, further work was done towards modularizing the code base.
3539 Usability, bells and whistles
3540 -----------------------------
3541 * Dragging and dropping patches invokes `git am`
3542   (`#3 <https://github.com/git-cola/git-cola/issues/3>`_)
3544 * A dialog to allow opening or cloning a repository
3545   is presented when `git cola` is launched outside of a git repository.
3546   (`#22 <https://github.com/git-cola/git-cola/issues/22>`_)
3548 * Warn when `push` is used to create a new branch
3549   (`#35 <https://github.com/git-cola/git-cola/issues/35>`_)
3551 * Optimized startup time by removing several calls to `git`.
3554 Portability
3555 -----------
3556 * `git cola` is once again compatible with PyQt 4.3.x.
3558 Developer
3559 ---------
3560 * `cola.gitcmds` was added to factor out git command-line utilities
3562 * `cola.gitcfg` was added for interacting with `git config`
3564 * `cola.models.browser` was added to factor out repobrowser data
3566 * Added more tests
3569 .. _v1.4.0.5:
3571 v1.4.0.5
3572 ========
3574 Fixes
3575 -----
3576 * Fix launching external applications on Windows
3578 * Ensure that the `amend` checkbox is unchecked when switching modes
3580 * Update the status tree when amending commits
3583 .. _v1.4.0.4:
3585 v1.4.0.4
3586 ========
3588 Packaging
3589 ---------
3590 * Fix Lintian warnings
3593 .. _v1.4.0.3:
3595 v1.4.0.3
3596 ========
3598 Fixes
3599 -----
3600 * Fix X11 warnings on application startup
3603 .. _v1.4.0.2:
3605 v1.4.0.2
3606 ========
3608 Fixes
3609 -----
3610 * Added missing 'Exit Diff Mode' button for 'Diff Expression' mode
3611   (`#31 <https://github.com/git-cola/git-cola/issues/31>`_)
3613 * Fix a bug when initializing fonts on Windows
3614   (`#32 <https://github.com/git-cola/git-cola/issues/32>`_)
3617 .. _v1.4.0.1:
3619 v1.4.0.1
3620 ========
3622 Fixes
3623 -----
3624 * Keep entries in sorted order in the `cola classic` tool
3626 * Fix staging untracked files
3627   (`#27 <https://github.com/git-cola/git-cola/issues/27>`_)
3629 * Fix the `show` command in the Stash dialog
3630   (`#29 <https://github.com/git-cola/git-cola/issues/29>`_)
3632 * Fix a typo when loading merge commit messages
3633   (`#30 <https://github.com/git-cola/git-cola/issues/30>`_)
3636 .. _v1.4.0:
3638 v1.4.0
3639 ======
3641 This release focuses on a redesign of the git-cola user interface,
3642 a tags interface, and better integration of the `cola classic` tool.
3643 A flexible interface based on configurable docks is used to manage the
3644 various cola widgets.
3646 Usability, bells and whistles
3647 -----------------------------
3648 * New GUI is flexible and user-configurable
3650 * Individual widgets can be detached and rearranged arbitrarily
3652 * Add an interface for creating tags
3654 * Provide a fallback `SSH_ASKPASS` implementation to prompt for
3655   SSH passwords on fetch/push/pull
3657 * The commit message editor displays the current row/column and
3658   warns when lines get too long
3660 * The `cola classic` tool displays upstream changes
3662 * `git cola --classic` launches `cola classic` in standalone mode
3664 * Provide more information in log messages
3666 Fixes
3667 -----
3668 * Inherit the window manager's font settings
3670 * Miscellaneous PyQt4 bug fixes and workarounds
3672 Developer
3673 ---------
3674 * Removed all usage of Qt Designer `.ui` files
3676 * Simpler model/view architecture
3678 * Selection is now shared across tools
3680 * Centralized notifications are used to keep views in sync
3682 * The `cola.git` command class was made thread-safe
3684 * Less coupling between model and view actions
3686 * The status view was rewritten to use the MVC architecture
3688 * Added more documentation and tests
3691 .. _v1.3.9:
3693 v1.3.9
3694 ======
3696 Usability, bells and whistles
3697 -----------------------------
3698 * Added a `cola classic` tool for browsing the entire repository
3700 * Handle diff expressions with spaces
3702 * Handle renamed files
3704 Portability
3705 -----------
3706 * Handle carat `^` characters in diff expressions on Windows
3708 * Worked around a PyQt 4.5/4.6 QThreadPool bug
3710 Documentation
3711 -------------
3712 * Added a keyboard shortcuts reference page
3714 * Added developer API documentation
3716 Fixes
3717 -----
3718 * Fix the diff expression used when reviewing branches
3720 * Fix a bug when pushing branches
3722 * Fix X11 warnings at startup
3724 * Fix more interrupted system calls on Mac OS X
3727 .. _v1.3.8:
3729 v1.3.8
3730 ======
3732 Usability, bells and whistles
3733 -----------------------------
3734 * Fresh and tasty SVG logos
3736 * Added `Branch Review` mode for reviewing topic branches
3738 * Added diff modes for diffing between tags, branches,
3739   or arbitrary `git diff` expressions
3741 * The push dialog selects the current branch by default.
3742   This is in preparation for `git 1.7.0` where unconfigured `git push`
3743   will refuse to push when run without specifying the remote name
3744   and branch.  See the `git` release notes for more information
3746 * Support `open` and `clone` commands on Windows
3748 * Allow saving cola UI layouts
3750 * Re-enabled `double-click-to-stage` for unmerged entries.
3751   Disabling it for unmerged items was inconsistent, though safer.
3753 * Show diffs when navigating the status tree with the keyboard
3755 Packaging
3756 ---------
3757 * Worked around `pyuic4` bugs in the `setup.py` build script
3759 * Added Mac OSX application bundles to the download page
3762 .. _v1.3.7:
3764 v1.3.7
3765 ======
3767 Subsystems
3768 ----------
3769 * `git difftool` became an official git command in `git 1.6.3`.
3771 * `git difftool` learned `--no-prompt` / `-y` and a corresponding
3772   `difftool.prompt` configuration variable
3774 Usability, bells and whistles
3775 -----------------------------
3776 * Warn when `non-fast-forward` is used with fetch, push or pull
3778 * Allow `Ctrl+C` to exit cola when run from the command line
3780 Fixes
3781 -----
3782 * Support Unicode font names
3784 * Handle interrupted system calls
3786 Developer
3787 ---------
3788 * `PEP-8`-ified more of the cola code base
3790 * Added more tests
3792 Packaging
3793 ---------
3794 * All resources are now installed into `$prefix/share/git-cola`.
3795   Closed Debian bug #519972
3797   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519972
3800 .. _v1.3.6:
3802 v1.3.6
3803 ======
3805 Subsystems
3806 ----------
3807 * Added support for Kompare in `git difftool`
3809 * Added a separate configuration namespace for `git difftool`
3811 * Added the `diff.tool` configuration variable to define the default diff tool
3813 Usability, bells and whistles
3814 -----------------------------
3815 * The stash dialog allows passing the `--keep-index` option to `git stash`
3817 * Amending a published commit warns at commit time
3819 * Simplified the file-across-revisions comparison dialog
3821 * `origin` is selected by default in fetch/push/pull
3823 * Removed the search field from the log widget
3825 * The log window moved into a drawer widget at the bottom of the UI
3827 * Log window display can be configured with
3828   `cola.showoutput` = `{never, always, errors}`.  `errors` is the default.
3830 * `NOTE` -- `cola.showoutput` was removed with the GUI rewrite in 1.4.0.
3832 Developer
3833 ---------
3834 * Improved nose unittest usage
3836 Packaging
3837 ---------
3838 * Added a Windows/msysGit installer
3840 * Included private versions of `simplejson` and `jsonpickle`
3841   for ease of installation and development