cmds: use "git revert --no-edit"
[git-cola.git] / share / doc / git-cola / relnotes.rst
blob9409a5a55130685623daf68ba2724d5f4a5b1e89
1 ========
2 Releases
3 ========
5 Latest Release
6 ==============
8 :ref:`v3.6 <v3.6>` is the latest stable release.
10 Development version
11 ===================
13 Clone the git-cola repo to get the latest development version:
15 ``git clone git://github.com/git-cola/git-cola.git``
17 .. _v3.7:
19 Fixes
20 -----
21 * The "revert" action in the DAG and other tools now uses
22   ``git revert --no-edit``, which avoids launching an editor
23   when reverting the commit.  Use `Ctrl+m` in the commit message
24   editor after reverting a commit to rewrite its commit message.
25   (`#1020 <https://github.com/git-cola/git-cola/issues/1020>`_)
27 .. _v3.6:
29 Usability, bells and whistles
30 -----------------------------
31 * The remote editor is much faster since it no longer queries
32   remotes, and uses the cached information instead.
33   (`#986 <https://github.com/git-cola/git-cola/issues/986>`_)
35 * Commit message templates can now be loaded automatically by setting
36   ``git config cola.autoloadcommittemplate true``.
37   (`#1013 <https://github.com/git-cola/git-cola/pull/1013>`_)
38   (`#735 <https://github.com/git-cola/git-cola/pull/735>`_)
40 * The UI layout can now be reset back to its initial state by selecting
41   the "Reset Layout" action.  This reverts the layout to the same state
42   as when the app first launched.
43   (`#1008 <https://github.com/git-cola/git-cola/pull/1008>`_)
44   (`#994 <https://github.com/git-cola/git-cola/issues/994>`_)
46 * Files can now be ignored in either the project's `.gitignore`, or in the
47   repository's private local `.git/info/exclude` ignore file.
48   (`#1006 <https://github.com/git-cola/git-cola/pull/1006>`_)
49   (`#1000 <https://github.com/git-cola/git-cola/issues/1000>`_)
51 * New remotes are now selected when they are added in the "Edit Remotes" tool.
52   (`#1002 <https://github.com/git-cola/git-cola/pull/1002>`_)
54 * The "Recent" repositories list is now saved to disk when opening a
55   repository.  Previously, this list was only updated when exiting the app.
56   (`#1001 <https://github.com/git-cola/git-cola/pull/1001>`_)
58 * The bookmarks tool now has a "Delete" option in its right-click menu.
59   (`#999 <https://github.com/git-cola/git-cola/pull/999>`_)
61 * The current repository is no longer listed in the "File/Open Recent" menu.
62   (`#998 <https://github.com/git-cola/git-cola/pull/998>`_)
64 Translations
65 ------------
66 * Updated Hungarian translation.
67   (`#1005 <https://github.com/git-cola/git-cola/pull/1005>`_)
68   (`#1018 <https://github.com/git-cola/git-cola/pull/1018>`_)
70 * Updated Turkish translation.
71   (`#1003 <https://github.com/git-cola/git-cola/pull/1003>`_)
72   (`#1011 <https://github.com/git-cola/git-cola/pull/1011>`_)
74 Fixes
75 -----
76 * Better support for Python 3.8's line buffering modes.
77   (`#1014 <https://github.com/git-cola/git-cola/pull/1014>`_)
79 * The default `ssh-askpass` script now uses a more generic `#!` shebang line.
80   (`#1012 <https://github.com/git-cola/git-cola/pull/1012>`_)
82 * Fetch, push, and pull operations will now refresh the model and display when
83   operations complete.
84   (`#996 <https://github.com/git-cola/git-cola/issues/996>`_)
86 * The branches widget now refreshes its display when changing branches.
87   (`#992 <https://github.com/git-cola/git-cola/pull/992>`_)
89 Packaging
90 ---------
91 * The `share/git-cola/bin/git-xbase` script will now have its `#!` lines
92   updated during installation.
93   (`#991 <https://github.com/git-cola/git-cola/pull/991>`_)
95 Development
96 -----------
97 * The unit tests were made more platform-independent.
98   (`#993 <https://github.com/git-cola/git-cola/pull/993>`_)
100 .. _v3.5:
102 Usability, bells and whistles
103 -----------------------------
104 * Auto-completion for filenames can now be disabled.  This speeds up
105   revision completion when working in large repositories with many files.
106   (`#981 <https://github.com/git-cola/git-cola/pull/981>`_)
108 * The Stash dialog now shows the stash date as a tooltip when hovering
109   over a stashed change.
110   (`#982 <https://github.com/git-cola/git-cola/pull/982>`_)
112 * Qt HiDPI settings are overriden by the `git cola` HiDPI appearance settings.
113   These overrides can now be disabled by selecting the "Disable" mode.
114   This allows users to control Qt's HiDPI settings through environment
115   variables.  Additionally, the "Auto" mode now detects the presence of
116   the Qt HiDPI variables and no longer overrides them when the user has
117   configured their environment explicitly.
118   (`#963 <https://github.com/git-cola/git-cola/issues/963>`_)
120 * Confirmation dialogs can now focus buttons using the Tab key.
121   Previously, the "Y" and "N" keys could be used to confirm or deny
122   using the keyboard, but "Tab" is more familiar.
123   (`#965 <https://github.com/git-cola/git-cola/issues/965>`_)
125 * Error dialogs (for example, when a commit hook fails) will now always
126   show the details.  The details were previously hidden behind a toggle.
127   (`#968 <https://github.com/git-cola/git-cola/issues/968>`_)
129 Translations
130 ------------
131 * Updated Japanese translation.
132   (`#973 <https://github.com/git-cola/git-cola/pull/973>`_)
133   (`#974 <https://github.com/git-cola/git-cola/pull/974>`_)
135 * Updated Simplified Chinese translation.
136   (`#950 <https://github.com/git-cola/git-cola/pull/950>`_)
138 Fixes
139 -----
140 * The filesystem monitor no longer logs that it has been enabled after the
141   inotify watch limit is reached on Linux.
142   (`#984 <https://github.com/git-cola/git-cola/pull/984>`_)
144 * Better unicode robustness.
145   (`#990 <https://github.com/git-cola/git-cola/issues/990>`_)
146   (`#910 <https://github.com/git-cola/git-cola/issues/991>`_)
148 * The "Branches" widget did not always update itself when deleting branches
149   (for example, when inotify is disabled or unavailable).
150   (`#978 <https://github.com/git-cola/git-cola/issues/978>`_)
152 * Non-ascii unicode byte strings are more robustly handled by the log widget.
153   (`#977 <https://github.com/git-cola/git-cola/issues/977>`_)
155 * Non-unicode results from the `gettext` library are more robustly handled.
156   (`#969 <https://github.com/git-cola/git-cola/issues/969>`_)
158 * Launching `git cola` from within a directory that has since been deleted
159   would previously result in a traceback, and is now robustly handled.
160   (`#961 <https://github.com/git-cola/git-cola/issues/961>`_)
162 Packaging
163 ---------
164 * The vendored `qtpy` library was updated to `v1.9`.
166 .. _v3.4:
168 git-cola v3.4
169 =============
171 Usability, bells and whistles
172 -----------------------------
173 * The file browser now includes "Blame" in its context menu.
174   (`#953 <https://github.com/git-cola/git-cola/issues/953>`_)
176 * The "Push" action now uses "git push --force-with-lease" when using
177   the "Force" option with Git v1.8.5 and newer.
178   (`#946 <https://github.com/git-cola/git-cola/issues/946>`_)
180 * Updated German translation.
181   (`#936 <https://github.com/git-cola/git-cola/pull/936>`_)
183 * The `Status` widget learned to optionally display file counts in its
184   category headers, and indent the files displayed in each category.
185   (`#931 <https://github.com/git-cola/git-cola/pull/931>`_)
187 * The `Branches` widget can now sort branches by their most recent commit.
188   (`#930 <https://github.com/git-cola/git-cola/pull/930>`_)
190 * `git cola` now includes configurable GUI themes that can be used to style
191   the user interface.  Enable the new themes by configuring `cola.theme`
192   in the preferences window.  See the
193   `cola.theme documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#cola-theme>`_
194   for more details.  (`#924 <https://github.com/git-cola/git-cola/pull/924>`_)
196 * `git cola` now has built-in support for HiDPI displays by enabling
197   Qt's 5.6's `QT_AUTO_SCREEN_SCALE_FACTOR` feature.
198   (`#938 <https://github.com/git-cola/git-cola/issues/938>`_)
200 * `git cola` now uses HiDPI pixmaps when rendering icons, and the builtin
201   icons have been updated to look sharp when displayed in HiDPI.
202   (`#932 <https://github.com/git-cola/git-cola/pull/932>`_)
204 Fixes
205 -----
206 * `git cola`'s "Revert Unstaged Edits" previously checked out from "HEAD^",
207   when in "Amend" mode, and removing staged changes.  This behavior has been
208   changed to always checkout from the index, which avoids data loss.
209   (`#947 <https://github.com/git-cola/git-cola/issues/947>`_)
211 * `git cola` has been updated to work with newer versions of `gnome-terminal`
212   and no longer shell-quotes its arguments when launching `gnome-terminal`.
213   The `cola.terminalshellquote` configuration variable can be set to `true` to
214   get the old behavior, or to handle other terminals that take the command to run
215   as a single string instead of as arguments to `execv()`.
216   (`#935 <https://github.com/git-cola/git-cola/pull/935>`_)
218 * `git dag` now properly handles arbitrary input on Python3.
219   Previously, an exception would be raised when entering `--grep=xxx` where
220   `xxx` is a quoted string with a missing end-quote.
221   (`#941 <https://github.com/git-cola/git-cola/pull/941>`_)
223 Development
224 -----------
225 * The contribution guidelines for contributors has been updated to mention
226   how to regenerate the `*.mo` message files.
227   (`#934 <https://github.com/git-cola/git-cola/pull/934>`_)
229 .. _v3.3:
231 git-cola v3.3
232 =============
234 Usability, bells and whistles
235 -----------------------------
236 * `git dag` improved how it renders parent commits.
237   (`#921 <https://github.com/git-cola/git-cola/pull/921>`_)
239 * The `Branches` widget now checks out branches when double-clicked.
240   (`#920 <https://github.com/git-cola/git-cola/pull/920>`_)
242 * The new `Submodules` widget makes it easy to interact with submodules.
243   Additionally, submodules can now be updated using the `Status` widget.
244   (`#916 <https://github.com/git-cola/git-cola/pull/916>`_)
246 * Updated Japanese translation.
247   (`#914 <https://github.com/git-cola/git-cola/pull/914>`_)
249 * The "Open Terminal" action now launches a Git Bash shell on Windows.
250   (`#913 <https://github.com/git-cola/git-cola/pull/913>`_)
252 * New menu actions for updating all submodules.
253   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
255 * The status widget can now update submodules.
256   (`#911 <https://github.com/git-cola/git-cola/pull/911>`_)
258 * The "Apply Patch" `git cola am` dialog now includes a diff viewer
259   to display the contents of the selected patch.
261 * The "Alt+D" diffstat hotkey now selects the staged/modified/etc.
262   header in the Status widget, which shows the totality of everything
263   that will be committed.
264   (`#771 <https://github.com/git-cola/git-cola/issues/771>`_)
266 * Running "Launch Editor" from the diff editor now opens the editor at the
267   current line.
268   (`#898 <https://github.com/git-cola/git-cola/pull/898>`_)
270 * The textwidth and tabwidth configuration values can now be set
271   per-repository, rather than globally only.
273 * Text entry widgets switched to using a block cursor in `v3.2`.
274   This has been reverted to the original line cursor for consistency
275   with other applications and user expectations.
276   (`#889 <https://github.com/git-cola/git-cola/issues/889>`_)
278 * The "edit at line" feature, used by the "Grep" tool, now supports
279   the Sublime text editor.
280   (`#894 <https://github.com/git-cola/git-cola/pull/894>`_)
282 Fixes
283 -----
284 * Launching external programs has been improved on Windows.
285   (`#925 <https://github.com/git-cola/git-cola/pull/925>`_)
287 * Improve compatibility when using PySide2.
288   (`#912 <https://github.com/git-cola/git-cola/pull/912>`_)
290 * The Diff Editor was not honoring the configured tab width on startup.
291   (`#900 <https://github.com/git-cola/git-cola/issues/900>`_)
293 * The "Delete Files" feature was creating an unreadable display when
294   many files were selected.  Word-wrap the list of files so that the
295   display stays within a sensible size.
296   (`#895 <https://github.com/git-cola/git-cola/issues/895>`_)
298 * Spelling and grammar fixes.
299   (`#915 <https://github.com/git-cola/git-cola/pull/915>`_)
300   (`#891 <https://github.com/git-cola/git-cola/pull/891>`_)
302 Development
303 -----------
304 * The logo was run through `tidy` to give it a consistent style.
305   Some technical issues with the logo were improved.
306   (`#877 <https://github.com/git-cola/git-cola/issues/877>`_)
308 * The entire codebase is now checked by `flake8`, rather than just
309   the module and test directories.  This catches things like
310   the pynsist installer scripts.
311   (`#884 <https://github.com/git-cola/git-cola/issues/884>`_)
312   (`#882 <https://github.com/git-cola/git-cola/issues/882>`_)
313   (`#879 <https://github.com/git-cola/git-cola/pull/879>`_)
315 Packaging
316 ---------
317 * The vendored `qtpy` library was updated to `v1.6`.
319 * The Windows installer's wrapper scripts were missing an import.
320   (`#878 <https://github.com/git-cola/git-cola/issues/878>`_)
322 .. _v3.2:
324 git-cola v3.2
325 =============
327 Usability, bells and whistles
328 -----------------------------
329 * The `git cola dag` DAG window now supports `git revert`.
330   (`#843 <https://github.com/git-cola/git-cola/issues/843>`_)
332 * `git stash pop` is now supported by the stash dialog.
333   (`#844 <https://github.com/git-cola/git-cola/issues/844>`_)
335 * The status widget now ensures that each item is visible when selection
336   changes.  Previously, if you scrolled to the right to see the name of
337   a long filename, and then selected a short filename above it, the widget
338   may not have shown the short filename in the viewport.  We now ensure
339   that the filenames are visible when the selection changes.
340   (`#828 <https://github.com/git-cola/git-cola/pull/828>`_)
342 * The `git xbase` rebase editor no longer displays an error when
343   cancelling an interactive rebase.
344   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
346 * The dialog shown when renaming remotes has been simplified.
347   (`#840 <https://github.com/git-cola/git-cola/pull/840>`_)
348   (`#838 <https://github.com/git-cola/git-cola/issues/838>`_)
350 * The help dialog in the `git-xbase` Rebase editor is now scrollable.
351   (`#855 <https://github.com/git-cola/git-cola/issues/855>`_)
353 Translations
354 ------------
355 * Updated Brazilian translation.
356   (`#845 <https://github.com/git-cola/git-cola/pull/845>`_)
358 * Updated Czech translation.
359   (`#854 <https://github.com/git-cola/git-cola/pull/854>`_)
360   (`#853 <https://github.com/git-cola/git-cola/pull/853>`_)
361   (`#835 <https://github.com/git-cola/git-cola/pull/835>`_)
362   (`#813 <https://github.com/git-cola/git-cola/pull/813>`_)
364 * Update Spanish translation.
365   (`#862 <https://github.com/git-cola/git-cola/pull/862>`_)
366   (`#867 <https://github.com/git-cola/git-cola/pull/867>`_)
368 Packaging
369 ---------
370 * The original `#!/usr/bin/env python` shebang lines can now be
371   retained by passing `USE_ENV_PYTHON=1` to `make` when installing.
372   (`#850 <https://github.com/git-cola/git-cola/issues/850>`_)
374 * The Makefile is now resilient to DESTDIR and prefix containing whitespace.
375   (`#858 <https://github.com/git-cola/git-cola/pull/858>`_)
377 * The vendored `qtpy` library was updated to `v1.4.2`.
379 * `python3-distutils` is needed to build cola on Debian.
380   (`#837 <https://github.com/git-cola/git-cola/issues/837>`_)
382 Fixes
383 -----
384 * The "C" key no longer closes the message dialogs, for example the
385   one that is shown when a commit fails its pre-commit hooks.
386   This allows "Ctrl+C" copy to work, rather than closing the dialog.
387   (`#734 <https://github.com/git-cola/git-cola/issues/734>`_)
389 * Dock widgets sizes are now properly saved and restored when the main
390   window is maximized.
391   (`#848 <https://github.com/git-cola/git-cola/issues/848>`_)
393 * The spellcheck feature was broken under Python3.
394   (`#857 <https://github.com/git-cola/git-cola/issues/857>`_)
396 * A regression when saving stashes was fixed.
397   (`#847 <https://github.com/git-cola/git-cola/issues/847>`_)
399 * Diffing image files was not updating the available context menus,
400   which prevented the "Stage" action from being present in the menu.
401   (`#841 <https://github.com/git-cola/git-cola/issues/841>`_)
403 * `git cola` now detects when `git lfs uninstall` has been run.  This allows
404   you to re-initialize "Git LFS" in an existing repository where it had been
405   previously uninstalled.
406   (`#842 <https://github.com/git-cola/git-cola/issues/842>`_)
408 * Custom color values that did not contain any hexadecimal digits in the
409   `a-f` range were being converted into integers by the config reader.  This
410   then caused the configured colors to be ignored.
412   These color values are now interpreted correctly.  Additionally, color
413   values can now use an optional HTML-like `#` prefix.
415   Example `.gitconfig` snippet::
417     [cola "color"]
418         text = "#0a0303"
420   (`#836 <https://github.com/git-cola/git-cola/pull/836>`_)
421   (`#849 <https://github.com/git-cola/git-cola/issues/849>`_)
423 * We now display an error message graphically when `Git` is not installed.
424   Previously, the message went to stderr only.
425   (`#830 <https://github.com/git-cola/git-cola/issues/830>`_)
427 * Changing diff options was causing resulting in an exception.
428   (`#833 <https://github.com/git-cola/git-cola/issues/833>`_)
429   (`#834 <https://github.com/git-cola/git-cola/pull/834>`_)
431 * The DAG window now updates itself when branches and tags are created.
432   (`#814 <https://github.com/git-cola/git-cola/issues/814>`_)
434 * The user's `$PATH` environment variable can now contain utf-8
435   encoded paths.  Previously, launching external commands could
436   lead to tracebacks.
437   (`#807 <https://github.com/git-cola/git-cola/issues/807>`_)
439 * Git Cola development sandboxes can now be stored on utf-8 encoded
440   filesystem paths.  Previously, the interactive rebase feature
441   could be broken when running in that environment.
442   (`#825 <https://github.com/git-cola/git-cola/issues/825>`_)
444 * The log window now uses an ISO-8601 timestamp, which
445   avoids localized output in the log window.
446   (`#817 <https://github.com/git-cola/git-cola/issues/817>`_)
448 Development
449 -----------
450 * The code base has been thoroughly sanitized using `pylint`, and
451   travis is now running pylint over the entire project.
453 * Miscellaneous improvements and code improvements.
454   (`#874 <https://github.com/git-cola/git-cola/issues/874>`_)
456 .. _v3.1:
458 git-cola v3.1
459 =============
461 Usability, bells and whistles
462 -----------------------------
463 * The "Browser" widget learned to rename files using "git mv".
464   (`#239 <https://github.com/git-cola/git-cola/issues/239>`_)
466 * The "Diff" widget learned to diff images.  Side-by-side and pixel diff
467   modes allow you to inspect changes to common images formats.
468   (`#444 <https://github.com/git-cola/git-cola/issues/444>`_)
469   (`#803 <https://github.com/git-cola/git-cola/pull/803>`_)
471 * Git LFS and Git Annex are natively supported by the image diff viewer.
473 * Git Annex operations are now included. `git annex init` can be performed on
474   repositories, and `git annex add` can be run on untracked files from the
475   status widget.  Install `git-annex` to activate this feature.
477 * Git LFS operations are now included. `git lfs install` can be performed on
478   repositories, and `git lfs track` can be run on untracked files from the
479   status widget.  Install `git-lfs` to activate this feature.
481 * The "Stash" tool learned to stash staged changes only.  Select the
482   "Stage Index" option and only staged changes will be stashed away.
483   (`#413 <https://github.com/git-cola/git-cola/issues/413>`_)
485 * The "Stash" tool learned to use vim-like navigation keyboard shortcuts,
486   shows error messages when things go wrong, and now saves the "Stash Index"
487   and "Keep Index" options across sessions.
489 * The Edit menu's "Copy" and "Select All" actions now forward to either the
490   diff, status, recent, or favorites widgets, based on which widget has focus.
492 * The "File" and "Edit" menu can now be activated using `Alt-{f,e}` hotkeys.
493   (`#759 <https://github.com/git-cola/git-cola/issues/759>`_)
495 * It was easy to accidentally trigger the first action in the `Status` tool's
496   context menu when using a quick right-click to bring up the menu.
497   A short sub-second delay was added to ensure that the top-most action is not
498   triggered unless enough time has passed.  This prevents accidental
499   activation of the first item (typically "Stage" or "Unstage") without
500   burdening common use cases.
501   (`#755 <https://github.com/git-cola/git-cola/pull/755>`_)
502   (`#643 <https://github.com/git-cola/git-cola/issues/643>`_)
504 * The "Ctrl+S" hotkey now works for the header items in the Status tool.
505   Selected the "Modified" header item and activating the "Stage" hotkey,
506   for example, will stage all modified files.  This works for the "Staged",
507   "Modified", and "Untracked" headers.  This is not enabled for the
508   "Unmerged" header by design.
509   (`#772 <https://github.com/git-cola/git-cola/issues/772>`_)
511 * The list of "Recent" repositories previously capped the number of
512   repositories shown to 8 repositories.  This can be set to a higher
513   value by setting the `cola.maxrecent` configuration variable.
514   (`#752 <https://github.com/git-cola/git-cola/issues/752>`_)
516 * The "Create Branch" dialog now prevents invalid branch names.
517   (`#765 <https://github.com/git-cola/git-cola/issues/765>`_)
519 * Updated Turkish translation.
520   (`#756 <https://github.com/git-cola/git-cola/pull/756>`_)
522 * Updated Ukrainian translation.
523   (`#753 <https://github.com/git-cola/git-cola/pull/753>`_)
525 * Updated German translation.
526   (`#802 <https://github.com/git-cola/git-cola/pull/802>`_)
528 * Updated Czech translation
529   (`#792 <https://github.com/git-cola/git-cola/pull/792>`_)
530   (`#806 <https://github.com/git-cola/git-cola/pull/806>`_)
532 * The window title can be configured to not display the absolute path of the
533   repository.
534   (`#775 <https://github.com/git-cola/git-cola/issues/775>`_)
536 * The "Edit Remotes" editor learned to edit remote URLS.
538 * Bare repositories can now be created by selecting the
539   "New Bare Repository..." action from the `File` menu.
541 * The "Branches" widget learned to configure upstream branches.
543 * A new `git cola clone` sub-command was added for cloning repositories.
545 Packaging
546 ---------
547 * The vendored `qtpy` library was updated to `v1.3.1`.
549 * The macOS installation was made simpler for better compatibility with
550   Homebrew.
551   (`#636 <https://github.com/git-cola/git-cola/issues/636>`_)
553 * The Windows installer is now much simpler.  Git Cola now bundles
554   Python and PyQt5, so users need only install the "Git for Windows"
555   and "Git Cola" installers to get things working.
557 Fixes
558 -----
559 * Uninitialized difftool errors will now be displayed graphically.
560   They were previously going to the shell.
561   (`#457 <https://github.com/git-cola/git-cola/issues/457>`_)
563 * Translations marked "fuzzy" will no longer be used when translating strings.
564   (`#782 <https://github.com/git-cola/git-cola/issues/782>`_)
566 * Deleted unmerged files will now correctly use a deleted icon.
567   (`#479 <https://github.com/git-cola/git-cola/issues/479>`_)
569 * The `Ctrl+C` "Copy" hotkey on the diff viewer has been fixed.
570   (`#767 <https://github.com/git-cola/git-cola/issues/767>`_)
572 * The "Create Tag" dialog did not correctly handle the case when a signed
573   tag is requested, but no message is provided, and the user chooses to
574   create an unannotated tag instead.  This convenience fallback will now
575   properly create an unsigned, unannotated tag.
576   (`#696 <https://github.com/git-cola/git-cola/issues/696>`_)
578 * `.gitconfig` and `.git/config` values editable by the Preferences dialog
579   (aka `git cola config`) will now get unset when set to an empty value.
580   For example, setting a different `user.email` in the current repository,
581   followed by a subsequent emptying of that field, would previously result in
582   an empty string getting stored in the config.  This has been fixed so that
583   the value will now get unset in the config instead.
584   (`#406 <https://github.com/git-cola/git-cola/issues/406>`_)
586 * Spelling and typofixes.
587   (`#748 <https://github.com/git-cola/git-cola/pull/748>`_)
589 * `core.commentChar` is now honored when set in the local repository
590   `.git/config`.
591   (`#766 <https://github.com/git-cola/git-cola/issues/766>`_)
593 * The log window was using a format string that did not display
594   correctly in all locales.  A locale-aware format is now used.
595   (`#800 <https://github.com/git-cola/git-cola/pull/800>`_)
597 * The dialog displayed when prompting for a reference could sometimes
598   lose focus.
599   (`#804 <https://github.com/git-cola/git-cola/pull/804>`_)
601 .. _v3.0:
603 git-cola v3.0
604 =============
606 Usability, bells and whistles
607 -----------------------------
608 * Updated Simplified Chinese translation.
609   (`#726 <https://github.com/git-cola/git-cola/pull/726>`_)
611 * Updated Ukrainian translation.
612   (`#723 <https://github.com/git-cola/git-cola/pull/723>`_)
614 * New Czech translation.
615   (`#736 <https://github.com/git-cola/git-cola/pull/736>`_)
616   (`#737 <https://github.com/git-cola/git-cola/pull/737>`_)
617   (`#740 <https://github.com/git-cola/git-cola/pull/740>`_)
618   (`#743 <https://github.com/git-cola/git-cola/pull/743>`_)
620 * The "name" field in the "Create Tag" dialog now includes autocompletion,
621   which makes it easy to see which tags currently exist.
623 * `git cola` now has configurable toolbars.  Use the `View -> Add toolbar`
624   menu item to add a toolbar.
626 * Setting `cola.expandtab` to `true` will now expand tabs into spaces
627   in the commit message editor.  The number of spaces to insert is determined
628   by consulting `cola.tabwidth`, which defaults to `8`.
630 * The "Copy SHA-1" hotkey is now `Alt + Ctrl + C`, to avoid clobbering the
631   ability to copy text from the DAG window.
632   (`#705 <https://github.com/git-cola/git-cola/pull/705>`_)
634 * The "Prepare Commit Message" action can now be invoked via the
635   `Ctrl+Shift+Return` shortcut.
636   (`#707 <https://github.com/git-cola/git-cola/pull/707>`_)
638 * The `Branches` pane now has a filter field that highlights branches whose
639   names match the string entered into its text field.
640   (`#713 <https://github.com/git-cola/git-cola/pull/713>`_)
642 * Actions that are triggered in response to button presses were being
643   triggered when the button was pressed, rather than when it was released,
644   which was a usability flaw.  All buttons now respond when clicked
645   rather than when pressed.
646   (`#715 <https://github.com/git-cola/git-cola/pull/715>`_)
648 * The DAG window will now only refresh when object IDs change.
649   Previously, the DAG would redraw itself in response to inotify events,
650   such as filesystem operations, which was disruptive when inspecting a large
651   diff in its diff viewer.  The DAG will now only redraw when the object IDs
652   corresponding to its query input changes.  Furthermore, when redrawing, the
653   scrollbar positions are retained to minimize disruption to the viewport
654   contents.
655   (`#620 <https://github.com/git-cola/git-cola/issues/620>`_)
656   (`#724 <https://github.com/git-cola/git-cola/issues/724>`_)
658 * The "About" dialog now includes the SHA-1 where Git Cola was built.
659   (`#530 <https://github.com/git-cola/git-cola/issues/530>`_)
661 * The "Status" widget now has "Copy Leading Path to Clipboard" and
662   "Copy Basename to Clipboard" actions.
663   (`#435 <https://github.com/git-cola/git-cola/issues/435>`_)
664   (`#436 <https://github.com/git-cola/git-cola/issues/436>`_)
666 * The "Status" widget now supports custom "Copy ... to Clipboard" actions.
667   (`#437 <https://github.com/git-cola/git-cola/issues/437>`_)
669 * The main menu now has an "Edit" menu.
670   (`#725 <https://github.com/git-cola/git-cola/issues/725>`_)
672 * `git dag` learned to checkout commits into a detached HEAD state.
673   (`#698 <https://github.com/git-cola/git-cola/issues/698>`_)
675 * The `status` widget's context menus now omit actions selection-dependent
676   actions when no file is selected.
677   (`#731 <https://github.com/git-cola/git-cola/pull/731>`_)
679 * The startup dialog now focuses the repository list so that repositories
680   can be selected with the keyboard without mouse intervention.
681   (`#741 <https://github.com/git-cola/git-cola/issues/741>`_)
683 Fixes
684 -----
685 * `git dag` now prevents nodes from overlapping in more situations.
686   (`#689 <https://github.com/git-cola/git-cola/pull/689>`_)
688 * Adding untracked Git submodule repo directories previously ran
689   `git add submodule/` but we now call `git add submodule` without
690   the trailing slash (`/`) to avoid staging files that belong to the
691   submodule (which is possibly a `git` bug).  By working around the
692   buggy behavior we allow users to recover by issuing the appropriate
693   `git submodule add` command to properly register the submodule.
694   (`#681 <https://github.com/git-cola/git-cola/pull/681>`_)
696 * We now avoid `git for-each-ref --sort=version:refname` on versions
697   of `git` older than `v2.7.0`.  Previously we only avoided it for
698   versions older than `v2.0.0`, which was a mistake.
699   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
701 * The error message displayed when `git` is not installed has been fixed.
702   (`#686 <https://github.com/git-cola/git-cola/pull/686>`_)
704 * Adding new remotes was silently broken.
705   (`#684 <https://github.com/git-cola/git-cola/issues/684>`_)
706   (`#685 <https://github.com/git-cola/git-cola/pull/685>`_)
708 * The repo selection dialog had errors during startup when the
709   `cola.refreshonfocus` feature was enabled, as reported on Ubuntu 16.04.
710   (`#690 <https://github.com/git-cola/git-cola/issues/690>`_)
712 * Restored support for PyQt 4.6 (Centos 6.8)
713   (`#692 <https://github.com/git-cola/git-cola/issues/692>`_)
715 * Switching repositories now resets the "Amend Mode" and other settings
716   when switching.
717   (`#710 <https://github.com/git-cola/git-cola/issues/710>`_)
719 * `git rebase` error messages now displayed when rebasing fails or stops
720   via the standalone `git cola rebase` front-end.
721   (`#721 <https://github.com/git-cola/git-cola/issues/721>`_)
723 * `git cola` learned to stage broken symlinks.
724   (`#727 <https://github.com/git-cola/git-cola/issues/727>`_)
726 * The "View History" feature in the `Browser` tool was fixed, and now
727   disambiguates between refs and paths.
728   (`#732 <https://github.com/git-cola/git-cola/issues/732>`_)
730 * The diff editor now has better support for files with CRLF `\r\n`
731   line endings.
732   (`#730 <https://github.com/git-cola/git-cola/issues/730>`_)
734 * `cola.inotify` in a repo-local config is now honored
735   when `git cola` is launched from a desktop entry (`git cola --prompt`).
736   (`#695 <https://github.com/git-cola/git-cola/issues/695>`_)
738 .. _v2.11:
740 git-cola v2.11
741 ==============
743 Usability, bells and whistles
744 -----------------------------
745 * New Ukrainian translation.
746   (`#670 <https://github.com/git-cola/git-cola/pull/670>`_)
747   (`#672 <https://github.com/git-cola/git-cola/pull/672>`_)
749 * New and improved French translations.
751 * The new `Branches` widget makes it easier to checkout, merge, push,
752   and pull branches from a single interface.
754 * `git cola` now includes a dark icon theme.  The dark icon theme can be
755   activated either by setting the `GIT_COLA_ICON_THEME` environment variable
756   to `dark`, by configuring `cola.icontheme` to `dark`, or by specifying
757   `--icon-theme=dark` on the command line.
758   (`#638 <https://github.com/git-cola/git-cola/pull/638>`_)
760 * Autocompletion was added to the `Fetch`, `Push`, and `Pull` dialogs.
762 * The commit message editor now remembers the "Spellcheck" setting
763   after exiting.
764   (`#645 <https://github.com/git-cola/git-cola/pull/645>`_)
766 * `git dag` now uses an improved algorithm for laying out the graph,
767   which avoids collisions under certain graph configurations, and
768   avoids overlapping tag with commits.
769   (`#648 <https://github.com/git-cola/git-cola/pull/648>`_)
770   (`#651 <https://github.com/git-cola/git-cola/pull/651>`_)
771   (`#654 <https://github.com/git-cola/git-cola/pull/654>`_)
772   (`#656 <https://github.com/git-cola/git-cola/pull/656>`_)
773   (`#659 <https://github.com/git-cola/git-cola/pull/659>`_)
775 * `git dag` now remembers its column sizes across sessions.
776   (`#674 <https://github.com/git-cola/git-cola/issues/674>`_)
778 * `Grep` now shows a preview of the selected file's content in a split window
779   below the grep results.
781 * `Grep` now includes line numbers in the preview pane's output.
783 * `Edit Remotes` now remembers its window settings after exiting.
785 * `Diff` now has an option to display line numbers in the editor.
786   (`#136 <https://github.com/git-cola/git-cola/issues/136>`_)
788 * `Amend Last Commit` can now be triggered via the `Commit` menu in addition
789   to the commit message editor's options.
790   (`#640 <https://github.com/git-cola/git-cola/issues/640>`_)
792 * The `File Browser` tool was made much faster and can now operate on
793   much larger repositories.
794   (`#499 <https://github.com/git-cola/git-cola/issues/499>`_)
796 * A new "turbo" mode was added that allows you to opt-out of operations
797   that can slow `git cola` on large repositories.  The turbo mode is
798   enabled by configuring `git config cola.turbo true`.  Turbo mode
799   disables the background loading of Git commit messages and other
800   details in the `File Browser` widget.
802 * A new GitIgnore dialog allows adding custom gitignore patterns.
803   (`#653 <https://github.com/git-cola/git-cola/pull/653>`_)
805 * The spellchecker in `git cola` can now use an additional dictionary
806   by configuring `cola.dictionary` to the path to a file containing
807   a newline-separated list of words.
808   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
810 * The stash, export patches, diff, and gitignore dialogs now remember
811   their window sizes.
813 * A new `git cola recent` sub-command was added for finding recently
814   edited files.
816 * The `Fetch` dialog now allows pruning remote branches.
817   (`#639 <https://github.com/git-cola/git-cola/issues/639>`_)
818   (`#680 <https://github.com/git-cola/git-cola/pull/680>`_)
820 Fixes
821 -----
822 * `git cola`'s spellchecker now supports the new `dict-common` filesystem
823   layout, and prefers the `/usr/share/dict/cracklib-small` file over the
824   `/usr/share/dict/words` provided on older distributions.
825   This makes the spellchecker compatible with Arch, which does not provide
826   a `words` symlink like Debian.
827   (`#663 <https://github.com/git-cola/git-cola/issues/663>`_)
829 * Properly handle the case where an existing file is untracked using
830   the File Browser.
832 * Fix a quirk where the "Create Branch" dialog sometimes required clicking
833   twice on the radio buttons.
834   (`#662 <https://github.com/git-cola/git-cola/pull/662>`_)
836 * Fixed a focus issue to ensure that "Push", "Fetch", and "Pull" can
837   be executed with the press of a single enter key after being shown.
838   (`#661 <https://github.com/git-cola/git-cola/issues/661>`_)
840 * Committing is now allowed in when resolving a merge results in no
841   changes.  This state was previously prevented by the commit message editor,
842   which prevented users from resolving merges that result in no changes.
843   (`#679 <https://github.com/git-cola/git-cola/pull/679>`_)
845 * The filesystem monitor would sometimes emit backtraces when directories
846   are modified.  This has been fixed.
847   (`bz #1438522 <https://bugzilla.redhat.com/show_bug.cgi?id=1438522>`_)
849 * Absolute paths are now returned when querying for `.git`-relative paths
850   from within a submodule, which uses `.git`-files.
851   This fixes launching `git cola` from within a subdirectory of a submodule.
852   (`#675 <https://github.com/git-cola/git-cola/pull/675>`_)
854 .. _v2.10:
856 git-cola v2.10
857 ==============
859 Usability, bells and whistles
860 -----------------------------
861 * `git cola` can now invoke the `.git/hooks/cola-prepare-commit-msg`
862   hook to update the commit message.  This hook takes the same parameters
863   as Git's `prepare-commit-message` hook.  The default path to this hook
864   can be overridden by setting the `cola.prepareCommitMessageHook`
865   configuration variable.
866   (`Documentation <https://git-cola.readthedocs.io/en/latest/git-cola.html#prepare-commit-message>`_)
868 * `git cola diff` (and the corresponding `Diff` menu actions) can now
869   launch difftool with the standard `Ctrl+D` hotkey.  The `Ctrl+E` hotkey was
870   also added for launching an editor.
872 * Traditional Chinese (Taiwan) translation updates.
874 Fixes
875 -----
876 * `git cola` now works when installed in non-ascii, utf8-encoded paths.
877   (`#629 <https://github.com/git-cola/git-cola/issues/629>`_)
879 * Styling issues that caused black backgrounds in various widgets when using
880   PyQ5 on Mac OS X have been fixed.
881   (`#624 <https://github.com/git-cola/git-cola/issues/624>`_)
883 * The "Open Recent" menu action was broken and has been fixed.
884   (`#634 <https://github.com/git-cola/git-cola/issues/634>`_)
886 * Exiting `git cola` with a maximized main window would hang when reopened
887   on Linux.
888   (`#641 <https://github.com/git-cola/git-cola/issues/641>`_)
890 Packaging
891 ---------
892 * `appdata.xml` files are now provided at
893   `share/appdata/git-cola.xml` and `share/appdata/git-dag.xml`
894   for use by the Linux software gallery.
895   (`#627 <https://github.com/git-cola/git-cola/pull/627>`_)
896   (`Appdata <https://people.freedesktop.org/~hughsient/appdata/>`_)
898 .. _v2.9.1:
900 git-cola v2.9.1
901 ===============
903 Fixes
904 -----
905 * The "Open Recent" menu was updated to new bookmarks format.
906   (`#628 <https://github.com/git-cola/git-cola/issues/628>`_)
908 .. _v2.9:
910 git-cola v2.9
911 =============
913 Usability, bells and whistles
914 -----------------------------
915 * New Polish translation thanks to Łukasz Wojniłowicz
916   (`#598 <https://github.com/git-cola/git-cola/pull/598>`_)
918 * The `Bypass Commit Hooks` feature now disables itself automatically
919   when a new commit is created.  The new behavior turns the option into a
920   single-use flag, which helps prevent users from accidentally leaving it
921   active longer than intended.
922   (`#595 <https://github.com/git-cola/git-cola/pull/595>`_)
924 * `git dag` learned to launch an external diff viewer on selected commits.
925   The standard `Ctrl+D` shortcut can be used to view diffs.
926   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
928 * `git dag` learned to launch directory diffs via `git difftool --dir-diff`.
929   The `Ctrl+Shift+D` shortcut launches difftool in directory-diff mode.
930   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
932 * Items in the "Favorites" list can now be renamed, which makes it
933   easier to differentiate between several checkouts of the same repository.
934   (`#599 <https://github.com/git-cola/git-cola/issues/599>`_)
935   (`#601 <https://github.com/git-cola/git-cola/pull/601>`_)
937 * The startup screen now includes a logo and `git cola` version information.
938   (`#526 <https://github.com/git-cola/git-cola/issues/526>`_)
940 * The `About` page was revamped to contain multiple tabs.  A new tab was added
941   that provides details about `git cola`''s dependencies.  New tabs were also
942   added for giving credit to `git cola`'s authors and translators.
944 * The `About` page can now be accessed via `git cola about`.
946 * The "Fast-forward only" and "No fast-forward" options supported by
947   `git pull` are now accessible via `git cola pull`.
949 * Doing a forced push no longer requires selecting the remote branch.
950   (`#618 <https://github.com/git-cola/git-cola/pull/618>`_)
952 * `git cola push` now has an option to suppress the prompt that is shown
953   when pushing would create new remote branches.
954   (`#605 <https://github.com/git-cola/git-cola/issues/605>`_)
956 * `git dag` now shows commit messages in a more readable color.
957   (`#574 <https://github.com/git-cola/git-cola/issues/574>`_)
959 * `git cola browse` and the `status` widget learned to launch the OS-specified
960   default action for a file.  When used on directories via `git cola browse`,
961   or when "Open Parent Directory" is used on files, the OS-specified
962   file browser will typically be used.
964 * `git cola browse` and the `status` widget learned to launch terminals.
966 Fixes
967 -----
968 * `git cola browse` was not updating when expanding items.
969   (`#588 <https://github.com/git-cola/git-cola/issues/588>`_)
971 * Typofixes in comments, naming, and strings have been applied.
972   (`#593 <https://github.com/git-cola/git-cola/pull/593>`_)
974 * The inotify and win32 filesystem monitoring no longer refreshes
975   when updates are made to ignored files.
976   (`#517 <https://github.com/git-cola/git-cola/issues/517>`_)
977   (`#516 <https://github.com/git-cola/git-cola/issues/516>`_)
979 * The `Refresh` button on the actions panel no longer raises an
980   exception when using PyQt5.
981   (`#604 <https://github.com/git-cola/git-cola/issues/604>`_)
983 * Fixed a typo in the inotify backend that is triggered when files are removed.
984   (`#607 <https://github.com/git-cola/git-cola/issues/607>`_)
986 * Fixed a typo when recovering from a failed attempt to open a repository.
987   (`#606 <https://github.com/git-cola/git-cola/issues/606>`_)
989 * `git dag` now properly updates itself when launched from the menubar.
990   (`#613 <https://github.com/git-cola/git-cola/pull/613>`_)
992 * If git-cola is invoked on Windows using `start pythonw git-cola`,
993   a console window will briefly flash on the screen each time
994   `git cola` invokes `git`.  The console window is now suppressed.
996 * We now avoid some problematic Popen flags on Windows which were
997   breaking the `git rebase` feature on Windows.
999 * The `Save` button in `git dag`'s "Grab File..." feature now properly
1000   prompts for a filename when saving files.
1001   (`#617 <https://github.com/git-cola/git-cola/pull/617>`_)
1003 Development
1004 -----------
1005 * The `qtpy` symlink in the source tree has been removed to allow for easier
1006   development on Windows.
1007   (`#626 <https://github.com/git-cola/git-cola/issues/626>`_)
1009 .. _v2.8:
1011 git-cola v2.8
1012 =============
1014 Usability, bells and whistles
1015 -----------------------------
1016 * `git cola push` learned to configure upstream branches.
1017   (`#563 <https://github.com/git-cola/git-cola/issues/563>`_)
1019 Fixes
1020 -----
1021 * The diffstat view is now properly updated when notifications are
1022   received via inotify filesystem monitoring.
1023   (`#577 <https://github.com/git-cola/git-cola/issues/577>`_)
1025 * Python3 with PyQt5 had a bug that prevented `git cola` from starting.
1026   (`#589 <https://github.com/git-cola/git-cola/pull/589>`_)
1028 .. _v2.7:
1030 git-cola v2.7
1031 =============
1033 Fixes
1034 -----
1036 * When repositories stored in non-ASCII, UTF-8-encoded filesystem paths
1037   were operated upon with `LC_ALL=C` set in the environment, unicode errors
1038   would occur when using `python2`.  `git cola` was made more robust and will
1039   now operate correctly within this environment.
1040   (`#581 <https://github.com/git-cola/git-cola/issues/581>`_)
1042 * Support for the `GIT_WORK_TREE` environment variable was fixed.
1043   (`#582 <https://github.com/git-cola/git-cola/pull/582>`_)
1045 Development
1046 -----------
1048 * The `unittest.mock` module is now used instead of the original `mock` module
1049   when running the `git cola` test suite using Python3.
1050   (`#569 <https://github.com/git-cola/git-cola/issues/569>`_)
1052 Packaging
1053 ---------
1055 * `git cola` is now compatible with *PyQt5*, *PyQt4*, and *Pyside*.
1056   `git cola` previously supported *PyQt4* only, but will now use whichever
1057   library is available.  Users are not required to upgrade at this time,
1058   but *PyQt5* support can be enabled anytime by making its python
1059   modules available.
1060   (`#232 <https://github.com/git-cola/git-cola/issues/232>`_)
1062   *NOTE*: We do not yet recommend using *PyQt5* because there are known
1063   exit-on-segfault bugs in *Qt5* that have not yet been addressed.
1064   `git cola` is sensitive to this bug and is known to crash on exit
1065   when using `git dag` or the interactive rebase feature on *PyQt5*.
1067   https://bugreports.qt.io/browse/QTBUG-52988
1069   *PyQt4* is stable and there are no known issues when using it so
1070   we recommend using it until the Qt5 bugs have been resolved.
1072 * `git cola` now depends on *QtPy* and includes a bundled copy of the
1073   `qtpy` library.  If you are packaging `git cola` and would prefer to use
1074   `qtpy` from your distribution instead of the built-in version then use
1075   `make NO_VENDOR_LIBS=1` when building `git cola`.  This will prevent
1076   vendored libraries from being installed.
1078 .. _v2.6:
1080 git-cola v2.6
1081 =============
1083 Usability, bells and whistles
1084 -----------------------------
1086 * A new "Reset" sub-menu provides access to running "git reset --mixed"
1087   when resetting branch heads and "git reset  --merge" when resetting
1088   worktrees.
1089   (`#542 <https://github.com/git-cola/git-cola/issues/542>`_)
1091 * `git cola` now supports linked worktrees, i.e. worktrees created by
1092   `git worktree`.
1093   (`#554 <https://github.com/git-cola/git-cola/issues/554>`_)
1095 Fixes
1096 -----
1098 * Diff highlighting is now robust to the user having
1099   diff.supressBlankEmpty=true in their git config.
1100   (`#541 <https://github.com/git-cola/git-cola/issues/541>`_)
1102 * The filesystem monitor now properly handles repositories that use
1103   `.git`-files, e.g. when using submodules.
1104   (`#545 <https://github.com/git-cola/git-cola/issues/545>`_)
1105   (`#546 <https://github.com/git-cola/git-cola/pulls/546>`_)
1107 * Per-repository git configuration is now properly detected when launching
1108   `git cola` from an application launcher.
1109   (`#548 <https://github.com/git-cola/git-cola/issues/548>`_)
1111 * `git cola` now cleans up after itself immediately to avoid leaving behind
1112   empty `/tmp/git-cola-XXXXXX` directories when the user uses `Ctrl+C`
1113   to quit the app.
1114   (`#566 <https://github.com/git-cola/git-cola/issues/566>`_)
1116 Packaging
1117 ---------
1119 * It is now possible to install `git cola` to and from utf8-encoded filesystem
1120   paths.  Previously, Python's stdlib would throw an encoding error during
1121   installation.  We workaround the stdlib by forcing python2 to use utf-8,
1122   thus fixing assumptions in the stdlib library code.
1123   (`#551 <https://github.com/git-cola/git-cola/issues/551>`_)
1125 .. _v2.5:
1127 git-cola v2.5
1128 =============
1130 Usability, bells and whistles
1131 -----------------------------
1133 * The icon for untracked files was adjusted to better differentiate
1134   between files and the "Untracked" header.
1135   (`#509 <https://github.com/git-cola/git-cola/issues/509>`_)
1137 * Ctrl+O was added as a hotkey for opening repositories.
1138   (`#507 <https://github.com/git-cola/git-cola/pull/507>`_)
1140 * `git dag` now uses consistent edge colors across updates.
1141   (`#512 <https://github.com/git-cola/git-cola/issues/512>`_)
1143 * `git cola`'s Bookmarks widget can now be used to set a "Default Repository".
1144   Under the hood, we set the `cola.defaultrepo` configuration variable.
1145   The default repository is used whenever `git cola` is launched outside of
1146   a Git repository.  When unset, or when set to a bogus value, `git cola`
1147   will prompt for a repository, as it previously did.
1148   (`#513 <https://github.com/git-cola/git-cola/issues/513>`_)
1150 * `git cola`'s Russian and Spanish translations were improved
1151   thanks to Vaiz and Zeioth.
1152   (`#514 <https://github.com/git-cola/git-cola/pull/514>`_)
1153   (`#515 <https://github.com/git-cola/git-cola/pull/515>`_)
1154   (`#523 <https://github.com/git-cola/git-cola/pull/523>`_)
1156 * `git cola` was translated to Turkish thanks to Barış ÇELİK.
1157   (`#520 <https://github.com/git-cola/git-cola/pull/520>`_)
1159 * The status view now supports launching `git gui blame`.  It can be
1160   configured to use a different command by setting `cola.blameviewer`.
1161   (`#521 <https://github.com/git-cola/git-cola/pull/521>`_)
1163 * `git dag` now allows selecting non-contiguous ranges in the log widget.
1164   (`#468 <https://github.com/git-cola/git-cola/issues/468>`_)
1166 * Any font can now be chosen for the diff editor, not just monospace fonts.
1167   (`#525 <https://github.com/git-cola/git-cola/issues/525>`_)
1169 Fixes
1170 -----
1172 * `xfce4-terminal` and `gnome-terminal` are now supported when launching
1173   `git mergetool` to resolve merges.  These terminals require that the command
1174   to execute is shell-quoted and passed as a single string argument to `-e`
1175   rather than as additional command line arguments.
1176   (`#524 <https://github.com/git-cola/git-cola/issues/524>`_)
1178 * Fixed a unicode problem when formatting the error message that is shown
1179   when `gitk` is not installed.  We now handle unicode data in tracebacks
1180   generated by python itself.
1181   (`#528 <https://github.com/git-cola/git-cola/issues/528>`_)
1183 * The `New repository` feature was fixed.
1184   (`#533 <https://github.com/git-cola/git-cola/pull/533>`_)
1186 * We now use omit the extended description when creating "fixup!" commits,
1187   for consistency with the Git CLI.  We now include only the one-line summary
1188   in the final commit message.
1189   (`#522 <https://github.com/git-cola/git-cola/issues/522>`_)
1191 .. _v2.4:
1193 git-cola v2.4
1194 =============
1196 Usability, bells and whistles
1197 -----------------------------
1199 * The user interface is now HiDPI-capable.  git-cola now uses SVG
1200   icons, and its interface can be scaled by setting the `GIT_COLA_SCALE`
1201   environment variable.
1203 * `git dag` now supports the standard editor, difftool, and history hotkeys.
1204   It is now possible to invoke these actions from file widget's context
1205   menu and through the standard hotkeys.
1206   (`#473 <https://github.com/git-cola/git-cola/pull/473>`_)
1208 * The `Status` tool also learned about the history hotkey.
1209   Additionally, the `Alt-{j,k}` aliases are also supported in the `Status`
1210   tool for consistency with the other tools where the non-Alt hotkeys are not
1211   available.
1212   (`#488 <https://github.com/git-cola/git-cola/pull/488>`_)
1214 * The `File Browser` tool now has better default column sizes,
1215   and remembers its window size and placement.
1217 * The `File Browser` now supports the refresh hotkey, and has better
1218   behavior when refreshing.  The selection is now retained, and new and
1219   removed files are found when refreshing.
1221 * A new `git-cola-completion.bash` completion script is provided in the
1222   `contrib/` directory.  It must be used alongside Git's completion script.
1223   Source it from your `~/.bashrc` (or `~/.zshrc`, etc) after sourcing
1224   the `git-completion.bash` script and you will have command-line completion
1225   support for the `git cola` and `git dag` sub-commands.
1227 * The "checkout" dialog now offers completion for remote branches and other
1228   git refs.  This makes it easier to checkout remote branches in a detached
1229   head state.  Additionally, the checkout dialog also offers completion for
1230   remote branches that have not yet been checked out, which makes it easier to
1231   create a local tracking branch by just completing for that potential name.
1232   (`#390 <https://github.com/git-cola/git-cola/issues/390>`_)
1234 * The "create branch" and "create tag" dialogs now save and restore their
1235   window settings.
1237 * The "status" widget can now be configured to use a bold font with a darker
1238   background for the header items.
1239   (`#506 <https://github.com/git-cola/git-cola/pull/506>`_)
1241 * The "status" widget now remembers its horizontol scrollbar position across
1242   updates.  This is helpful when working on projects with long paths.
1243   (`#494 <https://github.com/git-cola/git-cola/issues/494>`_)
1245 Fixes
1246 -----
1248 * When using *Git for Windows*, a `git` window would appear
1249   when running *Windows 8*.  We now pass additional flags to
1250   `subprocess.Popen` to prevent a `git` window from appearing.
1251   (`#477 <https://github.com/git-cola/git-cola/issues/477>`_)
1252   (`#486 <https://github.com/git-cola/git-cola/pull/486>`_)
1254 * Launching difftool with `.PY` in `$PATHEXT` on Windows was fixed.
1255   (`#492 <https://github.com/git-cola/git-cola/issues/492>`_)
1257 * Creating a local branch tracking a remote branch that contains
1258   slashes in its name is now properly handled.
1259   (`#496 <https://github.com/git-cola/git-cola/issues/496>`_)
1261 * The "Browse Other Branch" feature was broken by Python3, and is now fixed.
1262   (`#501 <https://github.com/git-cola/git-cola/issues/501>`_)
1264 * We now avoid `long` for better Python3 compatibility.
1265   (`#502 <https://github.com/git-cola/git-cola/issues/502>`_)
1267 * We now use Git's default merge message when merging branches.
1268   (`#508 <https://github.com/git-cola/git-cola/issues/508>`_)
1270 * Miscellaneous fixes
1271   (`#485 <https://github.com/git-cola/git-cola/pull/485>`_)
1273 Packaging
1274 ---------
1276 * git-cola's documentation no longer uses an intersphinx link mapping
1277   to docs.python.org.  This fixes warnings when building rpms using koji,
1278   where network access is prevented.
1280   https://bugzilla.redhat.com/show_bug.cgi?id=1231812
1282 .. _v2.3:
1284 git-cola v2.3
1285 =============
1287 Usability, bells and whistles
1288 -----------------------------
1290 * The Interactive Rebase feature now works on Windows!
1291   (`#463 <https://github.com/git-cola/git-cola/issues/463>`_)
1293 * The `diff` editor now understands vim-style `hjkl` navigation hotkeys.
1294   (`#476 <https://github.com/git-cola/git-cola/issues/476>`_)
1296 * `Alt-{j,k}` navigation hotkeys were added to allow changing to the
1297   next/previous file from the diff and commit editors.
1299 * The `Rename branch` menu action is now disabled in empty repositories.
1300   (`#475 <https://github.com/git-cola/git-cola/pull/475>`_)
1301   (`#459 <https://github.com/git-cola/git-cola/issues/459>`_)
1303 * `git cola` now checks unmerged files for conflict markers before
1304   staging them.  This feature can be disabled in the preferences.
1305   (`#464 <https://github.com/git-cola/git-cola/issues/464>`_)
1307 * `git dag` now remembers which commits were selected when refreshing
1308   so that it can restore the selection afterwards.
1309   (`#480 <https://github.com/git-cola/git-cola/issues/480>`_)
1311 * "Launch Editor", "Launch Difftool", "Stage/Unstage",
1312   and "Move Up/Down" hotkeys now work when the commit message
1313   editor has focus.
1314   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
1316 * The diff editor now supports the `Ctrl+u` hotkey for reverting
1317   diff hunks and selected lines.
1319 * The `core.commentChar` Git configuration value is now honored.
1320   Commit messages and rebase instruction sheets will now use
1321   the configured character for comments.  This allows having
1322   commit messages that start with `#` when `core.commentChar`
1323   is configured to its non-default value.
1324   (`#446 <https://github.com/git-cola/git-cola/issues/446>`_)
1326 Fixes
1327 -----
1329 * Diff syntax highlighting was improved to handle more edge cases
1330   and false positives.
1331   (`#467 <https://github.com/git-cola/git-cola/pull/467>`_)
1333 * Setting commands in the interactive rebase editor was fixed.
1334   (`#472 <https://github.com/git-cola/git-cola/issues/472>`_)
1336 * git-cola no longer clobbers the Ctrl+Backspace text editing shortcut
1337   in the commit message editor.
1338   (`#453 <https://github.com/git-cola/git-cola/issues/453>`_)
1340 * The copy/paste clipboard now persists after `git cola` exits.
1341   (`#484 <https://github.com/git-cola/git-cola/issues/484>`_)
1343 .. _v2.2.1:
1345 git-cola v2.2.1
1346 ===============
1348 Fixes
1349 -----
1350 * Fixed the "Sign off" feature in the commit message editor.
1352 .. _v2.2:
1354 git-cola v2.2
1355 =============
1357 Usability, bells and whistles
1358 -----------------------------
1359 * Double-click will now choose a commit in the "Select commit" dialog.
1361 * `git cola` has a feature that reads `.git/MERGE_MSG` and friends for the
1362   commit message when a merge is in-progress.  Upon refresh, `git cola` will
1363   now detect when a merge has completed and reset the commit message back to
1364   its previous state.  It is only reset if the editor contains a message
1365   that was read from the file and has not been manually edited by the user.
1367 * The commit message editor's context menu now has a "Clear..." action for
1368   clearing the message across both the summary and description fields.
1370 * Traditional Chinese (Taiwan) translation updates.
1372 * The system theme's icons are now used wherever possible.
1373   (`#458 <https://github.com/git-cola/git-cola/pull/458>`_)
1375 Fixes
1376 -----
1377 * The stash viewer now uses ``git show --no-ext-diff`` to avoid running
1378   user-configured diff tools.
1380 * `git cola` now uses the `setsid()` system call to ensure that the
1381   `GIT_ASKPASS` and `SSH_ASKPASS` helper programs are used when pushing
1382   changes using `git`.  The askpass helpers will now be used even when
1383   `git cola` is launched from a terminal.
1385   The behavior without `setsid()` is that `git cola` can appear to hang while
1386   pushing changes.  The hang happens when `git` prompts the user for a
1387   password using the terminal, but the user never sees the prompt.  `setsid()`
1388   detaches the terminal, which ensures that the askpass helpers are used.
1389   (`#218 <https://github.com/git-cola/git-cola/issues/218>`_)
1390   (`#262 <https://github.com/git-cola/git-cola/issues/262>`_)
1391   (`#377 <https://github.com/git-cola/git-cola/issues/377>`_)
1393 * `git dag`'s file list tool was updated to properly handle unicode paths.
1395 * `gnome-terminal` is no longer used by default when `cola.terminal` is unset.
1396   It is broken, as was detailed in #456.
1397   (`#456 <https://github.com/git-cola/git-cola/issues/456>`_)
1399 * The interactive rebase feature was not always setting `$GIT_EDITOR`
1400   to the value of `gui.editor`, thus there could be instances where rebase
1401   will seem to not stop, or hang, when performing "reword" actions.
1403   We now set the `$GIT_EDITOR` environment variable when performing the
1404   "Continue", "Skip", and "Edit Todo" rebase actions so that the correct
1405   editor is used during the rebase.
1406   (`#445 <https://github.com/git-cola/git-cola/issues/445>`_)
1408 Packaging
1409 ---------
1410 * `git cola` moved from a 3-part version number to a simpler 2-part "vX.Y"
1411   version number.  Most of our releases tend to contain new features.
1413 .. _v2.1.2:
1415 git-cola v2.1.2
1416 ===============
1418 Usability, bells and whistles
1419 -----------------------------
1420 * Updated zh_TW translations.
1422 * `git cola rebase` now defaults to `@{upstream}`, and generally uses the same
1423   CLI syntax as `git rebase`.
1425 * The commit message editor now allows you to bypass commit hooks by selecting
1426   the "Bypass Commit Hooks" option.  This is equivalent to passing the
1427   `--no-verify` option to `git commit`.
1428   (`#357 <https://github.com/git-cola/git-cola/issues/357>`_)
1430 * We now prevent the "Delete Files" action from creating a dialog that does
1431   not fit on screen.
1432   (`#378 <https://github.com/git-cola/git-cola/issues/378>`_)
1434 * `git xbase` learned to edit rebase instruction sheets that contain
1435   `exec` commands.
1437 * The diff colors are now configurable.  `cola.color.{text,add,remove,header}`
1438   can now be set with 6-digit hexadecimal colors.
1439   See the `git cola manual <https://git-cola.readthedocs.io/en/latest/git-cola.html#configuration-variables>_`
1440   for more details.
1442 * Improved hotkey documentation.
1444 Fixes
1445 -----
1446 * `git cola` will now allow starting an interactive rebase with a dirty
1447   worktree when `rebase.autostash` is set.
1448   (`#360 <https://github.com/git-cola/git-cola/issues/360>`_)
1450 .. _v2.1.1:
1452 git-cola v2.1.1
1453 ===============
1455 Usability, bells and whistles
1456 -----------------------------
1457 * A new "Find files" widget was added, and can be activated by
1458   using the `Ctrl+t` or `t` hotkeys.
1460 * A new `git cola find` sub-command was added for finding files.
1462 * `git cola` now remembers the text cursor's position when staging
1463   interactively with the keyboard.  This makes it easier to use the keyboard
1464   arrows to select and stage lines.
1466 * The completion widgets will now select the top completion item
1467   when `Enter` or `Return` are pressed.
1469 * You can now refresh using `F5` in addition to the existing `Ctrl+R` hotkey.
1471 Fixes
1472 -----
1473 * `git cola` now passes `--no-abbrev-commit` to `git log` to override
1474   having `log.abbrevCommit = true` set in `.gitconfig`.
1476 .. _v2.1.0:
1478 git-cola v2.1.0
1479 ===============
1480 Usability, bells and whistles
1481 -----------------------------
1482 * `git dag` now forwards all unknown arguments along to `git log`.
1483   (`#389 <https://github.com/git-cola/git-cola/issues/389>`_)
1485 * Line-by-line interactive staging was made more robust.
1486   (`#399 <https://github.com/git-cola/git-cola/pull/399>`_)
1488 * "Bookmarks" was renamed to "Favorites".
1489   (`#392 <https://github.com/git-cola/git-cola/issues/392>`_)
1491 * Untracked files are now displayed using a unique icon.
1492   (`#388 <https://github.com/git-cola/git-cola/pull/388>`_)
1494 Fixes
1495 -----
1496 * `git dag` was triggering a traceback on Fedora when parsing Git logs.
1497   (`bz #181676 <https://bugzilla.redhat.com/show_bug.cgi?id=1181686>`_)
1499 * inotify expects unicode paths on Python3.
1500   (`#393 <https://github.com/git-cola/git-cola/pull/393>`_)
1502 * Untracked files are now assumed to be utf-8 encoded.
1503   (`#401 <https://github.com/git-cola/git-cola/issues/401>`_)
1505 .. _v2.0.8:
1507 git-cola v2.0.8
1508 ===============
1509 Usability, bells and whistles
1510 -----------------------------
1511 * `git cola` can now create GPG-signed commits and merges.
1512   See the documentation for details about setting up a GPG agent.
1513   (`#149 <https://github.com/git-cola/git-cola/issues/149>`_)
1515 * The status widget learned to copy relative paths when `Ctrl+x` is pressed.
1516   (`#358 <https://github.com/git-cola/git-cola/issues/358>`_)
1518 * Custom GUI actions can now define their own keyboard shortcuts by
1519   setting `guitool.$name.shortcut` to a string understood by Qt's
1520   `QAction::setShortcut()` API, e.g. `Alt+X`.
1521   See the
1522   `Qt docs <http://qt-project.org/doc/qt-4.8/qkeysequence.html#QKeySequence-2>`_
1523   for more details about the supported values.
1525 * `git cola` learned to rename branches.
1526   (`#364 <https://github.com/git-cola/git-cola/pull/364>`_)
1527   (`#278 <https://github.com/git-cola/git-cola/issues/278>`_)
1529 * `git dag` now has a "Show history" context menu which can be used to filter
1530   history using the selected paths.
1532 Fixes
1533 -----
1534 * `sphinxtogithub.py` was fixed for Python3.
1535   (`#353 <https://github.com/git-cola/git-cola/pull/353>`_)
1537 * The commit that changed how we read remotes from `git remote`
1538   to parsing `git config` was reverted since it created problems
1539   for some users.
1541 * Fixed a crash when using the `rebase edit` feature.
1542   (`#351 <https://github.com/git-cola/git-cola/issues/351>`_)
1544 * Better drag-and-drop behavior when dropping into gnome-terminal.
1545   (`#373 <https://github.com/git-cola/git-cola/issues/373>`_)
1547 Packaging
1548 ---------
1549 * The `git-cola-folder-handler.desktop` file handler was fixed
1550   to pass validation by `desktop-file-validate`.
1551   (`#356 <https://github.com/git-cola/git-cola/issues/356>`_)
1553 * The `git.svg` icon was renamed to `git-cola.svg`, and `git cola` was taught
1554   to prefer icons from the desktop theme when available.
1556 .. _v2.0.7:
1558 git-cola v2.0.7
1559 ===============
1560 Usability, bells and whistles
1561 -----------------------------
1562 * New hotkey: `Ctrl+Shift+M` merges branches.
1564 * New hotkey: `Ctrl+R` refreshes the DAG viewer.
1565   (`#347 <https://github.com/git-cola/git-cola/issues/347>`_)
1567 Fixes
1568 -----
1569 * We now use `git config` to parse the list of remotes
1570   instead of parsing the output of `git remote`, which
1571   is a Git porcelain and should not be used by scripts.
1573 * Avoid "C++ object has been deleted" errors from PyQt4.
1574   (`#346 <https://github.com/git-cola/git-cola/issues/346>`_)
1576 Packaging
1577 ---------
1578 * The `make install` target now uses `install` instead of `cp`.
1580 .. _v2.0.6:
1582 git-cola v2.0.6
1583 ===============
1584 Usability, bells and whistles
1585 -----------------------------
1586 * Updated Brazillian Portuguese translation.
1588 * The status and browse widgets now allow drag-and-drop into
1589   external applications.
1590   (`#335 <https://github.com/git-cola/git-cola/issues/335>`_)
1592 * We now show a progress bar when cloning repositories.
1593   (`#312 <https://github.com/git-cola/git-cola/issues/312>`_)
1595 * The bookmarks widget was simplified to not need a
1596   separate dialog.
1597   (`#289 <https://github.com/git-cola/git-cola/issues/289>`_)
1599 * Updated Traditional Chinese translation.
1601 * We now display a warning when trying to rebase with uncommitted changes.
1602   (`#338 <https://github.com/git-cola/git-cola/issues/338>`_)
1604 * The status widget learned to filter paths.
1605   `Ctrl+Shift+S` toggles the filter widget.
1606   (`#337 <https://github.com/git-cola/git-cola/issues/337>`_)
1607   (`#339 <https://github.com/git-cola/git-cola/pull/339>`_)
1609 * The status widget learned to move files to the trash
1610   when the `send2trash <https://github.com/hsoft/send2trash>`_
1611   module is installed.
1612   (`#341 <https://github.com/git-cola/git-cola/issues/341>`_)
1614 * "Recent repositories" is now a dedicated widget.
1615   (`#342 <https://github.com/git-cola/git-cola/issues/342>`_)
1617 * New Spanish translation thanks to Pilar Molina Lopez.
1618   (`#344 <https://github.com/git-cola/git-cola/pull/344>`_)
1620 Fixes
1621 -----
1622 * Newly added remotes are now properly seen by the fetch/push/pull dialogs.
1623   (`#343 <https://github.com/git-cola/git-cola/issues/343>`_)
1625 .. _v2.0.5:
1627 git-cola v2.0.5
1628 ===============
1629 Usability, bells and whistles
1630 -----------------------------
1631 * New Brazillian Portuguese translation thanks to Vitor Lobo.
1633 * New Indonesian translation thanks to Samsul Ma'arif.
1635 * Updated Simplified Chinese translation thanks to Zhang Han.
1637 * `Ctrl+Backspace` is now a hotkey for "delete untracked files" in
1638   the status widget.
1640 * Fetch/Push/Pull dialogs now use the configured remote of the current
1641   branch by default.
1642   (`#324 <https://github.com/git-cola/git-cola/pull/324>`_)
1644 Fixes
1645 -----
1646 * We now use `os.getcwd()` on Python3.
1647   (`#316 <https://github.com/git-cola/git-cola/pull/316>`_)
1648   (`#326 <https://github.com/git-cola/git-cola/pull/326>`_)
1650 * The `Ctrl+P` hotkey was overloaded to both "push" and "cherry-pick",
1651   so "cherry-pick" was moved to `Ctrl+Shift+C`.
1653 * Custom GUI tools with mixed-case names are now properly supported.
1655 * "Diff Region" is now referred to as "Diff Hunk" for consistency
1656   with common terminology from diff/patch tools.
1657   (`#328 <https://github.com/git-cola/git-cola/issues/328>`_)
1659 * git-cola's test suite is now portable to MS Windows.
1660   (`#332 <https://github.com/git-cola/git-cola/pull/332>`_)
1662 .. _v2.0.4:
1664 git-cola v2.0.4
1665 ===============
1666 Usability, bells and whistles
1667 -----------------------------
1668 * We now handle the case when inotify `add_watch()` fails
1669   and display instructions on how to increase the number of watches.
1670   (`#263 <https://github.com/git-cola/git-cola/issues/263>`_)
1672 * New and improved zh_TW localization thanks to V字龍(Vdragon).
1673   (`#265 <https://github.com/git-cola/git-cola/pull/265>`_)
1674   (`#267 <https://github.com/git-cola/git-cola/pull/267>`_)
1675   (`#268 <https://github.com/git-cola/git-cola/pull/268>`_)
1676   (`#269 <https://github.com/git-cola/git-cola/issues/269>`_)
1677   (`#270 <https://github.com/git-cola/git-cola/pull/270>`_)
1678   (`#271 <https://github.com/git-cola/git-cola/pull/271>`_)
1679   (`#272 <https://github.com/git-cola/git-cola/pull/272>`_)
1681 * New hotkeys: `Ctrl+F` for fetch, `Ctrl+P` for push,
1682   and `Ctrl+Shift+P` for pull.
1684 * The bookmarks widget's context menu actions were made clearer.
1685   (`#281 <https://github.com/git-cola/git-cola/issues/281>`_)
1687 * The term "Staging Area" is used consistently in the UI
1688   to allow for better localization.
1689   (`#283 <https://github.com/git-cola/git-cola/issues/283>`_)
1691 * The "Section" term is now referred to as "Diff Region"
1692   in the UI.
1693   (`#297 <https://github.com/git-cola/git-cola/issues/297>`_)
1695 * The localization documentation related to the LANGUAGE
1696   environment variable was improved.
1697   (`#293 <https://github.com/git-cola/git-cola/pull/293>`_)
1699 * The "Actions" panel now contains tooltips for each button
1700   in case the button labels gets truncated by Qt.
1701   (`#292 <https://github.com/git-cola/git-cola/issues/292>`_)
1703 * Custom `git config`-defined actions can now be run in the
1704   background by setting `guitool.<name>.background` to `true`.
1706 Fixes
1707 -----
1708 * We now use bold fonts instead of SmallCaps to avoid
1709   artifacts on several configurations.
1711 * We now pickup `user.email`, `cola.tabwidth`, and similar settings
1712   when defined in /etc/gitconfig.
1713   (`#259 <https://github.com/git-cola/git-cola/issues/259>`_)
1715 * Better support for unicode paths when using inotify.
1716   (`bz #1104181 <https://bugzilla.redhat.com/show_bug.cgi?id=1104181>`_)
1718 * Unicode fixes for non-ascii locales.
1719   (`#266 <https://github.com/git-cola/git-cola/issues/266>`_)
1720   (`#273 <https://github.com/git-cola/git-cola/issues/273>`_)
1721   (`#276 <https://github.com/git-cola/git-cola/issues/276>`_)
1722   (`#282 <https://github.com/git-cola/git-cola/issues/282>`_)
1723   (`#298 <https://github.com/git-cola/git-cola/issues/298>`_)
1724   (`#302 <https://github.com/git-cola/git-cola/issues/302>`_)
1725   (`#303 <https://github.com/git-cola/git-cola/issues/303>`_)
1726   (`#305 <https://github.com/git-cola/git-cola/issues/305>`_)
1728 * Viewing history from the file browser was fixed for Python3.
1729   (`#274 <https://github.com/git-cola/git-cola/issues/274>`_)
1731 * setup.py was fixed to install the `*.rst` documentation.
1732   (`#279 <https://github.com/git-cola/git-cola/issues/279>`_)
1734 * Patch export was fixed for Python3.
1735   (`#290 <https://github.com/git-cola/git-cola/issues/290>`_)
1737 * Fixed adding a bookmark with trailing slashes.
1738   (`#295 <https://github.com/git-cola/git-cola/pull/295>`_)
1740 * The default `git dag` layout is now setup so that its widgets
1741   can be freely resized on Linux.
1742   (`#299 <https://github.com/git-cola/git-cola/issues/299>`_)
1744 * Invalid tag names are now reported when creating tags.
1745   (`#296 <https://github.com/git-cola/git-cola/pull/296>`_)
1747 .. _v2.0.3:
1749 git-cola v2.0.3
1750 ===============
1751 Usability, bells and whistles
1752 -----------------------------
1753 * `git cola` no longer prompts after successfully creating a new branch.
1754   (`#251 <https://github.com/git-cola/git-cola/pull/251>`_)
1756 * Hitting enter on simple dialogs now accepts them.
1757   (`#255 <https://github.com/git-cola/git-cola/pull/255>`_)
1759 Fixes
1760 -----
1761 * `git dag` no longer relies on `sys.maxint`, which is
1762   not available in Python3.
1763   (`#249 <https://github.com/git-cola/git-cola/issues/249>`_)
1765 * Python3-related fixes.
1766   (`#254 <https://github.com/git-cola/git-cola/pull/254>`_)
1768 * Python3-on-Windows-related fixes.
1769   (`#250 <https://github.com/git-cola/git-cola/pull/250>`_)
1770   (`#252 <https://github.com/git-cola/git-cola/pull/252>`_)
1771   (`#253 <https://github.com/git-cola/git-cola/pull/253>`_)
1773 * Switching repositories using the bookmarks widget was not
1774   refreshing the inotify watcher.
1775   (`#256 <https://github.com/git-cola/git-cola/pull/256>`_)
1777 * Special commit messages trailers (e.g. "Acked-by:") are now special-cased to
1778   fix word wrapping lines that start with "foo:".
1779   (`#257 <https://github.com/git-cola/git-cola/issues/257>`_)
1781 * `git dag` sometimes left behind selection artifacts.
1782   We now refresh the view to avoid them.
1783   (`#204 <https://github.com/git-cola/git-cola/issues/204>`_)
1785 .. _v2.0.2:
1787 git-cola v2.0.2
1788 ===============
1789 Usability, bells and whistles
1790 -----------------------------
1791 * Better inotify support for file creation and deletion.
1792   (`#240 <https://github.com/git-cola/git-cola/issues/240>`_)
1794 * `git cola` now supports the X11 Session Management Protocol
1795   and remembers its state across logout/reboot.
1796   (`#164 <https://github.com/git-cola/git-cola/issues/164>`_)
1798 * `git cola` has a new icon.
1799   (`#190 <https://github.com/git-cola/git-cola/issues/190>`_)
1801 Packaging
1802 ---------
1803 * Building the documentation no longer requires `asciidoc`.
1804   We now use `Sphinx <http://sphinx-doc.org/>`_ for building
1805   html documentation and man pages.
1807 Fixes
1808 -----
1809 * Reworked the git-dag gravatar icon code to avoid a unicode
1810   error in Python 2.
1812 * Commit message line-wrapping was made to better match the GUI editor.
1813   (`#242 <https://github.com/git-cola/git-cola/issues/242>`_)
1815 * Better support for Python3 on Windows
1816   (`#246 <https://github.com/git-cola/git-cola/issues/246>`_)
1818 Packaging
1819 ---------
1820 * git-cola no longer depends on Asciidoc for building its documentation
1821   and man-pages.  We now depend on [Sphinx](http://sphinx-doc.org/) only.
1823 .. _v2.0.1:
1825 git-cola v2.0.1
1826 ===============
1827 Usability, bells and whistles
1828 -----------------------------
1829 * Some context menu actions are now hidden when selected
1830   files do not exist.
1831   (`#238 <https://github.com/git-cola/git-cola/issues/238>`_)
1833 Fixes
1834 -----
1835 * The build-git-cola.sh contrib script was improved.
1836   (`#235 <https://github.com/git-cola/git-cola/pull/235>`_)
1838 * Non-ascii worktrees work properly again.
1839   (`#234 <https://github.com/git-cola/git-cola/issues/234>`_)
1841 * The browser now guards itself against missing files.
1842   (`bz #1041378 <https://bugzilla.redhat.com/show_bug.cgi?id=1071378>`_)
1844 * Saving widget state now works under Python3.
1845   (`#236 <https://github.com/git-cola/git-cola/pull/236>`_)
1847 .. _v2.0.0:
1849 git-cola v2.0.0
1850 ===============
1851 Portability
1852 -----------
1853 * git-cola now runs on Python 3 thanks to Virgil Dupras.
1854   (`#233 <https://github.com/git-cola/git-cola/pull/233>`_)
1856 * Python 2.6, 2.7, and 3.2+ are now supported.
1857   Python 2.5 is no longer supported.
1859 Fixes
1860 -----
1861 * i18n test fixes thanks to Virgil Dupras.
1862   (`#231 <https://github.com/git-cola/git-cola/pull/231>`_)
1864 * git-cola.app build fixes thanks to Maicon D. Filippsen.
1865   (`#230 <https://github.com/git-cola/git-cola/pull/230>`_)
1867 * Lots of pylint improvements thanks to Alex Chernetz.
1868   (`#229 <https://github.com/git-cola/git-cola/pull/229>`_)
1870 .. _v1.9.4:
1872 git-cola v1.9.4
1873 ===============
1874 Usability, bells and whistles
1875 -----------------------------
1876 * The new `Bookmarks` tool makes it really easy to switch between repositories.
1878 * There is now a dedicated dialog for applying patches.
1879   See the ``File -> Apply Patches`` menu item.
1880   (`#215 <https://github.com/git-cola/git-cola/issues/215>`_)
1882 * A new `git cola am` sub-command was added for applying patches.
1884 Fixes
1885 -----
1886 * Fixed a typo that caused inotify events to be silently ignored.
1888 * Fixed the sys.path setup for Mac OS X (Homebrew).
1889   (`#221 <https://github.com/git-cola/git-cola/issues/221>`_)
1891 * Lots of pylint fixes thanks to Alex Chernetz.
1893 .. _v1.9.3:
1895 git-cola v1.9.3
1896 ===============
1897 Usability, bells and whistles
1898 -----------------------------
1899 * `git cola --amend` now starts the editor in `amend` mode.
1900   (`#187 <https://github.com/git-cola/git-cola/issues/187>`_)
1902 * Multiple lines of text can now be pasted into the `summary` field.
1903   All text beyond the first newline will be automatically moved to the
1904   `extended description` field.
1905   (`#212 <https://github.com/git-cola/git-cola/issues/212>`_)
1907 Fixes
1908 -----
1909 * Stray whitespace in `.git` files is now ignored.
1910   (`#213 <https://github.com/git-cola/git-cola/issues/213>`_)
1912 * Fix "known incorrect sRGB profile" in `staged-item.png`.
1913   (`gentoo-devel message #85066
1914   <http://comments.gmane.org/gmane.linux.gentoo.devel/85066>`_)
1916 .. _v1.9.2:
1918 git-cola v1.9.2
1919 ===============
1920 Fixes
1921 -----
1922 * Fix a traceback when `git push` fails.
1923   (`bz #1034778 <https://bugzilla.redhat.com/show_bug.cgi?id=1034778>`_)
1925 Packaging
1926 ---------
1927 * Most of the git-cola sub-packages have been removed.
1928   The only remaining packages are `cola`, `cola.models`,
1929   and `cola.widgets`.
1931 * The translation file for Simplified Chinese was renamed
1932   to `zh_CN.po`.
1933   (`#209 <https://github.com/git-cola/git-cola/issues/209>`_)
1935 .. _v1.9.1:
1937 git-cola v1.9.1
1938 ===============
1939 Packaging
1940 ---------
1941 * `git cola version --brief` now prints the brief version number.
1943 Fixes
1944 -----
1945 * Resurrected the "make dist" target, for those that prefer to create
1946   their own tarballs.
1948 * Fixed the typo that broke the preferences dialog.
1950 .. _v1.9.0:
1952 git-cola v1.9.0
1953 ===============
1954 Usability, bells and whistles
1955 -----------------------------
1956 * We now ship a full-featured interactive `git rebase` editor.
1957   The rebase todo file is edited using the `git xbase` script which
1958   is provided at `$prefix/share/git-cola/bin/git-xbase`.
1959   This script can be used standalone by setting the `$GIT_SEQUENCE_EDITOR`
1960   before running `git rebase --interactive`.
1961   (`#1 <https://github.com/git-cola/git-cola/issues/1>`_)
1963 * Fixup commit messages can now be loaded from the commit message editor.
1965 * Tool widgets can be locked in place by using the "Tools/Lock Layout"
1966   menu action.
1967   (`#202 <https://github.com/git-cola/git-cola/issues/202>`_)
1969 * You can now push to several remotes simultaneously by selecting
1970   multiple remotes in the "Push" dialog.
1971   (`#148 <https://github.com/git-cola/git-cola/issues/148>`_)
1973 * The `grep` tool learned to search using three different modes:
1974   basic regular expressions (default), extended regular expressions,
1975   and fixed strings.
1977 Packaging
1978 ---------
1979 * `git cola` now depends on the `argparse` Python module.
1980   This module is part of the stdlib in Python 2.7 and must
1981   be installed separately when using Python 2.6 and below.
1983 Fixes
1984 -----
1985 * Support unicode in the output from `fetch`, `push`, and `pull`.
1987 .. _v1.8.5:
1989 git-cola v1.8.5
1990 ===============
1991 Usability, bells and whistles
1992 -----------------------------
1993 * We now detect when the editor or history browser are misconfigured.
1994   (`#197 <https://github.com/git-cola/git-cola/issues/197>`_)
1995   (`bz #886826 <https://bugzilla.redhat.com/show_bug.cgi?id=886826>`_)
1997 * Display of untracked files can be disabled from the Preferences dialog
1998   or by setting the `gui.displayuntracked` configuration variable to `false`.
1999   (`Git Mailing List on 2013-08-21
2000   <https://public-inbox.org/git/20130821032913.GA6092@wheezy.local/>`_)
2002 Fixes
2003 -----
2004 * Unicode stash names are now supported
2005   (`#198 <https://github.com/git-cola/git-cola/issues/198>`_)
2007 * The diffs produced when reverting workspace changes were made more robust.
2009 .. _v1.8.4:
2011 git-cola v1.8.4
2012 =======================
2013 Usability, bells and whistles
2014 -----------------------------
2015 * Brand new German translation thanks to Sven Claussner.
2017 * The "File" menu now provides a "New Repository..." menu action.
2019 * `git dag` now uses a dock-widget interface so that its widgets can
2020   be laid-out and arranged.  Customizations are saved and restored
2021   the next time `git dag` is launched.
2023 * `git dag` now has a "Zoom Best Fit" button next alongside the
2024   "Zoom In" and "Zoom Out" buttons.
2026 * `Ctrl+L` now focuses the "Search" field in the `git dag` tool.
2028 * Right-clicking in the "diff" viewer now updates the cursor position
2029   before performing actions, which makes it much easier to click around
2030   and selectively stage sections.  Previously, the current cursor position
2031   was used which meant that it required two clicks (left-click to update
2032   the position followed by right-click to get the context menu) for the
2033   desired section to be used.  This is now a single right-click operation.
2035 * The `Ctrl+D` "Launch Diff Tool" action learned to automatically choose
2036   between `git difftool` and `git mergetool`.  If the file is unmerged then
2037   we automatically launch `git mergetool` on the path, otherwise we use
2038   `git difftool`.  We do this because `git difftool` is not intended to
2039   be used on unmerged paths.  Automatically using `git mergetool` when
2040   appropriate is the most intuitive and muscle-memory-friendly thing to do.
2042 * You can now right-click on folders in your standard file browser
2043   and choose "Open With -> Git Cola"  (Linux-only).
2045 Fixes
2046 -----
2047 * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple
2048   at `sys.version_info`.  We now avoid using that variable for better
2049   portability.
2051 * We now read the user's Git configuration from `~/.config/git/config`
2052   if that file is available, otherwise we use the traditional `~/.gitconfig`
2053   path, just like Git itself.
2055 * Some edge cases were fixed when applying partial/selected diffs.
2057 * The diff viewer is now properly cleared when refreshing.
2058   (`#194 <https://github.com/git-cola/git-cola/issues/194>`_)
2060 .. _v1.8.3:
2062 git-cola v1.8.3
2063 ===============
2064 Usability, bells and whistles
2065 -----------------------------
2066 * The diff viewer now has an "Options" menu which can be
2067   used to set "git diff" options.  This can be used to
2068   ignore whitespace changes or to show a change with its
2069   surrounding function as context.
2070   (`#150 <https://github.com/git-cola/git-cola/issues/150>`_)
2072 * `git cola` now remembers your commit message and will restore it
2073   when `git cola` is restarted.
2074   (`#175 <https://github.com/git-cola/git-cola/pull/175>`_)
2076 * `Ctrl+M` can now be used to toggle the "Amend last commit"
2077   checkbox in the commit message editor.
2078   (`#161 <https://github.com/git-cola/git-cola/pull/161>`_)
2080 * Deleting remote branches can now be done from the "Branch" menu.
2081   (`#152 <https://github.com/git-cola/git-cola/issues/152>`_)
2083 * The commit message editor now has a built-in spell checker.
2085 Fixes
2086 -----
2087 * We now avoid invoking external diffs when showing diffstats.
2088   (`#163 <https://github.com/git-cola/git-cola/pull/163>`_)
2090 * The `Status` tool learned to reselect files when refreshing.
2091   (`#165 <https://github.com/git-cola/git-cola/issues/165>`_)
2093 * `git cola` now remembers whether it has been maximized and will restore the
2094   maximized state when `git cola` is restarted.
2095   (`#172 <https://github.com/git-cola/git-cola/issues/172>`_)
2097 * Performance is now vastly improved when staging hundreds or
2098   thousands of files.
2100 * `git cola` was not correctly saving repo-specific configuration.
2101   (`#174 <https://github.com/git-cola/git-cola/issues/174>`_)
2103 * Fix a UnicodeDecode in sphinxtogithub when building from source.
2105 .. _v1.8.2:
2107 git-cola v1.8.2
2108 ===============
2109 Usability, bells and whistles
2110 -----------------------------
2111 * We now automatically remove missing repositories from the
2112   "Select Repository" dialog.
2113   (`#145 <https://github.com/git-cola/git-cola/issues/145>`_)
2115 * A new `git cola diff` sub-command was added for diffing changed files.
2117 Fixes
2118 -----
2119 * The inotify auto-refresh feature makes it difficult to select text in
2120   the "diff" editor when files are being continually modified by another
2121   process.  The auto-refresh causes it to lose the currently selected text,
2122   which is not wanted.  We now avoid this problem by saving and restoring
2123   the selection when refreshing the editor.
2124   (`#155 <https://github.com/git-cola/git-cola/issues/155>`_)
2126 * More strings have been marked for l10n.
2127   (`#157 <https://github.com/git-cola/git-cola/issues/157>`_)
2129 * Fixed the Alt+D Diffstat shortcut.
2130   (`#159 <https://github.com/git-cola/git-cola/issues/159>`_)
2132 Fixes
2133 -----
2134 * Better error handling when cloning repositories.
2136   We were not handling the case where a git URL has
2137   no basename, e.g. `https://git.example.com/`.
2138   `git cola` originally rejected these URLs instead of
2139   allowing users to clone them.  It now allows these URLs
2140   when they point to valid git repositories.
2142   Additionally, `git cola` learned to echo the errors
2143   reported by `git clone` when it fails.
2144   (`#156 <https://github.com/git-cola/git-cola/issues/156>`_)
2146 .. _v1.8.1:
2148 git-cola v1.8.1
2149 ===============
2150 Usability, bells and whistles
2151 -----------------------------
2152 * `git dag` got a big visual upgrade.
2154 * `Ctrl+G` now launches the "Grep" tool.
2156 * `Ctrl+D` launches difftool and `Ctrl+E` launches your editor
2157   when in the diff panel.
2159 * git-cola can now be told to use an alternative language.
2160   For example, if the native language is German and we want git-cola to
2161   use English then we can create a `~/.config/git-cola/language` file with
2162   "en" as its contents: ``echo en >~/.config/git-cola/language``
2163   (`#140 <https://github.com/git-cola/git-cola/issues/140>`_)
2165 * A new `git cola merge` sub-command was added for merging branches.
2167 * Less blocking in the main UI
2169 Fixes
2170 -----
2171 * Autocomplete issues on KDE
2172   (`#144 <https://github.com/git-cola/git-cola/issues/144>`_)
2174 * The "recently opened repositories" startup dialog did not
2175   display itself in the absence of bookmarks.
2176   (`#139 <https://github.com/git-cola/git-cola/issues/139>`_)
2178 .. _v1.8.0:
2180 git-cola v1.8.0
2181 ===============
2182 Usability, bells and whistles
2183 -----------------------------
2184 * `git cola` learned to honor `.gitattributes` when showing and
2185   interactively applying diffs.  This makes it possible to store
2186   files in git using a non-utf-8 encoding and `git cola` will
2187   properly accept them.  This must be enabled by settings
2188   `cola.fileattributes` to true, as it incurs a small performance
2189   penalty.
2190   (`#96 <https://github.com/git-cola/git-cola/issues/96>`_)
2192 * `git cola` now wraps commit messages at 72 columns automatically.
2193   This is configurable using the `cola.linebreak` variable to enable/disable
2194   the feature, and `cola.textwidth` to configure the limit.
2195   (`#133 <https://github.com/git-cola/git-cola/issues/133>`_)
2197 * A new "Open Recent" sub-menu was added to the "File" menu.
2198   This makes it easy to open a recently-edited repository.
2199   (`#135 <https://github.com/git-cola/git-cola/issues/135>`_)
2201 * We now show a preview for untracked files when they are clicked
2202   using the `Status` tool.
2203 * A new "Open Using Default Application" action was added to the
2204   `Status` tool.  It is activated using either `Spacebar` or through
2205   the context menu.  This action uses `xdg-open` on Linux and
2206   `open` on Mac OS X.
2207 * A new "Open Parent Directory" action was added to the `Status` tool.
2208   It is activated using either `Shift+Spacebar` or through the
2209   context menu.
2210 * `git dag` learned to honor the `log.date` git configuration variable.
2211   This makes the date display follow whatever format the user has
2212   configured.
2213 * A new `git cola config` sub-command was added for quickly
2214   tweaking `git cola`'s git configuration settings.
2215 * Some small usability tweaks -- some user confirmation prompts
2216   were defaulting to "Cancel" when they should have been defaulting
2217   to the affirmative option instead.
2219 Fixes
2220 -----
2221 * Properly handle arbitrarily-named branches.
2222 * We went back to launching `git mergetool` using an xterm.
2223   The reason is that there are a couple of places where `git mergetool`
2224   requires a terminal for user interaction not covered by `--no-prompt`.
2225 * We now properly handle an edge case when applying short diffs at
2226   the start of a file.
2228 .. _v1.7.7:
2230 git-cola v1.7.7
2231 ===============
2232 Usability, bells and whistles
2233 -----------------------------
2234 * New and improved `grep` mode lets you instantly find and edit files.
2235 * New `git cola grep` standalone mode.
2236 * Support for passing arguments to the configured editors, e.g. `gvim -p`
2237   This makes it possible to select multiple files in the status
2238   window and use `Ctrl-e` to edit them all at once.
2239 * Remote operations now prompt on errors only.
2240 * The `Tab` key now jumps to the extended description when editing the summary.
2241 * More shortcut key labels and misc. UX improvements.
2243 Fixes
2244 -----
2245 * Selecting an item no longer copies its filename to the copy/paste buffer.
2246   `Ctrl-c` or the "Copy" context-menu action can be used instead.
2247 * The repository monitoring feature on Windows learned to ignore
2248   changes within the ".git" directory.  Thanks to Andreas Sommer.
2249   (`#120 <https://github.com/git-cola/git-cola/issues/120>`_)
2251 .. _v1.7.6:
2253 git-cola v1.7.6
2254 ===============
2255 Usability, bells and whistles
2256 -----------------------------
2257 * `git dag` learned to color-code branchy edges.
2258   The edge colors change when a new branch is detected,
2259   which makes the history much easier to follow.
2260   A huge thanks to Uri Okrent for making it happen.
2262 * New GUI for editing remote repositories.
2264 * New `git cola archive` and `git cola remote` sub-commands.
2266 * `git cola browser` learned an 'Untrack' command.
2268 * The diff editor learned to staged/unstaged while amending.
2270 * The status tool can now scroll horizontally.
2272 * New git repositories can be created by clicking 'New' on the
2273   `git cola --prompt` startup screen.
2275 .. _v1.7.5:
2277 git-cola v1.7.5
2278 ===============
2279 Usability, bells and whistles
2280 -----------------------------
2281 * Auto-completion was added to more tools.
2283 * `git dag` is easier to use on smaller displays -- the author
2284   field elides its text which allows for a more compact display.
2286 * Selected commits in `git dag` were made more prominent and
2287   easier to see.
2289 * 'Create Branch' learned to fetch remote branches and uses a
2290   background thread to do so.
2292 * User-configured GUI tools are listed alphabetically in the 'Actions' menu.
2294 * The 'Pull' dialog remembers the value of the 'Rebase' checkbox
2295   between invocations.
2297 .. _v1.7.4.1:
2299 git-cola v1.7.4.1
2300 =================
2301 Fixes
2302 -----
2303 * Detect Homebrew so that OS X users do not need to set PYTHONPATH.
2305 * `git dag` can export patches again.
2307 .. _v1.7.4:
2309 git-cola v1.7.4
2310 ===============
2311 Usability, bells and whistles
2312 -----------------------------
2313 * The 'Classic' tool was renamed to 'Browser' and learned to
2314   limit history to the current branch.
2316 * `git dag` learned about gravatar and uses it to show images
2317   for commit authors.
2319 * `git dag` learned to use OpenGL for rendering resulting in
2320   much faster rendering.
2322 * More dialogs learned vim-style keyboard shortcuts.
2324 * The commit message editor learned better arrow key navigation.
2326 .. _v1.7.3:
2328 git-cola v1.7.3
2329 ===============
2330 Usability, bells and whistles
2331 -----------------------------
2332 * `git cola` learned a few new sub commands:
2334 .. sourcecode:: sh
2336     git cola dag
2337     git cola branch
2338     git cola search
2340 * `Return` in the summary field jumps to the extended description.
2342 * `Ctrl+Return` is now a shortcut for 'Commit'.
2344 * Better French translation for 'Sign-off'.
2346 * The 'Search' widget now has a much simpler and streamlined
2347   user interface.
2349 * vim-style `h,j,k,l` navigation shortcuts were added to the DAG widget.
2351 * `git dag` no longer prompts for files when diffing commits if the
2352   text field contains paths.
2354 * General user interface and performance improvements.
2356 Fixes
2357 -----
2358 * The diff viewer no longer changes font size when holding `Control`
2359   while scrolling with the mouse wheel.
2361 * Files with a typechange (e.g. symlinks that become files, etc.)
2362   are now correctly identified as being modified.
2364 Packaging
2365 ---------
2366 * The `cola.controllers` and `cola.views` packages were removed.
2368 .. _v1.7.2:
2370 git-cola v1.7.2
2371 ===============
2372 Usability, bells and whistles
2373 -----------------------------
2374 * `git cola` can now launch sub commands, e.g.:
2376 .. sourcecode:: sh
2378     git cola classic
2379     git cola stash
2380     git cola fetch
2381     git cola push
2382     git cola pull
2383     git cola tag
2385 * `git dag` is more responsive when gathering auto-completions.
2387 * Keyboard shortcuts are displayed when the '?' key is pressed.
2389 * Various keyboard shortcuts were added for improved usability.
2391 * The status widget now lists unmerged files before modified files.
2393 * vim-style `h,j,k,l` navigation shortcuts were added to the status widget.
2395 * A 'Recently Modified Files...' tool was added.
2397 * Tools can now be hidden with `Alt + #` (where `#` is a keyboard number)
2398   and focused with `Alt + Shift + #`.
2400 * The syntax highlighting colors for diffs was made less intrusive.
2402 * The commit message editor was redesigned to have a more compact
2403   and keyboard-convenient user interface.
2404   
2405 * Keyboard shortcuts for adding a Signed-off-by (`Ctrl + i`)
2406   and creating a commit (`Ctrl + m`) were added.
2408 * The status widget was adjusted to use less screen real-estate.
2410 Fixes
2411 -----
2412 * Avoid updating the index when responding to inotify events.
2413   This avoids interfering with operations such as `git rebase --interactive`.
2414   (`#99 <https://github.com/git-cola/git-cola/issues/99>`_)
2416 Packaging
2417 ---------
2418 * Create `git-dag.pyw` in the win32 installer.
2420 * win32 shortcuts now contain explicit calls to `pythonw.exe` instead of
2421   calling the `.pyw` file directly.
2423 Deprecated Features
2424 -------------------
2425 * The 'Apply Changes from Branch...' feature was removed.
2426   `git dag`'s 'Grab File...' feature used alongside the index/worktree editor
2427   is a simpler alternative.
2429 .. _v1.7.1.1:
2431 git-cola v1.7.1.1
2432 =================
2433 Fixes
2434 -----
2435 * Further enhanced the staging/unstaging behavior in the status widget.
2436   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
2438 * Unmerged files are no longer listed as modified.
2440 Packaging
2441 ---------
2442 The `cola-$version` tarballs on github were originally setup to
2443 have the same contents as the old tarballs hosted on tuxfamily.
2444 The `make dist` target was changed to write files to a
2445 `git-cola-$version` subdirectory and tarball.
2447 This makes the filenames consistent for the source tarball,
2448 the darwin .app tarball, and the win32 .exe installer.
2450 .. _v1.7.1:
2452 git-cola v1.7.1
2453 ===============
2454 Usability, bells and whistles
2455 -----------------------------
2456 * Refined the staging/unstaging behavior for code reviews.
2457   (`#97 <https://github.com/git-cola/git-cola/issues/97>`_)
2459 * Added more styling and icons to menus and buttons.
2461 * Adjusted some terminology to more closely match the git CLI.
2463 Fixes
2464 -----
2465 * Boolean `git config` settings with no value are now supported
2466   (these are not created by git these days but exist in legacy repositories).
2468 * Unicode branches and tags are supported in the "branch diff" tool.
2470 * Guard against low-memory conditions and more interrupted system calls.
2472 Packaging
2473 ---------
2474 * Added desktop launchers for git-cola.desktop and git-dag.desktop.
2475   This replaces the old cola.desktop, so some adjustments to RPM .spec
2476   and debian/ files will be needed.
2478 * Fixed the darwin app-tarball Makefile target to create relative paths.
2480 Cleanup
2481 -------
2482 * The `--style` option was removed.  `git cola` follows the system theme
2483   so there's no need for this option these days.
2485 .. _v1.7.0:
2487 git-cola v1.7.0
2488 ===============
2489 Usability, bells and whistles
2490 -----------------------------
2491 * Export a patch series from `git dag` into a `patches/` directory.
2493 * `git dag` learned to diff commits, slice history along paths, etc.
2495 * Added instant-preview to the `git stash` widget.
2497 * A simpler preferences editor is used to edit `git config` values.
2498   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
2499   (`#89 <https://github.com/git-cola/git-cola/issues/89>`_)
2501 * Previous commit messages can be re-loaded from the message editor.
2502   (`#33 <https://github.com/git-cola/git-cola/issues/33>`_)
2504 Fixes
2505 -----
2506 * Display commits with no file changes.
2507   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
2509 * Improved the diff editor's copy/paste behavior
2510   (`#90 <https://github.com/git-cola/git-cola/issues/90>`_)
2512 Packaging
2513 ---------
2514 * Bumped version number to ceil(minimum git version).
2515   `git cola` now requires `git` >= 1.6.3.
2517 * Simplified git-cola's versioning when building from tarballs
2518   outside of git.  We no longer check for a 'version' file at
2519   the root of the repository.  We instead keep a default version
2520   in `cola/version.py` and use it when `git cola`'s `.git` repository
2521   is not available.
2523 .. _v1.4.3.5:
2525 git-cola v1.4.3.5
2526 =================
2527 Usability, bells and whistles
2528 -----------------------------
2529 * inotify is much snappier and available on Windows
2530   thanks to Karl Bielefeldt.
2532 * New right-click command to add untracked files to .gitignore
2533   thanks to Audrius Karabanovas.
2535 * Stash, fetch, push, and pull usability improvements
2537 * General usability improvements
2539 * stderr is logged when applying partial diffs.
2541 Fixes
2542 -----
2543 * Files can be unstaged when amending.
2544   (`#82 <https://github.com/git-cola/git-cola/issues/82>`_)
2546 * Show the configured remote.$remote.pushurl in the GUI
2547   (`#83 <https://github.com/git-cola/git-cola/issues/83>`_)
2549 * Removed usage of the "user" module.
2550   (`#86 <https://github.com/git-cola/git-cola/issues/86>`_)
2552 * Avoids an extra `git update-index` call during startup.
2555 .. _v1.4.3.4:
2557 git-cola v1.4.3.4
2558 =================
2559 Usability, bells and whistles
2560 -----------------------------
2561 * We now provide better feedback when `git push` fails.
2562   (`#69 <https://github.com/git-cola/git-cola/issues/69>`_)
2564 * The Fetch, Push, and Pull dialogs now give better feedback
2565   when interacting with remotes.  The dialogs are modal and
2566   a progress dialog is used.
2568 Fixes
2569 -----
2570 * More unicode fixes, again.  It is now possible to have
2571   unicode branch names, repository paths, home directories, etc.
2572   This continued the work initiated by Redhat's bugzilla #694806.
2574   https://bugzilla.redhat.com/show_bug.cgi?id=694806
2576 .. _v1.4.3.3:
2578 git-cola v1.4.3.3
2579 =================
2580 Usability, bells and whistles
2581 -----------------------------
2582 * The `git cola` desktop launchers now prompt for a repo
2583   by default.  This is done by using the new `--prompt`
2584   flag which tells `git cola` to ignore any git repositories
2585   in the current directory and prompt for one instead.
2587 Fixes
2588 -----
2589 * More Unicode fixes for repositories and home directories with
2590   embedded unicode characters.  Thanks to Christian Jann for
2591   patience and helpful bug reports.
2593 * Fix the 'Clone' button in the startup dialog.
2595 .. _v1.4.3.2:
2597 git-cola v1.4.3.2
2598 =================
2599 Usability, bells and whistles
2600 -----------------------------
2601 * Faster startup time! `git cola` now offloads initialization
2602   to a background thread so that the GUI appears almost instantly.
2604 * Specialized diff options for p4merge, vimdiff, araxis, emerge,
2605   and ecmerge in difftool (backported from git.git).
2607 Fixes
2608 -----
2609 * Fix launching commands in the background on Windows
2610   (e.g. when launching `git difftool`).
2612 * Fix unicode errors when home or repository directories contain
2613   unicode characters.
2614   (`#74 <https://github.com/git-cola/git-cola/issues/74>`_)
2615   (`bz #694806 <https://bugzilla.redhat.com/show_bug.cgi?id=694806>`_)
2617 .. _v1.4.3.1:
2619 git-cola v1.4.3.1
2620 =================
2621 Usability, bells and whistles
2622 -----------------------------
2623 * The `cola classic` tool can be now configured to be dockable.
2624   (`#56 <https://github.com/git-cola/git-cola/issues/56>`_)
2626 * The `cola classic` tool now uses visual sigils to indicate a file's status.
2627   The idea and icons were provided by Uri Okrent.
2629 * Include the 'Rescan' button in the 'Actions' widget regardless
2630   of whether inotify is installed.
2632 Packaging
2633 ---------
2634 * Fix installation of translations per Fedora
2635   This incorporates Fedora's fix for the translations path
2636   which originally appeared in cola-1.4.3-translations.patch.
2638 * Mac OS X git-cola developers can now generate git-cola.app
2639   application bundles using 'make app-bundle'.
2641 Fixes
2642 -----
2643 * Fixed a stacktrace when trying to use "Get Commit Message Template"
2644   with an unconfigured "commit.template" git config variable.
2645   (`bz #67521 <https://bugzilla.redhat.com/show_bug.cgi?id=675721>`_)
2646   (`#72 <https://github.com/git-cola/git-cola/issues/72>`_)
2648 * Properly raise the main window on Mac OS X.
2650 * Properly handle staging a huge numbers of files at once.
2652 * Speed up 'git config' usage by fixing cola's caching proxy.
2654 * Guard against damaged ~/.cola files.
2656 .. _v1.4.3:
2658 git-cola v1.4.3
2659 ===============
2660 Usability, bells and whistles
2661 -----------------------------
2662 * `git dag` now has a separate display area
2663   for displaying commit metadata.  This area will soon
2664   grow additional functionality such as cherry-picking,
2665   branching, etc.
2667 Fixes
2668 -----
2669 * Fixed tests from a previous refactoring.
2671 * Guard against 'diff.external' configuration by always
2672   calling 'git diff' with the '--no-ext-diff' option.
2673   (`#67 <https://github.com/git-cola/git-cola/issues/67>`_)
2675 * Respect 'gui.diffcontext' so that cola's diff display
2676   shows the correct number of context lines.
2678 * Raise the GUI so that it is in the foreground on OS X.
2680 Packaging
2681 ---------
2682 * We now allow distutils to rewrite cola's shebang line.
2683   This allows us to run on systems where "which python"
2684   is Python3k.  This is exposed by setting the `PYTHON`
2685   Makefile variable to the location of python2.x.
2687 * git-cola.app is now a tiny download because it no longer
2688   contains Qt and PyQt.  These libraries are provided as a
2689   separate download.
2690   (`Link <http://code.google.com/p/git-cola/downloads/list>`_)
2692 .. _v1.4.2.5:
2694 git-cola v1.4.2.5
2695 =================
2696 Usability, bells and whistles
2697 -----------------------------
2698 * Clicking on paths in the status widget copies them into the
2699   copy/paste buffer for easy middle-clicking into terminals.
2701 * `Ctrl+C` in diff viewer copies the selected diff to the clipboard.
2703 Fixes
2704 -----
2705 * Fixed the disappearing actions buttons on PyQt 4.7.4
2706   as reported by Arch and Ubuntu 10.10.
2707   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
2709 * Fixed mouse interaction with the status widget where some
2710   items could not be de-selected.
2712 Packaging
2713 ---------
2714 * Removed hard-coded reference to lib/ when calculating Python's
2715   site-packages directory.
2717 .. _v1.4.2.4:
2719 git-cola v1.4.2.4
2720 =================
2721 Usability, bells and whistles
2722 -----------------------------
2723 * Removed "single-click to (un)stage" in the status view.
2724   This is a usability improvement since we no longer perform
2725   different actions depending on where a row is clicked.
2727 * Added ability to create unsigned, annotated tags.
2729 Fixes
2730 -----
2731 * Updated documentation to use `cola.git` instead of `cola.gitcmd`.
2733 .. _v1.4.2.3:
2735 git-cola v1.4.2.3
2736 =================
2737 Usability, bells and whistles
2738 -----------------------------
2739 * Allow un/staging by right-clicking top-level items
2740   (`#57 <https://github.com/git-cola/git-cola/issues/57>`_)
2742 * Running 'commit' with no staged changes prompts to allow
2743   staging all files.
2744   (`#55 <https://github.com/git-cola/git-cola/issues/55>`_)
2746 * Fetch, Push, and Pull are now available via the menus
2747   (`#58 <https://github.com/git-cola/git-cola/issues/58>`_)
2749 Fixes
2750 -----
2751 * Simplified the actions widget to work around a regression
2752   in PyQt4 4.7.4.
2753   (`#62 <https://github.com/git-cola/git-cola/issues/62>`_)
2755 .. _v1.4.2.2:
2757 git-cola v1.4.2.2
2758 =================
2759 Usability, bells and whistles
2760 -----------------------------
2761 * `git dag` interaction was made faster.
2763 Fixes
2764 -----
2765 * Added '...' indicators to the buttons for
2766   'Fetch...', 'Push...', 'Pull...', and 'Stash...'.
2767   (`#51 <https://github.com/git-cola/git-cola/issues/51>`_)
2769 * Fixed a hang-on-exit bug in the cola-provided
2770   'ssh-askpass' implementation.
2772 .. _v1.4.2.1:
2774 git-cola v1.4.2.1
2775 =================
2776 Usability, bells and whistles
2777 -----------------------------
2778 * Staging and unstaging is faster.
2779   (`#48 <https://github.com/git-cola/git-cola/issues/48>`_)
2781 * `git dag` reads history in a background thread.
2783 Portability
2784 -----------
2785 * Added :data:`cola.compat.hashlib` for `Python 2.4` compatibility
2786 * Improved `PyQt 4.1.x` compatibility.
2788 Fixes
2789 -----
2790 * Configured menu actions use ``sh -c`` for Windows portability.
2793 .. _v1.4.2:
2795 git-cola v1.4.2
2796 ===============
2797 Usability, bells and whistles
2798 -----------------------------
2799 * Added support for the configurable ``guitool.<tool>.*``
2800   actions as described in the ``git config`` documentation.
2801   (`git-config(1) <https://git-scm.com/docs/git-config>`_)
2802   (`#44 <https://github.com/git-cola/git-cola/issues/44>`_)
2804   This makes it possible to add new actions to `git cola`
2805   by simply editing ``~/.gitconfig``.  This implements the
2806   same guitool support as `git gui`.
2808 * Introduced a stat cache to speed up `git config` and
2809   repository status checks.
2811 * Added Alt-key shortcuts to the main `git cola` interface.
2813 * The `Actions` dock widget switches between a horizontal
2814   and vertical layout when resized.
2816 * We now use ``git diff --submodule`` for submodules
2817   (used when git >= 1.6.6).
2819 * The context menu for modified submodules includes an option
2820   to launch `git cola`.
2821   (`#17 <https://github.com/git-cola/git-cola/issues/17>`_)
2823 * Prefer ``$VISUAL`` over ``$EDITOR`` when both are defined.
2824   These are used to set a default editor in lieu of `core.editor`
2825   configuration.
2827 * Force the editor to be ``gvim`` when we see ``vim``.
2828   This prevents us from launching an editor in the (typically
2829   unattached) parent terminal and creating zombie editors
2830   that cannot be easily killed.
2832 * Selections are remembered and restored across updates.
2833   This makes the `partial-staging` workflow easier since the
2834   diff view will show the updated diff after staging.
2836 * Show the path to the current repository in a tooltip
2837   over the commit message editor.
2838   (`#45 <https://github.com/git-cola/git-cola/issues/45>`_)
2840 * Log internal ``git`` commands when ``GIT_COLA_TRACE`` is defined.
2841   (`#39 <https://github.com/git-cola/git-cola/issues/39>`_)
2843 Fixes
2844 -----
2845 * Improved backwards compatibility for Python 2.4.
2847 * `Review mode` can now review the current branch; it no longer
2848   requires you to checkout the branch into which the reviewed
2849   branch will be merged.
2851 * Guard against `color.ui = always` configuration when using
2852   `git log` by passing ``--no-color``.
2854 * ``yes`` and ``no`` are now supported as valid booleans
2855   by the `git config` parser.
2857 * Better defaults are used for `fetch`, `push`, and `pull`..
2858   (`#43 <https://github.com/git-cola/git-cola/issues/43>`_)
2860 Packaging
2861 ---------
2862 * Removed colon (`:`) from the applilcation name on Windows
2863   (`#41 <https://github.com/git-cola/git-cola/issues/41>`_)
2865 * Fixed bugs with the Windows installer
2866   (`#40 <https://github.com/git-cola/git-cola/issues/40>`_)
2868 * Added a more standard i18n infrastructure.  The install
2869   tree now has the common ``share/locale/$lang/LC_MESSAGES/git-cola.mo``
2870   layout in use by several projects.
2872 * Started trying to accommodate Mac OSX 10.6 (Snow Leopard)
2873   in the ``darwin/`` build scripts but our tester is yet to
2874   report success building a `.app` bundle.
2876 * Replaced use of ``perl`` in Sphinx/documentation Makefile
2877   with more-portable ``sed`` constructs.  Thanks to
2878   Stefan Naewe for discovering the portability issues and
2879   providing msysgit-friendly patches.
2881 .. _v1.4.1.2:
2883 git-cola v1.4.1.2
2884 =================
2885 Usability, bells and whistles
2886 -----------------------------
2887 * It is now possible to checkout from the index as well
2888   as from `HEAD`.  This corresponds to the
2889   `Removed Unstaged Changes` action in the `Repository Status` tool.
2891 * The `remote` dialogs (fetch, push, pull) are now slightly
2892   larger by default.
2894 * Bookmarks can be selected when `git cola` is run outside of a git repository.
2896 * Added more user documentation.  We now include many links to
2897   external git resources.
2899 * Added `git dag` to the available tools.
2900   `git dag` is a node-based DAG history browser.
2901   It doesn't do much yet, but it's been merged so that we can start
2902   building and improving upon it.
2904 Fixes
2905 -----
2906 * Fixed a missing ``import`` when showing `right-click` actions
2907   for unmerged files in the `Repository Status` tool.
2909 * ``git update-index --refresh`` is no longer run every time
2910   ``git cola version`` is run.
2912 * Don't try to watch non-existent directories when using `inotify`.
2914 * Use ``git rev-parse --symbolic-full-name`` plumbing to find
2915   the name of the current branch.
2917 Packaging
2918 ---------
2919 * The ``Makefile`` will now conditionally include a ``config.mak``
2920   file located at the root of the project.  This allows for user
2921   customizations such as changes to the `prefix` variable
2922   to be stored in a file so that custom settings do not need to
2923   be specified every time on the command-line.
2925 * The build scripts no longer require a ``.git`` directory to
2926   generate the ``builtin_version.py`` module.  The release tarballs
2927   now include a ``version`` file at the root of the project which
2928   is used in lieu of having the git repository available.
2929   This allows for ``make clean && make`` to function outside of
2930   a git repository.
2932 * Added maintainer's ``make dist`` target to the ``Makefile``.
2934 * The built-in `simplejson` and `jsonpickle` libraries can be
2935   excluded from ``make install`` by specifying the ``standalone=true``
2936   `make` variable.  For example, ``make standalone=true install``.
2937   This corresponds to the ``--standalone`` option to ``setup.py``.
2940 .. _v1.4.1.1:
2942 git-cola v1.4.1.1
2943 =================
2944 Usability, bells and whistles
2945 -----------------------------
2946 * We now use patience diff by default when it is available via
2947   `git diff --patience`.
2949 * Allow closing the `cola classic` tool with `Ctrl+W`.
2951 Fixes
2952 -----
2953 * Fixed an unbound variable error in the `push` dialog.
2955 Packaging
2956 ---------
2957 * Don't include `simplejson` in MANIFEST.in.
2959 * Update desktop entry to read `Cola Git GUI`.
2962 .. _v1.4.1:
2964 git-cola v1.4.1
2965 ===============
2966 This feature release adds two new features directly from
2967 `git cola`'s github issues backlog.  On the developer
2968 front, further work was done towards modularizing the code base.
2970 Usability, bells and whistles
2971 -----------------------------
2972 * Dragging and dropping patches invokes `git am`
2973   (`#3 <https://github.com/git-cola/git-cola/issues/3>`_)
2975 * A dialog to allow opening or cloning a repository
2976   is presented when `git cola` is launched outside of a git repository.
2977   (`#22 <https://github.com/git-cola/git-cola/issues/22>`_)
2979 * Warn when `push` is used to create a new branch
2980   (`#35 <https://github.com/git-cola/git-cola/issues/35>`_)
2982 * Optimized startup time by removing several calls to `git`.
2985 Portability
2986 -----------
2987 * `git cola` is once again compatible with PyQt 4.3.x.
2989 Developer
2990 ---------
2991 * `cola.gitcmds` was added to factor out git command-line utilities
2993 * `cola.gitcfg` was added for interacting with `git config`
2995 * `cola.models.browser` was added to factor out repobrowser data
2997 * Added more tests
3000 .. _v1.4.0.5:
3002 git-cola v1.4.0.5
3003 =================
3004 Fixes
3005 -----
3006 * Fix launching external applications on Windows
3008 * Ensure that the `amend` checkbox is unchecked when switching modes
3010 * Update the status tree when amending commits
3013 .. _v1.4.0.4:
3015 git-cola v1.4.0.4
3016 =================
3017 Packaging
3018 ---------
3019 * Fix Lintian warnings
3022 .. _v1.4.0.3:
3024 git-cola v1.4.0.3
3025 =================
3026 Fixes
3027 -----
3028 * Fix X11 warnings on application startup
3031 .. _v1.4.0.2:
3033 git-cola v1.4.0.2
3034 =================
3035 Fixes
3036 -----
3037 * Added missing 'Exit Diff Mode' button for 'Diff Expression' mode
3038   (`#31 <https://github.com/git-cola/git-cola/issues/31>`_)
3040 * Fix a bug when initializing fonts on Windows
3041   (`#32 <https://github.com/git-cola/git-cola/issues/32>`_)
3044 .. _v1.4.0.1:
3046 git-cola v1.4.0.1
3047 =================
3048 Fixes
3049 -----
3050 * Keep entries in sorted order in the `cola classic` tool
3052 * Fix staging untracked files
3053   (`#27 <https://github.com/git-cola/git-cola/issues/27>`_)
3055 * Fix the `show` command in the Stash dialog
3056   (`#29 <https://github.com/git-cola/git-cola/issues/29>`_)
3058 * Fix a typo when loading merge commit messages
3059   (`#30 <https://github.com/git-cola/git-cola/issues/30>`_)
3062 .. _v1.4.0:
3064 git-cola v1.4.0
3065 ===============
3066 This release focuses on a redesign of the git-cola user interface,
3067 a tags interface, and better integration of the `cola classic` tool.
3068 A flexible interface based on configurable docks is used to manage the
3069 various cola widgets.
3071 Usability, bells and whistles
3072 -----------------------------
3073 * New GUI is flexible and user-configurable
3075 * Individual widgets can be detached and rearranged arbitrarily
3077 * Add an interface for creating tags
3079 * Provide a fallback `SSH_ASKPASS` implementation to prompt for
3080   SSH passwords on fetch/push/pull
3082 * The commit message editor displays the current row/column and
3083   warns when lines get too long
3085 * The `cola classic` tool displays upstream changes
3087 * `git cola --classic` launches `cola classic` in standalone mode
3089 * Provide more information in log messages
3091 Fixes
3092 -----
3093 * Inherit the window manager's font settings
3095 * Miscellaneous PyQt4 bug fixes and workarounds
3097 Developer
3098 ---------
3099 * Removed all usage of Qt Designer `.ui` files
3101 * Simpler model/view architecture
3103 * Selection is now shared across tools
3105 * Centralized notifications are used to keep views in sync
3107 * The `cola.git` command class was made thread-safe
3109 * Less coupling between model and view actions
3111 * The status view was rewritten to use the MVC architecture
3113 * Added more documentation and tests
3116 .. _v1.3.9:
3118 git-cola v1.3.9
3119 ===============
3120 Usability, bells and whistles
3121 -----------------------------
3122 * Added a `cola classic` tool for browsing the entire repository
3124 * Handle diff expressions with spaces
3126 * Handle renamed files
3128 Portability
3129 -----------
3130 * Handle carat `^` characters in diff expressions on Windows
3132 * Worked around a PyQt 4.5/4.6 QThreadPool bug
3134 Documentation
3135 -------------
3136 * Added a keyboard shortcuts reference page
3138 * Added developer API documentation
3140 Fixes
3141 -----
3142 * Fix the diff expression used when reviewing branches
3144 * Fix a bug when pushing branches
3146 * Fix X11 warnings at startup
3148 * Fix more interrupted system calls on Mac OS X
3151 .. _v1.3.8:
3153 git-cola v1.3.8
3154 ===============
3155 Usability, bells and whistles
3156 -----------------------------
3157 * Fresh and tasty SVG logos
3159 * Added `Branch Review` mode for reviewing topic branches
3161 * Added diff modes for diffing between tags, branches,
3162   or arbitrary `git diff` expressions
3164 * The push dialog selects the current branch by default.
3165   This is in preparation for `git 1.7.0` where unconfigured `git push`
3166   will refuse to push when run without specifying the remote name
3167   and branch.  See the `git` release notes for more information
3169 * Support `open` and `clone` commands on Windows
3171 * Allow saving cola UI layouts
3173 * Re-enabled `double-click-to-stage` for unmerged entries.
3174   Disabling it for unmerged items was inconsistent, though safer.
3176 * Show diffs when navigating the status tree with the keyboard
3178 Packaging
3179 ---------
3180 * Worked around `pyuic4` bugs in the `setup.py` build script
3182 * Added Mac OSX application bundles to the download page
3185 .. _v1.3.7:
3187 git-cola v1.3.7
3188 ===============
3189 Subsystems
3190 ----------
3191 * `git difftool` became an official git command in `git 1.6.3`.
3193 * `git difftool` learned `--no-prompt` / `-y` and a corresponding
3194   `difftool.prompt` configuration variable
3196 Usability, bells and whistles
3197 -----------------------------
3198 * Warn when `non-fast-forward` is used with fetch, push or pull
3200 * Allow `Ctrl+C` to exit cola when run from the command line
3202 Fixes
3203 -----
3204 * Support Unicode font names
3206 * Handle interrupted system calls
3208 Developer
3209 ---------
3210 * `PEP-8`-ified more of the cola code base
3212 * Added more tests
3214 Packaging
3215 ---------
3216 * All resources are now installed into `$prefix/share/git-cola`.
3217   Closed Debian bug #519972
3219   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519972
3222 .. _v1.3.6:
3224 git-cola v1.3.6
3225 ===============
3226 Subsystems
3227 ----------
3228 * Added support for Kompare in `git difftool`
3230 * Added a separate configuration namespace for `git difftool`
3232 * Added the `diff.tool` configuration variable to define the default diff tool
3234 Usability, bells and whistles
3235 -----------------------------
3236 * The stash dialog allows passing the `--keep-index` option to `git stash`
3238 * Amending a published commit warns at commit time
3240 * Simplified the file-across-revisions comparison dialog
3242 * `origin` is selected by default in fetch/push/pull
3244 * Removed the search field from the log widget
3246 * The log window moved into a drawer widget at the bottom of the UI
3248 * Log window display can be configured with
3249   `cola.showoutput` = `{never, always, errors}`.  `errors` is the default.
3251 * `NOTE` -- `cola.showoutput` was removed with the GUI rewrite in 1.4.0.
3253 Developer
3254 ---------
3255 * Improved nose unittest usage
3257 Packaging
3258 ---------
3259 * Added a Windows/msysGit installer
3261 * Included private versions of `simplejson` and `jsonpickle`
3262   for ease of installation and development