core: decode now returns DecodedStr with original string encoding
[git-cola.git] / share / doc / git-cola / relnotes.rst
blobd004d0e59b144116795629f7827222ee0c1669dc
1 ========
2 Releases
3 ========
5 Latest Release
6 ==============
8 :ref:`v2.11 <v2.11>` 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.0:
19 git-cola v3.0 (beta)
20 ====================
22 Usability, bells and whistles
23 -----------------------------
24 * Updated Simplified Chinese translation.
26   https://github.com/git-cola/git-cola/pull/726
28 * Updated Ukranian translation.
30   https://github.com/git-cola/git-cola/pull/723
32 * New Czech translation.
34   https://github.com/git-cola/git-cola/pull/736
36   https://github.com/git-cola/git-cola/pull/737
38   https://github.com/git-cola/git-cola/pull/740
40 * The "name" field in the "Create Tag" dialog now includes autocompletion,
41   which makes it easy to see which tags currently exist.
43 * `git cola` now has configurable toolbars.  Use the `View -> Add toolbar`
44   menu item to add a toolbar.
46 * Setting `cola.expandtab` to `true` will now expand tabs into spaces
47   in the commit message editor.  The number of spaces to insert is determined
48   by consulting `cola.tabwidth`, which defaults to `8`.
50 * The "Copy SHA-1" hotkey is now `Alt + Ctrl + C`, to avoid clobbering the
51   ability to copy text from the DAG window.
53   https://github.com/git-cola/git-cola/pull/705
55 * The "Prepare Commit Message" action can now be invoked via the
56   `Ctrl+Shift+Return` shortcut.
58   https://github.com/git-cola/git-cola/pull/707
60 * The `Branches` pane now has a filter field that highlights branches whose
61   names match the string entered into its text field.
63   https://github.com/git-cola/git-cola/pull/713
65 * Actions that are triggered in response to button presses were being
66   triggered when the button was pressed, rather than when it was released,
67   which was a usability flaw.  All buttons now respond when clicked
68   rather than when pressed.
70   https://github.com/git-cola/git-cola/pull/715
72 * The DAG window will now only refresh when object IDs change.
73   Previously, the DAG would redraw itself in response to inotify events,
74   such as filesystem operations, which was disruptive when inspecting a large
75   diff in its diff viewer.  The DAG will now only redraw when the object IDs
76   corresponding to its query input changes.  Furthermore, when redrawing, the
77   scrollbar positions are retained to minimize disruption to the viewport
78   contents.
80   https://github.com/git-cola/git-cola/issues/620
82   https://github.com/git-cola/git-cola/issues/724
84 * The "About" dialog now includes the SHA-1 where Git Cola was built.
86   https://github.com/git-cola/git-cola/issues/530
88 * The "Status" widget now has "Copy Leading Path to Clipboard" and
89   "Copy Basename to Clipboard" actions.
91   https://github.com/git-cola/git-cola/issues/435
93   https://github.com/git-cola/git-cola/issues/436
95 * The "Status" widget now supports custom "Copy ... to Clipboard" actions.
97   https://github.com/git-cola/git-cola/issues/437
99 * The main menu now has an "Edit" menu.
101   https://github.com/git-cola/git-cola/issues/725
103 * `git dag` learned to checkout commits into a detached HEAD state.
105   https://github.com/git-cola/git-cola/issues/698
107 * The `status` widget's context menus now omit actions selection-dependent
108   actions when no file is selected.
110   https://github.com/git-cola/git-cola/pull/731
112 Fixes
113 -----
114 * `git dag` now prevents nodes from overlapping in more situations.
116   https://github.com/git-cola/git-cola/pull/689
118 * Adding untracked Git submodule repo directories previously ran
119   `git add submodule/` but we now call `git add submodule` without
120   the trailing slash (`/`) to avoid staging files that belong to the
121   submodule (which is possibly a `git` bug).  By working around the
122   buggy behavior we allow users to recover by issuing the appropriate
123   `git submodule add` command to properly register the submodule.
125   https://github.com/git-cola/git-cola/pull/681
127 * We now avoid `git for-each-ref --sort=version:refname` on versions
128   of `git` older than `v2.7.0`.  Previously we only avoided it for
129   versions older than `v2.0.0`, which was a mistake.
131   https://github.com/git-cola/git-cola/pull/686
133 * The error message displayed when `git` is not installed has been fixed.
135   https://github.com/git-cola/git-cola/pull/686
137 * Adding new remotes was silently broken.
139   https://github.com/git-cola/git-cola/issues/684
141   https://github.com/git-cola/git-cola/pull/685
143 * The repo selection dialog had errors during startup when the
144   `cola.refreshonfocus` feature was enabled, as reported on Ubuntu 16.04.
146   https://github.com/git-cola/git-cola/issues/690
148 * Restored support for PyQt 4.6 (Centos 6.8)
150   https://github.com/git-cola/git-cola/issues/692
152 * Switching repositories now resets the "Amend Mode" and other settings
153   when switching.
155   https://github.com/git-cola/git-cola/issues/710
157 * Rebase now displays error more extensive error messages when rebasing fails
158   or stops.
160   https://github.com/git-cola/git-cola/issues/721
162 * `git cola` learned to stage broken symlinks.
164   https://github.com/git-cola/git-cola/issues/727
166 * The "View History" feature in the `Browser` tool was fixed, and now
167   disambiguates between refs and paths.
169   https://github.com/git-cola/git-cola/issues/732
171 * The diff editor now has better support for files with CRLF `\r\n`
172   line endings.
174   https://github.com/git-cola/git-cola/issues/730
176 * `cola.inotify` in a repo-local config is now honored
177   when `git cola` is launched from a desktop entry (`git cola --prompt`).
179   https://github.com/git-cola/git-cola/issues/695
181 .. _v2.11:
183 git-cola v2.11
184 ==============
186 Usability, bells and whistles
187 -----------------------------
188 * New Ukranian translation.
190   https://github.com/git-cola/git-cola/pull/670
192   https://github.com/git-cola/git-cola/pull/672
194 * New and improved French translations.
196 * The new `Branches` widget makes it easier to checkout, merge, push,
197   and pull branches from a single interface.
199 * `git cola` now includes a dark icon theme.  The dark icon theme can be
200   activated either by setting the `GIT_COLA_ICON_THEME` environment variable
201   to `dark`, by configuring `cola.icontheme` to `dark`, or by specifying
202   `--icon-theme=dark` on the command line.
204   https://github.com/git-cola/git-cola/pull/638
206 * Autocompletion was added to the `Fetch`, `Push`, and `Pull` dialogs.
208 * The commit message editor now remembers the "Spellcheck" setting
209   after exiting.
211   https://github.com/git-cola/git-cola/pull/645
213 * `git dag` now uses an improved algorithm for laying out the graph,
214   which avoids collisions under certain graph configurations, and
215   avoids overlapping tag with commits.
217   https://github.com/git-cola/git-cola/pull/648
219   https://github.com/git-cola/git-cola/pull/651
221   https://github.com/git-cola/git-cola/pull/654
223   https://github.com/git-cola/git-cola/pull/656
225   https://github.com/git-cola/git-cola/pull/659
227 * `git dag` now remembers its column sizes across sessions.
229   https://github.com/git-cola/git-cola/issues/674
231 * `Grep` now shows a preview of the selected file's content in a split window
232   below the grep results.
234 * `Grep` now includes line numbers in the preview pane's output.
236 * `Edit Remotes` now remembers its window settings after exiting.
238 * `Diff` now has an option to display line numbers in the editor.
240   https://github.com/git-cola/git-cola/issues/136
242 * `Amend Last Commit` can now be triggered via the `Commit` menu in addition
243   to the commit message editor's options.
245   https://github.com/git-cola/git-cola/issues/640
247 * The `File Browser` tool was made much faster and can now operate on
248   much larger repositories.
250   https://github.com/git-cola/git-cola/issues/499
252 * A new "turbo" mode was added that allows you to opt-out of operations
253   that can slow `git cola` on large repositories.  The turbo mode is
254   enabled by configuring `git config cola.turbo true`.  Turbo mode
255   disables the background loading of Git commit messages and other
256   details in the `File Browser` widget.
258 * A new GitIgnore dialog allows adding custom gitignore patterns.
260   https://github.com/git-cola/git-cola/pull/653
262 * The spellchecker in `git cola` can now use an additional dictionary
263   by configuring `cola.dictionary` to the path to a file containing
264   a newline-separated list of words.
266   https://github.com/git-cola/git-cola/issues/663
268 * The stash, export patches, diff, and gitignore dialogs now remember
269   their window sizes.
271 * A new `git cola recent` sub-command was added for finding recently
272   edited files.
274 * The `Fetch` dialog now allows pruning remote branches.
276   https://github.com/git-cola/git-cola/issues/639
278   https://github.com/git-cola/git-cola/pull/680
280 Fixes
281 =====
282 * `git cola`'s spellchecker now supports the new `dict-common` filesystem
283   layout, and prefers the `/usr/share/dict/cracklib-small` file over the
284   `/usr/share/dict/words` provided on older distributions.
285   This makes the spellchecker compatible with Arch, which does not provide
286   a `words` symlink like Debian.
288   https://github.com/git-cola/git-cola/issues/663
290 * Properly handle the case where an existing file is untracked using
291   the File Browser.
293 * Fix a quirk where the "Create Branch" dialog sometimes required clicking
294   twice on the radio buttons.
296   https://github.com/git-cola/git-cola/pull/662
298 * Fixed a focus issue to ensure that "Push", "Fetch", and "Pull" can
299   be executed with the press of a single enter key after being shown.
301   https://github.com/git-cola/git-cola/issues/661
303 * Committing is now allowed in when resolving a merge results in no
304   changes.  This state was previously prevented by the commit message editor,
305   which prevented users from resolving merges that result in no changes.
307   https://github.com/git-cola/git-cola/pull/679
309 * The filesystem monitor would sometimes emit backtraces when directories
310   are modified.  This has been fixed.
312   https://bugzilla.redhat.com/show_bug.cgi?id=1438522
314 * Absolute paths are now returned when querying for `.git`-relative paths
315   from within a submodule, which uses `.git`-files.
316   This fixes launching `git cola` from within a subdirectory of a submodule.
318   https://github.com/git-cola/git-cola/pull/675
320 .. _v2.10:
322 git-cola v2.10
323 ==============
325 Usability, bells and whistles
326 -----------------------------
327 * `git cola` can now invoke the `.git/hooks/cola-prepare-commit-msg`
328   hook to update the commit message.  This hook takes the same parameters
329   as Git's `prepare-commit-message` hook.  The default path to this hook
330   can be overridden by setting the `cola.prepareCommitMessageHook`
331   configuration variable.
333   http://git-cola.readthedocs.io/en/latest/git-cola.html#prepare-commit-message
335 * `git cola diff` (and the corresponding `Diff` menu actions) can now
336   launch difftool with the standard `Ctrl+D` hotkey.  The `Ctrl+E` hotkey was
337   also added for launching an editor.
339 * Traditional Chinese (Taiwan) translation updates.
341 Fixes
342 -----
343 * `git cola` now works when installed in non-ascii, utf8-encoded paths.
345   https://github.com/git-cola/git-cola/issues/629
347 * Styling issues that caused black backgrounds in various widgets when using
348   PyQ5 on Mac OS X have been fixed.
350   https://github.com/git-cola/git-cola/issues/624
352 * The "Open Recent" menu action was broken and has been fixed.
354   https://github.com/git-cola/git-cola/issues/634
356 * Exiting `git cola` with a maximized main window would hang when reopened
357   on Linux.
359   https://github.com/git-cola/git-cola/issues/641
361 Packaging
362 ---------
363 * `appdata.xml` files are now provided at
364   `share/appdata/git-cola.xml` and `share/appdata/git-dag.xml`
365   for use by the Linux software gallery.
367   https://people.freedesktop.org/~hughsient/appdata/
369   https://github.com/git-cola/git-cola/pull/627
371 .. _v2.9.1:
373 git-cola v2.9.1
374 ===============
376 Fixes
377 -----
378 * The "Open Recent" menu was updated to new bookmarks format.
380   https://github.com/git-cola/git-cola/issues/628
382 .. _v2.9:
384 git-cola v2.9
385 =============
387 Usability, bells and whistles
388 -----------------------------
389 * New Polish translation thanks to Łukasz Wojniłowicz
391   https://github.com/git-cola/git-cola/pull/598
393 * The `Bypass Commit Hooks` feature now disables itself automatically
394   when a new commit is created.  The new behavior turns the option into a
395   single-use flag, which helps prevent users from accidentally leaving it
396   active longer than intended.
398   https://github.com/git-cola/git-cola/pull/595
400 * `git dag` learned to launch an external diff viewer on selected commits.
401   The standard `Ctrl+D` shortcut can be used to view diffs.
403   https://github.com/git-cola/git-cola/issues/468
405 * `git dag` learned to launch directory diffs via `git difftool --dir-diff`.
406   The `Ctrl+Shift+D` shortcut launches difftool in directory-diff mode.
408   https://github.com/git-cola/git-cola/issues/468
410 * Items in the "Favorites" list can now be renamed, which makes it
411   easier to differentiate between several checkouts of the same repository.
413   https://github.com/git-cola/git-cola/issues/599
415   https://github.com/git-cola/git-cola/pull/601
417 * The startup screen now includes a logo and `git cola` version information.
419   https://github.com/git-cola/git-cola/issues/526
421 * The `About` page was revamped to contain multiple tabs.  A new tab was added
422   that provides details about `git cola`''s dependencies.  New tabs were also
423   added for giving credit to `git cola`'s authors and translators.
425 * The `About` page can now be accessed via `git cola about`.
427 * The "Fast-forward only" and "No fast-forward" options supported by
428   `git pull` are now accessible via `git cola pull`.
430 * Doing a forced push no longer requires selecting the remote branch.
432   https://github.com/git-cola/git-cola/pull/618
434 * `git cola push` now has an option to suppress the prompt that is shown
435   when pushing would create new remote branches.
437   https://github.com/git-cola/git-cola/issues/605
439 * `git dag` now shows commit messages in a more readable color.
441   https://github.com/git-cola/git-cola/issues/574
443 * `git cola browse` and the `status` widget learned to launch the OS-specified
444   default action for a file.  When used on directories via `git cola browse`,
445   or when "Open Parent Directory" is used on files, the OS-specified
446   file browser will typically be used.
448 * `git cola browse` and the `status` widget learned to launch terminals.
450 Fixes
451 -----
452 * `git cola browse` was not updating when expanding items.
454   https://github.com/git-cola/git-cola/issues/588
456 * Typofixes in comments, naming, and strings have been applied.
458   https://github.com/git-cola/git-cola/pull/593
460 * The inotify and win32 filesystem monitoring no longer refreshes
461   when updates are made to ignored files.
463   https://github.com/git-cola/git-cola/issues/517
465   https://github.com/git-cola/git-cola/issues/516
467 * The `Refresh` button on the actions panel no longer raises an
468   exception when using PyQt5.
470   https://github.com/git-cola/git-cola/issues/604
472 * Fixed a typo in the inotify backend that is triggered when files are removed.
474   https://github.com/git-cola/git-cola/issues/607
476 * Fixed a typo when recovering from a failed attempt to open a repository.
478   https://github.com/git-cola/git-cola/issues/606
480 * `git dag` now properly updates itself when launched from the menubar.
482   https://github.com/git-cola/git-cola/pull/613
484 * If git-cola is invoked on Windows using `start pythonw git-cola`,
485   a console window will briefly flash on the screen each time
486   `git cola` invokes `git`.  The console window is now suppressed.
488 * We now avoid some problematic Popen flags on Windows which were
489   breaking the `git rebase` feature on Windows.
491 * The `Save` button in `git dag`'s "Grab File..." feature now properly
492   prompts for a filename when saving files.
494   https://github.com/git-cola/git-cola/pull/617
496 Development
497 -----------
498 * The `qtpy` symlink in the source tree has been removed to allow for easier
499   development on Windows.
501   https://github.com/git-cola/git-cola/issues/626
503 .. _v2.8:
505 git-cola v2.8
506 =============
508 Usability, bells and whistles
509 -----------------------------
510 * `git cola push` learned to configure upstream branches.
512   https://github.com/git-cola/git-cola/issues/563
514 Fixes
515 -----
516 * The diffstat view is now properly updated when notifications are
517   received via inotify filesystem monitoring.
519   https://github.com/git-cola/git-cola/issues/577
521 * Python3 with PyQt5 had a bug that prevented `git cola` from starting.
523   https://github.com/git-cola/git-cola/pull/589
525 .. _v2.7:
527 git-cola v2.7
528 =============
530 Fixes
531 -----
533 * When repositories stored in non-ASCII, UTF-8-encoded filesystem paths
534   were operated upon with `LC_ALL=C` set in the environment, unicode errors
535   would occur when using `python2`.  `git cola` was made more robust and will
536   now operate correctly within this environment.
538   https://github.com/git-cola/git-cola/issues/581
540 * Support for the `GIT_WORK_TREE` environment variable was fixed.
542   https://github.com/git-cola/git-cola/pull/582
544 Development
545 -----------
547 * The `unittest.mock` module is now used instead of the original `mock` module
548   when running the `git cola` test suite using Python3.
550   https://github.com/git-cola/git-cola/issues/569
552 Packaging
553 ---------
555 * `git cola` is now compatible with *PyQt5*, *PyQt4*, and *Pyside*.
556   `git cola` previously supported *PyQt4* only, but will now use whichever
557   library is available.  Users are not required to upgrade at this time,
558   but *PyQt5* support can be enabled anytime by making its python
559   modules available.
561   https://github.com/git-cola/git-cola/issues/232
563   *NOTE*: We do not yet recommend using *PyQt5* because there are known
564   exit-on-segfault bugs in *Qt5* that have not yet been addressed.
565   `git cola` is sensitive to this bug and is known to crash on exit
566   when using `git dag` or the interactive rebase feature on *PyQt5*.
568   https://bugreports.qt.io/browse/QTBUG-52988
570   *PyQt4* is stable and there are no known issues when using it so
571   we recommend using it until the Qt5 bugs have been resolved.
573 * `git cola` now depends on *QtPy* and includes a bundled copy of the
574   `qtpy` library.  If you are packaging `git cola` and would prefer to use
575   `qtpy` from your distribution instead of the built-in version then use
576   `make NO_VENDOR_LIBS=1` when building `git cola`.  This will prevent
577   vendored libraries from being installed.
579 .. _v2.6:
581 git-cola v2.6
582 =============
584 Usability, bells and whistles
585 -----------------------------
587 * A new "Reset" sub-menu provides access to running "git reset --mixed"
588   when resetting branch heads and "git reset  --merge" when resetting
589   worktrees.
591   https://github.com/git-cola/git-cola/issues/542
593 * `git cola` now supports linked worktrees, i.e. worktrees created by
594   `git worktree`.
596   https://github.com/git-cola/git-cola/issues/554
598 Fixes
599 -----
601 * Diff highlighting is now robust to the user having
602   diff.supressBlankEmpty=true in their git config.
604   https://github.com/git-cola/git-cola/issues/541
606 * The filesystem monitor now properly handles repositories that use
607   `.git`-files, e.g. when using submodules.
609   https://github.com/git-cola/git-cola/issues/545
611   https://github.com/git-cola/git-cola/pulls/546
613 * Per-repository git configuration is now properly detected when launching
614   `git cola` from an application launcher.
616   https://github.com/git-cola/git-cola/issues/548
618 * `git cola` now cleans up after itself immediately to avoid leaving behind
619   empty `/tmp/git-cola-XXXXXX` directories when the user uses `Ctrl+C`
620   to quit the app.
622   https://github.com/git-cola/git-cola/issues/566
624 Packaging
625 ---------
627 * It is now possible to install `git cola` to and from utf8-encoded filesystem
628   paths.  Previously, Python's stdlib would throw an encoding error during
629   installation.  We workaround the stdlib by forcing python2 to use utf-8,
630   thus fixing assumptions in the stdlib library code.
632   https://github.com/git-cola/git-cola/issues/551
634 .. _v2.5:
636 git-cola v2.5
637 =============
639 Usability, bells and whistles
640 -----------------------------
642 * The icon for untracked files was adjusted to better differentiate
643   between files and the "Untracked" header.
645   https://github.com/git-cola/git-cola/issues/509
647 * Ctrl+O was added as a hotkey for opening repositories.
649   https://github.com/git-cola/git-cola/pull/507
651 * `git dag` now uses consistent edge colors across updates.
653   https://github.com/git-cola/git-cola/issues/512
655 * `git cola`'s Bookmarks widget can now be used to set a "Default Repository".
656   Under the hood, we set the `cola.defaultrepo` configuration variable.
657   The default repository is used whenever `git cola` is launched outside of
658   a Git repository.  When unset, or when set to a bogus value, `git cola`
659   will prompt for a repository, as it previously did.
661   https://github.com/git-cola/git-cola/issues/513
663 * `git cola`'s Russian and Spanish translations were improved
664   thanks to Vaiz and Zeioth.
666   https://github.com/git-cola/git-cola/pull/514
668   https://github.com/git-cola/git-cola/pull/515
670   https://github.com/git-cola/git-cola/pull/523
672 * `git cola` was translated to Turkish thanks to Barış ÇELİK.
674   https://github.com/git-cola/git-cola/pull/520
676 * The status view now supports launching `git gui blame`.  It can be
677   configured to use a different command by setting `cola.blameviewer`.
679   https://github.com/git-cola/git-cola/pull/521
681 * `git dag` now allows selecting non-contiguous ranges in the log widget.
683   https://github.com/git-cola/git-cola/issues/468
685 * Any font can now be chosen for the diff editor, not just monospace fonts.
687   https://github.com/git-cola/git-cola/issues/525
689 Fixes
690 -----
692 * `xfce4-terminal` and `gnome-terminal` are now supported when launching
693   `git mergetool` to resolve merges.  These terminals require that the command
694   to execute is shell-quoted and passed as a single string argument to `-e`
695   rather than as additional command line arguments.
697   https://github.com/git-cola/git-cola/issues/524
699 * Fixed a unicode problem when formatting the error message that is shown
700   when `gitk` is not installed.  We now handle unicode data in tracebacks
701   generated by python itself.
703   https://github.com/git-cola/git-cola/issues/528
705 * The `New repository` feature was fixed.
707   https://github.com/git-cola/git-cola/pull/533
709 * We now use omit the extended description when creating "fixup!" commits,
710   for consistency with the Git CLI.  We now include only the one-line summary
711   in the final commit message.
713   https://github.com/git-cola/git-cola/issues/522
715 .. _v2.4:
717 git-cola v2.4
718 =============
720 Usability, bells and whistles
721 -----------------------------
723 * The user interface is now HiDPI-capable.  git-cola now uses SVG
724   icons, and its interface can be scaled by setting the `GIT_COLA_SCALE`
725   environment variable.
727 * `git dag` now supports the standard editor, difftool, and history hotkeys.
728   It is now possible to invoke these actions from file widget's context
729   menu and through the standard hotkeys.
731   https://github.com/git-cola/git-cola/pull/473
733 * The `Status` tool also learned about the history hotkey.
734   Additionally, the `Alt-{j,k}` aliases are also supported in the `Status`
735   tool for consistency with the other tools where the non-Alt hotkeys are not
736   available.
738   https://github.com/git-cola/git-cola/pull/488
740 * The `File Browser` tool now has better default column sizes,
741   and remembers its window size and placement.
743 * The `File Browser` now supports the refresh hotkey, and has better
744   behavior when refreshing.  The selection is now retained, and new and
745   removed files are found when refreshing.
747 * A new `git-cola-completion.bash` completion script is provided in the
748   `contrib/` directory.  It must be used alongside Git's completion script.
749   Source it from your `~/.bashrc` (or `~/.zshrc`, etc) after sourcing
750   the `git-completion.bash` script and you will have command-line completion
751   support for the `git cola` and `git dag` sub-commands.
753 * The "checkout" dialog now offers completion for remote branches and other
754   git refs.  This makes it easier to checkout remote branches in a detached
755   head state.  Additionally, the checkout dialog also offers completion for
756   remote branches that have not yet been checked out, which makes it easier to
757   create a local tracking branch by just completing for that potential name.
759   https://github.com/git-cola/git-cola/issues/390
761 * The "create branch" and "create tag" dialogs now save and restore their
762   window settings.
764 * The "status" widget can now be configured to use a bold font with a darker
765   background for the header items.
767   https://github.com/git-cola/git-cola/pull/506
769 * The "status" widget now remembers its horizontol scrollbar position across
770   updates.  This is helpful when working on projects with long paths.
772   https://github.com/git-cola/git-cola/issues/494
774 Fixes
775 -----
777 * When using *Git for Windows*, a `git` window would appear
778   when running *Windows 8*.  We now pass additional flags to
779   `subprocess.Popen` to prevent a `git` window from appearing.
781   https://github.com/git-cola/git-cola/issues/477
783   https://github.com/git-cola/git-cola/pull/486
785 * Launching difftool with `.PY` in `$PATHEXT` on Windows was fixed.
787   https://github.com/git-cola/git-cola/issues/492
789 * Creating a local branch tracking a remote branch that contains
790   slashes in its name is now properly handled.
792   https://github.com/git-cola/git-cola/issues/496
794 * The "Browse Other Branch" feature was broken by Python3, and is now fixed.
796   https://github.com/git-cola/git-cola/issues/501
798 * We now avoid `long` for better Python3 compatibility.
800   https://github.com/git-cola/git-cola/issues/502
802 * We now use Git's default merge message when merging branches.
804   https://github.com/git-cola/git-cola/issues/508
806 * Miscellaneous fixes
808   https://github.com/git-cola/git-cola/pull/485
810 Packaging
811 ---------
813 * git-cola's documentation no longer uses an intersphinx link mapping
814   to docs.python.org.  This fixes warnings when building rpms using koji,
815   where network access is prevented.
817   https://bugzilla.redhat.com/show_bug.cgi?id=1231812
819 .. _v2.3:
821 git-cola v2.3
822 =============
824 Usability, bells and whistles
825 -----------------------------
827 * The Interactive Rebase feature now works on Windows!
829   https://github.com/git-cola/git-cola/issues/463
831 * The `diff` editor now understands vim-style `hjkl` navigation hotkeys.
833   https://github.com/git-cola/git-cola/issues/476
835 * `Alt-{j,k}` navigation hotkeys were added to allow changing to the
836   next/previous file from the diff and commit editors.
838 * The `Rename branch` menu action is now disabled in empty repositories.
840   https://github.com/git-cola/git-cola/pull/475
842   https://github.com/git-cola/git-cola/issues/459
844 * `git cola` now checks unmerged files for conflict markers before
845   staging them.  This feature can be disabled in the preferences.
847   https://github.com/git-cola/git-cola/issues/464
849 * `git dag` now remembers which commits were selected when refreshing
850   so that it can restore the selection afterwards.
852   https://github.com/git-cola/git-cola/issues/480
854 * "Launch Editor", "Launch Difftool", "Stage/Unstage",
855   and "Move Up/Down" hotkeys now work when the commit message
856   editor has focus.
858   https://github.com/git-cola/git-cola/issues/453
860 * The diff editor now supports the `Ctrl+u` hotkey for reverting
861   diff hunks and selected lines.
863 * The `core.commentChar` Git configuration value is now honored.
864   Commit messages and rebase instruction sheets will now use
865   the configured character for comments.  This allows having
866   commit messages that start with `#` when `core.commentChar`
867   is configured to its non-default value.
869   https://github.com/git-cola/git-cola/issues/446
871 Fixes
872 -----
874 * Diff syntax highlighting was improved to handle more edge cases
875   and false positives.
877   https://github.com/git-cola/git-cola/pull/467
879 * Setting commands in the interactive rebase editor was fixed.
881   https://github.com/git-cola/git-cola/issues/472
883 * git-cola no longer clobbers the Ctrl+Backspace text editing shortcut
884   in the commit message editor.
886   https://github.com/git-cola/git-cola/issues/453
888 * The copy/paste clipboard now persists after `git cola` exits.
890   https://github.com/git-cola/git-cola/issues/484
892 .. _v2.2.1:
894 git-cola v2.2.1
895 ===============
897 Fixes
898 -----
899 * Fixed the "Sign off" feature in the commit message editor.
901 .. _v2.2:
903 git-cola v2.2
904 =============
906 Usability, bells and whistles
907 -----------------------------
908 * Double-click will now choose a commit in the "Select commit" dialog.
910 * `git cola` has a feature that reads `.git/MERGE_MSG` and friends for the
911   commit message when a merge is in-progress.  Upon refresh, `git cola` will
912   now detect when a merge has completed and reset the commit message back to
913   its previous state.  It is only reset if the editor contains a message
914   that was read from the file and has not been manually edited by the user.
916 * The commit message editor's context menu now has a "Clear..." action for
917   clearing the message across both the summary and description fields.
919 * Traditional Chinese (Taiwan) translation updates.
921 * The system theme's icons are now used wherever possible.
923   https://github.com/git-cola/git-cola/pull/458
925 Fixes
926 -----
927 * The stash viewer now uses ``git show --no-ext-diff`` to avoid running
928   user-configured diff tools.
930 * `git cola` now uses the `setsid()` system call to ensure that the
931   `GIT_ASKPASS` and `SSH_ASKPASS` helper programs are used when pushing
932   changes using `git`.  The askpass helpers will now be used even when
933   `git cola` is launched from a terminal.
935   The behavior without `setsid()` is that `git cola` can appear to hang while
936   pushing changes.  The hang happens when `git` prompts the user for a
937   password using the terminal, but the user never sees the prompt.  `setsid()`
938   detaches the terminal, which ensures that the askpass helpers are used.
940   https://github.com/git-cola/git-cola/issues/218
942   https://github.com/git-cola/git-cola/issues/262
944   https://github.com/git-cola/git-cola/issues/377
946 * `git dag`'s file list tool was updated to properly handle unicode paths.
948 * `gnome-terminal` is no longer used by default when `cola.terminal` is unset.
949   It is broken, as was detailed in #456.
951   https://github.com/git-cola/git-cola/issues/456
953 * The interactive rebase feature was not always setting `$GIT_EDITOR`
954   to the value of `gui.editor`, thus there could be instances where rebase
955   will seem to not stop, or hang, when performing "reword" actions.
957   We now set the `$GIT_EDITOR` environment variable when performing the
958   "Continue", "Skip", and "Edit Todo" rebase actions so that the correct
959   editor is used during the rebase.
961   https://github.com/git-cola/git-cola/issues/445
963 Packaging
964 ---------
965 * `git cola` moved from a 3-part version number to a simpler 2-part "vX.Y"
966   version number.  Most of our releases tend to contain new features.
968 .. _v2.1.2:
970 git-cola v2.1.2
971 ===============
973 Usability, bells and whistles
974 -----------------------------
975 * Updated zh_TW translations.
977 * `git cola rebase` now defaults to `@{upstream}`, and generally uses the same
978   CLI syntax as `git rebase`.
980 * The commit message editor now allows you to bypass commit hooks by selecting
981   the "Bypass Commit Hooks" option.  This is equivalent to passing the
982   `--no-verify` option to `git commit`.
984   https://github.com/git-cola/git-cola/issues/357
986 * We now prevent the "Delete Files" action from creating a dialog that does
987   not fit on screen.
989   https://github.com/git-cola/git-cola/issues/378
991 * `git xbase` learned to edit rebase instruction sheets that contain
992   `exec` commands.
994 * The diff colors are now configurable.  `cola.color.{text,add,remove,header}`
995   can now be set with 6-digit hexadecimal colors.
996   See the `git cola manual <https://git-cola.readthedocs.io/en/latest/git-cola.html#configuration-variables>_`
997   for more details.
999 * Improved hotkey documentation.
1001 Fixes
1002 -----
1003 * `git cola` will now allow starting an interactive rebase with a dirty
1004   worktree when `rebase.autostash` is set.
1006   https://github.com/git-cola/git-cola/issues/360
1008 .. _v2.1.1:
1010 git-cola v2.1.1
1011 ===============
1013 Usability, bells and whistles
1014 -----------------------------
1015 * A new "Find files" widget was added, and can be activated by
1016   using the `Ctrl+t` or `t` hotkeys.
1018 * A new `git cola find` sub-command was added for finding files.
1020 * `git cola` now remembers the text cursor's position when staging
1021   interactively with the keyboard.  This makes it easier to use the keyboard
1022   arrows to select and stage lines.
1024 * The completion widgets will now select the top completion item
1025   when `Enter` or `Return` are pressed.
1027 * You can now refresh using `F5` in addition to the existing `Ctrl+R` hotkey.
1029 Fixes
1030 -----
1031 * `git cola` now passes `--no-abbrev-commit` to `git log` to override
1032   having `log.abbrevCommit = true` set in `.gitconfig`.
1034 .. _v2.1.0:
1036 git-cola v2.1.0
1037 ===============
1038 Usability, bells and whistles
1039 -----------------------------
1040 * `git dag` now forwards all unknown arguments along to `git log`.
1042   https://github.com/git-cola/git-cola/issues/389
1044 * Line-by-line interactive staging was made more robust.
1046   https://github.com/git-cola/git-cola/pull/399
1048 * "Bookmarks" was renamed to "Favorites".
1050   https://github.com/git-cola/git-cola/issues/392
1052 * Untracked files are now displayed using a unique icon.
1054   https://github.com/git-cola/git-cola/pull/388
1056 Fixes
1057 -----
1058 * `git dag` was triggering a traceback on Fedora when parsing Git logs.
1060   https://bugzilla.redhat.com/show_bug.cgi?id=1181686
1062 * inotify expects unicode paths on Python3.
1064   https://github.com/git-cola/git-cola/pull/393
1066 * Untracked files are now assumed to be utf-8 encoded.
1068   https://github.com/git-cola/git-cola/issues/401
1070 .. _v2.0.8:
1072 git-cola v2.0.8
1073 ===============
1074 Usability, bells and whistles
1075 -----------------------------
1076 * `git cola` can now create GPG-signed commits and merges.
1078   https://github.com/git-cola/git-cola/issues/149
1080   See the documentation for details about setting up a GPG agent.
1082 * The status widget learned to copy relative paths when `Ctrl+x` is pressed.
1084   https://github.com/git-cola/git-cola/issues/358
1086 * Custom GUI actions can now define their own keyboard shortcuts by
1087   setting `guitool.$name.shortcut` to a string understood by Qt's
1088   `QAction::setShortcut()` API, e.g. `Alt+X`.
1090   See http://qt-project.org/doc/qt-4.8/qkeysequence.html#QKeySequence-2
1091   for more details about the supported values.
1093 * `git cola` learned to rename branches.
1095   https://github.com/git-cola/git-cola/pull/364
1097   https://github.com/git-cola/git-cola/issues/278
1099 * `git dag` now has a "Show history" context menu which can be used to filter
1100   history using the selected paths.
1102 Fixes
1103 -----
1104 * `sphinxtogithub.py` was fixed for Python3.
1106   https://github.com/git-cola/git-cola/pull/353
1108 * The commit that changed how we read remotes from `git remote`
1109   to parsing `git config` was reverted since it created problems
1110   for some users.
1112 * Fixed a crash when using the `rebase edit` feature.
1114   https://github.com/git-cola/git-cola/issues/351
1116 * Better drag-and-drop behavior when dropping into gnome-terminal.
1118   https://github.com/git-cola/git-cola/issues/373
1120 Packaging
1121 ---------
1122 * The `git-cola-folder-handler.desktop` file handler was fixed
1123   to pass validation by `desktop-file-validate`.
1125   https://github.com/git-cola/git-cola/issues/356
1127 * The `git.svg` icon was renamed to `git-cola.svg`, and `git cola` was taught
1128   to prefer icons from the desktop theme when available.
1130 .. _v2.0.7:
1132 git-cola v2.0.7
1133 ===============
1134 Usability, bells and whistles
1135 -----------------------------
1136 * New hotkey: `Ctrl+Shift+M` merges branches.
1138 * New hotkey: `Ctrl+R` refreshes the DAG viewer.
1140   https://github.com/git-cola/git-cola/issues/347
1142 Fixes
1143 -----
1144 * We now use `git config` to parse the list of remotes
1145   instead of parsing the output of `git remote`, which
1146   is a Git porcelain and should not be used by scripts.
1148 * Avoid "C++ object has been deleted" errors from PyQt4.
1150   https://github.com/git-cola/git-cola/issues/346
1152 Packaging
1153 ---------
1154 * The `make install` target now uses `install` instead of `cp`.
1156 .. _v2.0.6:
1158 git-cola v2.0.6
1159 ===============
1160 Usability, bells and whistles
1161 -----------------------------
1162 * Updated Brazillian Portuguese translation.
1164 * The status and browse widgets now allow drag-and-drop into
1165   external applications.
1167   https://github.com/git-cola/git-cola/issues/335
1169 * We now show a progress bar when cloning repositories.
1171   https://github.com/git-cola/git-cola/issues/312
1173 * The bookmarks widget was simplified to not need a
1174   separate dialog.
1176   https://github.com/git-cola/git-cola/issues/289
1178 * Updated Traditional Chinese translation.
1180 * We now display a warning when trying to rebase with uncommitted changes.
1182   https://github.com/git-cola/git-cola/issues/338
1184 * The status widget learned to filter paths.
1185   `Ctrl+Shift+S` toggles the filter widget.
1187   https://github.com/git-cola/git-cola/issues/337
1189   https://github.com/git-cola/git-cola/pull/339
1191 * The status widget learned to move files to the trash
1192   when the `send2trash <https://github.com/hsoft/send2trash>`_
1193   module is installed.
1195   https://github.com/git-cola/git-cola/issues/341
1197 * "Recent repositories" is now a dedicated widget.
1199   https://github.com/git-cola/git-cola/issues/342
1201 * New Spanish translation thanks to Pilar Molina Lopez.
1203   https://github.com/git-cola/git-cola/pull/344
1205 Fixes
1206 -----
1207 * Newly added remotes are now properly seen by the fetch/push/pull dialogs.
1209   https://github.com/git-cola/git-cola/issues/343
1211 .. _v2.0.5:
1213 git-cola v2.0.5
1214 ===============
1215 Usability, bells and whistles
1216 -----------------------------
1217 * New Brazillian Portuguese translation thanks to Vitor Lobo.
1219 * New Indonesian translation thanks to Samsul Ma'arif.
1221 * Updated Simplified Chinese translation thanks to Zhang Han.
1223 * `Ctrl+Backspace` is now a hotkey for "delete untracked files" in
1224   the status widget.
1226 * Fetch/Push/Pull dialogs now use the configured remote of the current
1227   branch by default.
1229   https://github.com/git-cola/git-cola/pull/324
1231 Fixes
1232 -----
1233 * We now use `os.getcwd()` on Python3.
1235   https://github.com/git-cola/git-cola/pull/316
1237   https://github.com/git-cola/git-cola/pull/326
1239 * The `Ctrl+P` hotkey was overloaded to both "push" and "cherry-pick",
1240   so "cherry-pick" was moved to `Ctrl+Shift+C`.
1242 * Custom GUI tools with mixed-case names are now properly supported.
1244 * "Diff Region" is now referred to as "Diff Hunk" for consistency
1245   with common terminology from diff/patch tools.
1247   https://github.com/git-cola/git-cola/issues/328
1249 * git-cola's test suite is now portable to MS Windows.
1251   https://github.com/git-cola/git-cola/pull/332
1253 .. _v2.0.4:
1255 git-cola v2.0.4
1256 ===============
1257 Usability, bells and whistles
1258 -----------------------------
1259 * We now handle the case when inotify `add_watch()` fails
1260   and display instructions on how to increase the number of watches.
1262   https://github.com/git-cola/git-cola/issues/263
1264 * New and improved zh_TW localization thanks to V字龍(Vdragon).
1266   https://github.com/git-cola/git-cola/pull/265
1268   https://github.com/git-cola/git-cola/pull/267
1270   https://github.com/git-cola/git-cola/pull/268
1272   https://github.com/git-cola/git-cola/issues/269
1274   https://github.com/git-cola/git-cola/pull/270
1276   https://github.com/git-cola/git-cola/pull/271
1278   https://github.com/git-cola/git-cola/pull/272
1280 * New hotkeys: `Ctrl+F` for fetch, `Ctrl+P` for push,
1281   and `Ctrl+Shift+P` for pull.
1283 * The bookmarks widget's context menu actions were made clearer.
1285   https://github.com/git-cola/git-cola/issues/281
1287 * The term "Staging Area" is used consistently in the UI
1288   to allow for better localization.
1290   https://github.com/git-cola/git-cola/issues/283
1292 * The "Section" term is now referred to as "Diff Region"
1293   in the UI.
1295   https://github.com/git-cola/git-cola/issues/297
1297 * The localization documentation related to the LANGUAGE
1298   environment variable was improved.
1300   https://github.com/git-cola/git-cola/pull/293
1302 * The "Actions" panel now contains tooltips for each button
1303   in case the button labels gets truncated by Qt.
1305   https://github.com/git-cola/git-cola/issues/292
1307 * Custom `git config`-defined actions can now be run in the
1308   background by setting `guitool.<name>.background` to `true`.
1310 Fixes
1311 -----
1312 * We now use bold fonts instead of SmallCaps to avoid
1313   artifacts on several configurations.
1315 * We now pickup `user.email`, `cola.tabwidth`, and similar settings
1316   when defined in /etc/gitconfig.
1318   https://github.com/git-cola/git-cola/issues/259
1320 * Better support for unicode paths when using inotify.
1322   https://bugzilla.redhat.com/show_bug.cgi?id=1104181
1324 * Unicode fixes for non-ascii locales.
1326   https://github.com/git-cola/git-cola/issues/266
1328   https://github.com/git-cola/git-cola/issues/273
1330   https://github.com/git-cola/git-cola/issues/276
1332   https://github.com/git-cola/git-cola/issues/282
1334   https://github.com/git-cola/git-cola/issues/298
1336   https://github.com/git-cola/git-cola/issues/302
1338   https://github.com/git-cola/git-cola/issues/303
1340   https://github.com/git-cola/git-cola/issues/305
1342 * Viewing history from the file browser was fixed for Python3.
1344   https://github.com/git-cola/git-cola/issues/274
1346 * setup.py was fixed to install the `*.rst` documentation.
1348   https://github.com/git-cola/git-cola/issues/279
1350 * Patch export was fixed for Python3.
1352   https://github.com/git-cola/git-cola/issues/290
1354 * Fixed adding a bookmark with trailing slashes.
1356   https://github.com/git-cola/git-cola/pull/295
1358 * The default `git dag` layout is now setup so that its widgets
1359   can be freely resized on Linux.
1361   https://github.com/git-cola/git-cola/issues/299
1363 * Invalid tag names are now reported when creating tags.
1365   https://github.com/git-cola/git-cola/pull/296
1367 .. _v2.0.3:
1369 git-cola v2.0.3
1370 ===============
1371 Usability, bells and whistles
1372 -----------------------------
1373 * `git cola` no longer prompts after successfully creating a new branch.
1375   https://github.com/git-cola/git-cola/pull/251
1377 * Hitting enter on simple dialogs now accepts them.
1379   https://github.com/git-cola/git-cola/pull/255
1381 Fixes
1382 -----
1383 * `git dag` no longer relies on `sys.maxint`, which is
1384   not available in Python3.
1386   https://github.com/git-cola/git-cola/issues/249
1388 * Python3-related fixes.
1390   https://github.com/git-cola/git-cola/pull/254
1392 * Python3-on-Windows-related fixes.
1394   https://github.com/git-cola/git-cola/pull/250
1396   https://github.com/git-cola/git-cola/pull/252
1398   https://github.com/git-cola/git-cola/pull/253
1400 * Switching repositories using the bookmarks widget was not
1401   refreshing the inotify watcher.
1403   https://github.com/git-cola/git-cola/pull/256
1405 * Special commit messages trailers (e.g. "Acked-by:") are now special-cased to
1406   fix word wrapping lines that start with "foo:".
1408   https://github.com/git-cola/git-cola/issues/257
1410 * `git dag` sometimes left behind selection artifacts.
1411   We now refresh the view to avoid them.
1413   https://github.com/git-cola/git-cola/issues/204
1415 .. _v2.0.2:
1417 git-cola v2.0.2
1418 ===============
1419 Usability, bells and whistles
1420 -----------------------------
1421 * Better inotify support for file creation and deletion.
1423   https://github.com/git-cola/git-cola/issues/240
1425 * `git cola` now supports the X11 Session Management Protocol
1426   and remembers its state across logout/reboot.
1428   https://github.com/git-cola/git-cola/issues/164
1430 * `git cola` has a new icon.
1432   https://github.com/git-cola/git-cola/issues/190
1434 Packaging
1435 ---------
1436 * Building the documentation no longer requires `asciidoc`.
1437   We now use `Sphinx <http://sphinx-doc.org/>`_ for building
1438   html documentation and man pages.
1440 Fixes
1441 -----
1442 * Reworked the git-dag gravatar icon code to avoid a unicode
1443   error in Python 2.
1445 * Commit message line-wrapping was made to better match the GUI editor.
1447   https://github.com/git-cola/git-cola/issues/242
1449 * Better support for Python3 on Windows
1451   https://github.com/git-cola/git-cola/issues/246
1453 Packaging
1454 ---------
1455 * git-cola no longer depends on Asciidoc for building its documentation
1456   and man-pages.  We now depend on [Sphinx](http://sphinx-doc.org/) only.
1458 .. _v2.0.1:
1460 git-cola v2.0.1
1461 ===============
1462 Usability, bells and whistles
1463 -----------------------------
1464 * Some context menu actions are now hidden when selected
1465   files do not exist.
1467   https://github.com/git-cola/git-cola/issues/238
1469 Fixes
1470 -----
1471 * The build-git-cola.sh contrib script was improved.
1473   https://github.com/git-cola/git-cola/pull/235
1475 * Non-ascii worktrees work properly again.
1477   https://github.com/git-cola/git-cola/issues/234
1479 * The browser now guards itself against missing files.
1481   https://bugzilla.redhat.com/show_bug.cgi?id=1071378
1483 * Saving widget state now works under Python3.
1485   https://github.com/git-cola/git-cola/pull/236
1487 .. _v2.0.0:
1489 git-cola v2.0.0
1490 ===============
1491 Portability
1492 -----------
1493 * git-cola now runs on Python 3 thanks to Virgil Dupras.
1495   https://github.com/git-cola/git-cola/pull/233
1497 * Python 2.6, 2.7, and 3.2+ are now supported.
1498   Python 2.5 is no longer supported.
1500 Fixes
1501 -----
1502 * i18n test fixes thanks to Virgil Dupras.
1504   https://github.com/git-cola/git-cola/pull/231
1506 * git-cola.app build fixes thanks to Maicon D. Filippsen.
1508   https://github.com/git-cola/git-cola/pull/230
1510 * Lots of pylint improvements thanks to Alex Chernetz.
1512   https://github.com/git-cola/git-cola/pull/229
1514 .. _v1.9.4:
1516 git-cola v1.9.4
1517 ===============
1518 Usability, bells and whistles
1519 -----------------------------
1520 * The new `Bookmarks` tool makes it really easy to switch between repositories.
1522 * There is now a dedicated dialog for applying patches.
1523   See the ``File -> Apply Patches`` menu item.
1525   https://github.com/git-cola/git-cola/issues/215
1527 * A new `git cola am` sub-command was added for applying patches.
1529 Fixes
1530 -----
1531 * Fixed a typo that caused inotify events to be silently ignored.
1533 * Fixed the sys.path setup for Mac OS X (Homebrew).
1535   https://github.com/git-cola/git-cola/issues/221
1537 * Lots of pylint fixes thanks to Alex Chernetz.
1539 .. _v1.9.3:
1541 git-cola v1.9.3
1542 ===============
1543 Usability, bells and whistles
1544 -----------------------------
1545 * `git cola --amend` now starts the editor in `amend` mode.
1547   https://github.com/git-cola/git-cola/issues/187
1549 * Multiple lines of text can now be pasted into the `summary` field.
1550   All text beyond the first newline will be automatically moved to the
1551   `extended description` field.
1553   https://github.com/git-cola/git-cola/issues/212
1555 Fixes
1556 -----
1557 * Stray whitespace in `.git` files is now ignored.
1559   https://github.com/git-cola/git-cola/issues/213
1561 * Fix "known incorrect sRGB profile" in `staged-item.png`.
1563   http://comments.gmane.org/gmane.linux.gentoo.devel/85066
1565 .. _v1.9.2:
1567 git-cola v1.9.2
1568 ===============
1569 Fixes
1570 -----
1571 * Fix a traceback when `git push` fails.
1573   https://bugzilla.redhat.com/show_bug.cgi?id=1034778
1575 Packaging
1576 ---------
1577 * Most of the git-cola sub-packages have been removed.
1578   The only remaining packages are `cola`, `cola.models`,
1579   and `cola.widgets`.
1581 * The translation file for Simplified Chinese was renamed
1582   to `zh_CN.po`.
1584   https://github.com/git-cola/git-cola/issues/209
1586 .. _v1.9.1:
1588 git-cola v1.9.1
1589 ===============
1590 Packaging
1591 ---------
1592 * `git cola version --brief` now prints the brief version number.
1594 Fixes
1595 -----
1596 * Resurrected the "make dist" target, for those that prefer to create
1597   their own tarballs.
1599 * Fixed the typo that broke the preferences dialog.
1601 .. _v1.9.0:
1603 git-cola v1.9.0
1604 ===============
1605 Usability, bells and whistles
1606 -----------------------------
1607 * We now ship a full-featured interactive `git rebase` editor.
1608   The rebase todo file is edited using the `git xbase` script which
1609   is provided at `$prefix/share/git-cola/bin/git-xbase`.
1610   This script can be used standalone by setting the `$GIT_SEQUENCE_EDITOR`
1611   before running `git rebase --interactive`.
1613   https://github.com/git-cola/git-cola/issues/1
1615 * Fixup commit messages can now be loaded from the commit message editor.
1617 * Tool widgets can be locked in place by using the "Tools/Lock Layout"
1618   menu action.
1620   https://github.com/git-cola/git-cola/issues/202
1622 * You can now push to several remotes simultaneously by selecting
1623   multiple remotes in the "Push" dialog.
1625   https://github.com/git-cola/git-cola/issues/148
1627 * The `grep` tool learned to search using three different modes:
1628   basic regular expressions (default), extended regular expressions,
1629   and fixed strings.
1631 Packaging
1632 ---------
1633 * `git cola` now depends on the `argparse` Python module.
1634   This module is part of the stdlib in Python 2.7 and must
1635   be installed separately when using Python 2.6 and below.
1637 Fixes
1638 -----
1639 * Support unicode in the output from `fetch`, `push`, and `pull`.
1641 .. _v1.8.5:
1643 git-cola v1.8.5
1644 ===============
1645 Usability, bells and whistles
1646 -----------------------------
1647 * We now detect when the editor or history browser are misconfigured.
1649   https://github.com/git-cola/git-cola/issues/197
1651   https://bugzilla.redhat.com/show_bug.cgi?id=886826
1653 * Display of untracked files can be disabled from the Preferences dialog
1654   or by setting the `gui.displayuntracked` configuration variable to `false`.
1656   http://thread.gmane.org/gmane.comp.version-control.git/232683
1658 Fixes
1659 -----
1660 * Unicode stash names are now supported
1662   https://github.com/git-cola/git-cola/issues/198
1664 * The diffs produced when reverting workspace changes were made more robust.
1666 .. _v1.8.4:
1668 git-cola v1.8.4
1669 =======================
1670 Usability, bells and whistles
1671 -----------------------------
1672 * Brand new German translation thanks to Sven Claussner.
1674 * The "File" menu now provides a "New Repository..." menu action.
1676 * `git dag` now uses a dock-widget interface so that its widgets can
1677   be laid-out and arranged.  Customizations are saved and restored
1678   the next time `git dag` is launched.
1680 * `git dag` now has a "Zoom Best Fit" button next alongside the
1681   "Zoom In" and "Zoom Out" buttons.
1683 * `Ctrl+L` now focuses the "Search" field in the `git dag` tool.
1685 * Right-clicking in the "diff" viewer now updates the cursor position
1686   before performing actions, which makes it much easier to click around
1687   and selectively stage sections.  Previously, the current cursor position
1688   was used which meant that it required two clicks (left-click to update
1689   the position followed by right-click to get the context menu) for the
1690   desired section to be used.  This is now a single right-click operation.
1692 * The `Ctrl+D` "Launch Diff Tool" action learned to automatically choose
1693   between `git difftool` and `git mergetool`.  If the file is unmerged then
1694   we automatically launch `git mergetool` on the path, otherwise we use
1695   `git difftool`.  We do this because `git difftool` is not intended to
1696   be used on unmerged paths.  Automatically using `git mergetool` when
1697   appropriate is the most intuitive and muscle-memory-friendly thing to do.
1699 * You can now right-click on folders in your standard file browser
1700   and choose "Open With -> Git Cola"  (Linux-only).
1702 Fixes
1703 -----
1704 * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple
1705   at `sys.version_info`.  We now avoid using that variable for better
1706   portability.
1708 * We now read the user's Git configuration from `~/.config/git/config`
1709   if that file is available, otherwise we use the traditional `~/.gitconfig`
1710   path, just like Git itself.
1712 * Some edge cases were fixed when applying partial/selected diffs.
1714 * The diff viewer is now properly cleared when refreshing.
1716   https://github.com/git-cola/git-cola/issues/194
1718 .. _v1.8.3:
1720 git-cola v1.8.3
1721 ===============
1722 Usability, bells and whistles
1723 -----------------------------
1724 * The diff viewer now has an "Options" menu which can be
1725   used to set "git diff" options.  This can be used to
1726   ignore whitespace changes or to show a change with its
1727   surrounding function as context.
1729   https://github.com/git-cola/git-cola/issues/150
1731 * `git cola` now remembers your commit message and will restore it
1732   when `git cola` is restarted.
1734   https://github.com/git-cola/git-cola/pull/175
1736 * `Ctrl+M` can now be used to toggle the "Amend last commit"
1737   checkbox in the commit message editor.
1739   https://github.com/git-cola/git-cola/pull/161
1741 * Deleting remote branches can now be done from the "Branch" menu.
1743   https://github.com/git-cola/git-cola/issues/152
1745 * The commit message editor now has a built-in spell checker.
1747 Fixes
1748 -----
1749 * We now avoid invoking external diffs when showing diffstats.
1751   https://github.com/git-cola/git-cola/pull/163
1753 * The `Status` tool learned to reselect files when refreshing.
1755   https://github.com/git-cola/git-cola/issues/165
1757 * `git cola` now remembers whether it has been maximized and will restore the
1758   maximized state when `git cola` is restarted.
1760   https://github.com/git-cola/git-cola/issues/172
1762 * Performance is now vastly improved when staging hundreds or
1763   thousands of files.
1765 * `git cola` was not correctly saving repo-specific configuration.
1767   https://github.com/git-cola/git-cola/issues/174
1769 * Fix a UnicodeDecode in sphinxtogithub when building from source.
1771 .. _v1.8.2:
1773 git-cola v1.8.2
1774 ===============
1775 Usability, bells and whistles
1776 -----------------------------
1777 * We now automatically remove missing repositories from the
1778   "Select Repository" dialog.
1780   https://github.com/git-cola/git-cola/issues/145
1782 * A new `git cola diff` sub-command was added for diffing changed files.
1784 Fixes
1785 -----
1786 * The inotify auto-refresh feature makes it difficult to select text in
1787   the "diff" editor when files are being continually modified by another
1788   process.  The auto-refresh causes it to lose the currently selected text,
1789   which is not wanted.  We now avoid this problem by saving and restoring
1790   the selection when refreshing the editor.
1792   https://github.com/git-cola/git-cola/issues/155
1794 * More strings have been marked for l10n.
1796   https://github.com/git-cola/git-cola/issues/157
1798 * Fixed the Alt+D Diffstat shortcut.
1800   https://github.com/git-cola/git-cola/issues/159
1802 Fixes
1803 -----
1804 * Better error handling when cloning repositories.
1806   We were not handling the case where a git URL has
1807   no basename, e.g. `https://git.example.com/`.
1808   `git cola` originally rejected these URLs instead of
1809   allowing users to clone them.  It now allows these URLs
1810   when they point to valid git repositories.
1812   Additionally, `git cola` learned to echo the errors
1813   reported by `git clone` when it fails.
1815   https://github.com/git-cola/git-cola/issues/156
1817 .. _v1.8.1:
1819 git-cola v1.8.1
1820 ===============
1821 Usability, bells and whistles
1822 -----------------------------
1823 * `git dag` got a big visual upgrade.
1825 * `Ctrl+G` now launches the "Grep" tool.
1827 * `Ctrl+D` launches difftool and `Ctrl+E` launches your editor
1828   when in the diff panel.
1830 * git-cola can now be told to use an alternative language.
1831   For example, if the native language is German and we want git-cola to
1832   use English then we can create a `~/.config/git-cola/language` file with
1833   "en" as its contents:
1835   $ echo en >~/.config/git-cola/language
1837   https://github.com/git-cola/git-cola/issues/140
1839 * A new `git cola merge` sub-command was added for merging branches.
1841 * Less blocking in the main UI
1843 Fixes
1844 -----
1845 * Autocomplete issues on KDE
1847   https://github.com/git-cola/git-cola/issues/144
1849 * The "recently opened repositories" startup dialog did not
1850   display itself in the absence of bookmarks.
1852   https://github.com/git-cola/git-cola/issues/139
1854 .. _v1.8.0:
1856 git-cola v1.8.0
1857 ===============
1858 Usability, bells and whistles
1859 -----------------------------
1860 * `git cola` learned to honor `.gitattributes` when showing and
1861   interactively applying diffs.  This makes it possible to store
1862   files in git using a non-utf-8 encoding and `git cola` will
1863   properly accept them.  This must be enabled by settings
1864   `cola.fileattributes` to true, as it incurs a small performance
1865   penalty.
1867   https://github.com/git-cola/git-cola/issues/96
1869 * `git cola` now wraps commit messages at 72 columns automatically.
1870   This is configurable using the `cola.linebreak` variable to enable/disable
1871   the feature, and `cola.textwidth` to configure the limit.
1873   https://github.com/git-cola/git-cola/issues/133
1875 * A new "Open Recent" sub-menu was added to the "File" menu.
1876   This makes it easy to open a recently-edited repository.
1878   https://github.com/git-cola/git-cola/issues/135
1880 * We now show a preview for untracked files when they are clicked
1881   using the `Status` tool.
1882 * A new "Open Using Default Application" action was added to the
1883   `Status` tool.  It is activated using either `Spacebar` or through
1884   the context menu.  This action uses `xdg-open` on Linux and
1885   `open` on Mac OS X.
1886 * A new "Open Parent Directory" action was added to the `Status` tool.
1887   It is activated using either `Shift+Spacebar` or through the
1888   context menu.
1889 * `git dag` learned to honor the `log.date` git configuration variable.
1890   This makes the date display follow whatever format the user has
1891   configured.
1892 * A new `git cola config` sub-command was added for quickly
1893   tweaking `git cola`'s git configuration settings.
1894 * Some small usability tweaks -- some user confirmation prompts
1895   were defaulting to "Cancel" when they should have been defaulting
1896   to the affirmative option instead.
1898 Fixes
1899 -----
1900 * Properly handle arbitrarily-named branches.
1901 * We went back to launching `git mergetool` using an xterm.
1902   The reason is that there are a couple of places where `git mergetool`
1903   requires a terminal for user interaction not covered by `--no-prompt`.
1904 * We now properly handle an edge case when applying short diffs at
1905   the start of a file.
1907 .. _v1.7.7:
1909 git-cola v1.7.7
1910 ===============
1911 Usability, bells and whistles
1912 -----------------------------
1913 * New and improved `grep` mode lets you instantly find and edit files.
1914 * New `git cola grep` standalone mode.
1915 * Support for passing arguments to the configured editors, e.g. `gvim -p`
1916   This makes it possible to select multiple files in the status
1917   window and use `Ctrl-e` to edit them all at once.
1918 * Remote operations now prompt on errors only.
1919 * The `Tab` key now jumps to the extended description when editing the summary.
1920 * More shortcut key labels and misc. UX improvements.
1922 Fixes
1923 -----
1924 * Selecting an item no longer copies its filename to the copy/paste buffer.
1925   `Ctrl-c` or the "Copy" context-menu action can be used instead.
1926 * The repository monitoring feature on Windows learned to ignore
1927   changes within the ".git" directory.  Thanks to Andreas Sommer.
1929   https://github.com/git-cola/git-cola/issues/120
1931 .. _v1.7.6:
1933 git-cola v1.7.6
1934 ===============
1935 Usability, bells and whistles
1936 -----------------------------
1937 * `git dag` learned to color-code branchy edges.
1938   The edge colors change when a new branch is detected,
1939   which makes the history much easier to follow.
1940   A huge thanks to Uri Okrent for making it happen.
1942 * New GUI for editing remote repositories.
1944 * New `git cola archive` and `git cola remote` sub-commands.
1946 * `git cola browser` learned an 'Untrack' command.
1948 * The diff editor learned to staged/unstaged while amending.
1950 * The status tool can now scroll horizontally.
1952 * New git repositories can be created by clicking 'New' on the
1953   `git cola --prompt` startup screen.
1955 .. _v1.7.5:
1957 git-cola v1.7.5
1958 ===============
1959 Usability, bells and whistles
1960 -----------------------------
1961 * Auto-completion was added to more tools.
1963 * `git dag` is easier to use on smaller displays -- the author
1964   field elides its text which allows for a more compact display.
1966 * Selected commits in `git dag` were made more prominent and
1967   easier to see.
1969 * 'Create Branch' learned to fetch remote branches and uses a
1970   background thread to do so.
1972 * User-configured GUI tools are listed alphabetically in the 'Actions' menu.
1974 * The 'Pull' dialog remembers the value of the 'Rebase' checkbox
1975   between invocations.
1977 .. _v1.7.4.1:
1979 git-cola v1.7.4.1
1980 =================
1981 Fixes
1982 -----
1983 * Detect Homebrew so that OS X users do not need to set PYTHONPATH.
1985 * `git dag` can export patches again.
1987 .. _v1.7.4:
1989 git-cola v1.7.4
1990 ===============
1991 Usability, bells and whistles
1992 -----------------------------
1993 * The 'Classic' tool was renamed to 'Browser' and learned to
1994   limit history to the current branch.
1996 * `git dag` learned about gravatar and uses it to show images
1997   for commit authors.
1999 * `git dag` learned to use OpenGL for rendering resulting in
2000   much faster rendering.
2002 * More dialogs learned vim-style keyboard shortcuts.
2004 * The commit message editor learned better arrow key navigation.
2006 .. _v1.7.3:
2008 git-cola v1.7.3
2009 ===============
2010 Usability, bells and whistles
2011 -----------------------------
2012 * `git cola` learned a few new sub commands:
2014 .. sourcecode:: sh
2016     git cola dag
2017     git cola branch
2018     git cola search
2020 * `Return` in the summary field jumps to the extended description.
2022 * `Ctrl+Return` is now a shortcut for 'Commit'.
2024 * Better French translation for 'Sign-off'.
2026 * The 'Search' widget now has a much simpler and streamlined
2027   user interface.
2029 * vim-style `h,j,k,l` navigation shortcuts were added to the DAG widget.
2031 * `git dag` no longer prompts for files when diffing commits if the
2032   text field contains paths.
2034 * General user interface and performance improvements.
2036 Fixes
2037 -----
2038 * The diff viewer no longer changes font size when holding `Control`
2039   while scrolling with the mouse wheel.
2041 * Files with a typechange (e.g. symlinks that become files, etc.)
2042   are now correctly identified as being modified.
2044 Packaging
2045 ---------
2046 * The `cola.controllers` and `cola.views` packages were removed.
2048 .. _v1.7.2:
2050 git-cola v1.7.2
2051 ===============
2052 Usability, bells and whistles
2053 -----------------------------
2054 * `git cola` can now launch sub commands, e.g.:
2056 .. sourcecode:: sh
2058     git cola classic
2059     git cola stash
2060     git cola fetch
2061     git cola push
2062     git cola pull
2063     git cola tag
2065 * `git dag` is more responsive when gathering auto-completions.
2067 * Keyboard shortcuts are displayed when the '?' key is pressed.
2069 * Various keyboard shortcuts were added for improved usability.
2071 * The status widget now lists unmerged files before modified files.
2073 * vim-style `h,j,k,l` navigation shortcuts were added to the status widget.
2075 * A 'Recently Modified Files...' tool was added.
2077 * Tools can now be hidden with `Alt + #` (where `#` is a keyboard number)
2078   and focused with `Alt + Shift + #`.
2080 * The syntax highlighting colors for diffs was made less intrusive.
2082 * The commit message editor was redesigned to have a more compact
2083   and keyboard-convenient user interface.
2084   
2085 * Keyboard shortcuts for adding a Signed-off-by (`Ctrl + i`)
2086   and creating a commit (`Ctrl + m`) were added.
2088 * The status widget was adjusted to use less screen real-estate.
2090 Fixes
2091 -----
2092 * Avoid updating the index when responding to inotify events.
2093   This avoids interfering with operations such as `git rebase --interactive`.
2095   https://github.com/git-cola/git-cola/issues/99
2097 Packaging
2098 ---------
2099 * Create `git-dag.pyw` in the win32 installer.
2101 * win32 shortcuts now contain explicit calls to `pythonw.exe` instead of
2102   calling the `.pyw` file directly.
2104 Deprecated Features
2105 -------------------
2106 * The 'Apply Changes from Branch...' feature was removed.
2107   `git dag`'s 'Grab File...' feature used alongside the index/worktree editor
2108   is a simpler alternative.
2110 .. _v1.7.1.1:
2112 git-cola v1.7.1.1
2113 =================
2114 Fixes
2115 -----
2116 * Further enhanced the staging/unstaging behavior in the status widget.
2118   https://github.com/git-cola/git-cola/issues/97
2120 * Unmerged files are no longer listed as modified.
2122 Packaging
2123 ---------
2124 The `cola-$version` tarballs on github were originally setup to
2125 have the same contents as the old tarballs hosted on tuxfamily.
2126 The `make dist` target was changed to write files to a
2127 `git-cola-$version` subdirectory and tarball.
2129 This makes the filenames consistent for the source tarball,
2130 the darwin .app tarball, and the win32 .exe installer.
2132 .. _v1.7.1:
2134 git-cola v1.7.1
2135 ===============
2136 Usability, bells and whistles
2137 -----------------------------
2138 * Refined the staging/unstaging behavior for code reviews.
2140   https://github.com/git-cola/git-cola/issues/97
2142 * Added more styling and icons to menus and buttons.
2144 * Adjusted some terminology to more closely match the git CLI.
2146 Fixes
2147 -----
2148 * Boolean `git config` settings with no value are now supported
2149   (these are not created by git these days but exist in legacy repositories).
2151 * Unicode branches and tags are supported in the "branch diff" tool.
2153 * Guard against low-memory conditions and more interrupted system calls.
2155 Packaging
2156 ---------
2157 * Added desktop launchers for git-cola.desktop and git-dag.desktop.
2158   This replaces the old cola.desktop, so some adjustments to RPM .spec
2159   and debian/ files will be needed.
2161 * Fixed the darwin app-tarball Makefile target to create relative paths.
2163 Cleanup
2164 -------
2165 * The `--style` option was removed.  `git cola` follows the system theme
2166   so there's no need for this option these days.
2168 .. _v1.7.0:
2170 git-cola v1.7.0
2171 ===============
2172 Usability, bells and whistles
2173 -----------------------------
2174 * Export a patch series from `git dag` into a `patches/` directory.
2176 * `git dag` learned to diff commits, slice history along paths, etc.
2178 * Added instant-preview to the `git stash` widget.
2180 * A simpler preferences editor is used to edit `git config` values.
2182   https://github.com/git-cola/git-cola/issues/90
2184   https://github.com/git-cola/git-cola/issues/89
2186 * Previous commit messages can be re-loaded from the message editor.
2188   https://github.com/git-cola/git-cola/issues/33
2190 Fixes
2191 -----
2192 * Display commits with no file changes.
2194   https://github.com/git-cola/git-cola/issues/82
2196 * Improved the diff editor's copy/paste behavior
2198   https://github.com/git-cola/git-cola/issues/90
2200 Packaging
2201 ---------
2202 * Bumped version number to ceil(minimum git version).
2203   `git cola` now requires `git` >= 1.6.3.
2205 * Simplified git-cola's versioning when building from tarballs
2206   outside of git.  We no longer check for a 'version' file at
2207   the root of the repository.  We instead keep a default version
2208   in `cola/version.py` and use it when `git cola`'s `.git` repository
2209   is not available.
2211 .. _v1.4.3.5:
2213 git-cola v1.4.3.5
2214 =================
2215 Usability, bells and whistles
2216 -----------------------------
2217 * inotify is much snappier and available on Windows
2218   thanks to Karl Bielefeldt.
2220 * New right-click command to add untracked files to .gitignore
2221   thanks to Audrius Karabanovas.
2223 * Stash, fetch, push, and pull usability improvements
2225 * General usability improvements
2227 * stderr is logged when applying partial diffs.
2229 Fixes
2230 -----
2231 * Files can be unstaged when amending.
2233   https://github.com/git-cola/git-cola/issues/82
2235 * Show the configured remote.$remote.pushurl in the GUI
2237   https://github.com/git-cola/git-cola/issues/83
2239 * Removed usage of the "user" module.
2241   https://github.com/git-cola/git-cola/issues/86
2243 * Avoids an extra `git update-index` call during startup.
2246 .. _v1.4.3.4:
2248 git-cola v1.4.3.4
2249 =================
2250 Usability, bells and whistles
2251 -----------------------------
2252 * We now provide better feedback when `git push` fails.
2254   https://github.com/git-cola/git-cola/issues/69
2256 * The Fetch, Push, and Pull dialogs now give better feedback
2257   when interacting with remotes.  The dialogs are modal and
2258   a progress dialog is used.
2260 Fixes
2261 -----
2262 * More unicode fixes, again.  It is now possible to have
2263   unicode branch names, repository paths, home directories, etc.
2264   This continued the work initiated by Redhat's bugzilla #694806.
2266   https://bugzilla.redhat.com/show_bug.cgi?id=694806
2268 .. _v1.4.3.3:
2270 git-cola v1.4.3.3
2271 =================
2272 Usability, bells and whistles
2273 -----------------------------
2274 * The `git cola` desktop launchers now prompt for a repo
2275   by default.  This is done by using the new `--prompt`
2276   flag which tells `git cola` to ignore any git repositories
2277   in the current directory and prompt for one instead.
2279 Fixes
2280 -----
2281 * More Unicode fixes for repositories and home directories with
2282   embedded unicode characters.  Thanks to Christian Jann for
2283   patience and helpful bug reports.
2285 * Fix the 'Clone' button in the startup dialog.
2287 .. _v1.4.3.2:
2289 git-cola v1.4.3.2
2290 =================
2291 Usability, bells and whistles
2292 -----------------------------
2293 * Faster startup time! `git cola` now offloads initialization
2294   to a background thread so that the GUI appears almost instantly.
2296 * Specialized diff options for p4merge, vimdiff, araxis, emerge,
2297   and ecmerge in difftool (backported from git.git).
2299 Fixes
2300 -----
2301 * Fix launching commands in the background on Windows
2302   (e.g. when launching `git difftool`).
2304 * Fix unicode errors when home or repository directories contain
2305   unicode characters.
2307   https://github.com/git-cola/git-cola/issues/74
2309   Redhat's bugzilla #694806
2311   https://bugzilla.redhat.com/show_bug.cgi?id=694806
2313 .. _v1.4.3.1:
2315 git-cola v1.4.3.1
2316 =================
2317 Usability, bells and whistles
2318 -----------------------------
2319 * The `cola classic` tool can be now configured to be dockable.
2321   https://github.com/git-cola/git-cola/issues/56
2323 * The `cola classic` tool now uses visual sigils to indicate a file's status.
2324   The idea and icons were provided by Uri Okrent.
2326 * Include the 'Rescan' button in the 'Actions' widget regardless
2327   of whether inotify is installed.
2329 Packaging
2330 ---------
2331 * Fix installation of translations per Fedora
2332   This incorporates Fedora's fix for the translations path
2333   which originally appeared in cola-1.4.3-translations.patch.
2335 * Mac OS X git-cola developers can now generate git-cola.app
2336   application bundles using 'make app-bundle'.
2338 Fixes
2339 -----
2340 * Fixed a stacktrace when trying to use "Get Commit Message Template"
2341   with an unconfigured "commit.template" git config variable.
2343   https://github.com/git-cola/git-cola/issues/72
2345   This bug originated in Redhat's bugzilla #675721 via a Fedora user.
2347   https://bugzilla.redhat.com/show_bug.cgi?id=675721
2349 * Properly raise the main window on Mac OS X.
2351 * Properly handle staging a huge numbers of files at once.
2353 * Speed up 'git config' usage by fixing cola's caching proxy.
2355 * Guard against damaged ~/.cola files.
2357 .. _v1.4.3:
2359 git-cola v1.4.3
2360 ===============
2361 Usability, bells and whistles
2362 -----------------------------
2363 * `git dag` now has a separate display area
2364   for displaying commit metadata.  This area will soon
2365   grow additional functionality such as cherry-picking,
2366   branching, etc.
2368 Fixes
2369 -----
2370 * Fixed tests from a previous refactoring.
2372 * Guard against 'diff.external' configuration by always
2373   calling 'git diff' with the '--no-ext-diff' option.
2375   https://github.com/git-cola/git-cola/issues/67
2377 * Respect 'gui.diffcontext' so that cola's diff display
2378   shows the correct number of context lines.
2380 * Raise the GUI so that it is in the foreground on OS X.
2382 Packaging
2383 ---------
2384 * We now allow distutils to rewrite cola's shebang line.
2385   This allows us to run on systems where "which python"
2386   is Python3k.  This is exposed by setting the `PYTHON`
2387   Makefile variable to the location of python2.x.
2389 * git-cola.app is now a tiny download because it no longer
2390   contains Qt and PyQt.  These libraries are provided as a
2391   separate download.
2393   http://code.google.com/p/git-cola/downloads/list
2395 .. _v1.4.2.5:
2397 git-cola v1.4.2.5
2398 =================
2399 Usability, bells and whistles
2400 -----------------------------
2401 * Clicking on paths in the status widget copies them into the
2402   copy/paste buffer for easy middle-clicking into terminals.
2404 * `Ctrl+C` in diff viewer copies the selected diff to the clipboard.
2406 Fixes
2407 -----
2408 * Fixed the disappearing actions buttons on PyQt 4.7.4
2409   as reported by Arch and Ubuntu 10.10.
2411   https://github.com/git-cola/git-cola/issues/62
2413 * Fixed mouse interaction with the status widget where some
2414   items could not be de-selected.
2416 Packaging
2417 ---------
2418 * Removed hard-coded reference to lib/ when calculating Python's
2419   site-packages directory.
2421 .. _v1.4.2.4:
2423 git-cola v1.4.2.4
2424 =================
2425 Usability, bells and whistles
2426 -----------------------------
2427 * Removed "single-click to (un)stage" in the status view.
2428   This is a usability improvement since we no longer perform
2429   different actions depending on where a row is clicked.
2431 * Added ability to create unsigned, annotated tags.
2433 Fixes
2434 -----
2435 * Updated documentation to use `cola.git` instead of `cola.gitcmd`.
2437 .. _v1.4.2.3:
2439 git-cola v1.4.2.3
2440 =================
2441 Usability, bells and whistles
2442 -----------------------------
2443 * Allow un/staging by right-clicking top-level items
2445   https://github.com/git-cola/git-cola/issues/57
2447 * Running 'commit' with no staged changes prompts to allow
2448   staging all files.
2450   https://github.com/git-cola/git-cola/issues/55
2452 * Fetch, Push, and Pull are now available via the menus
2454   https://github.com/git-cola/git-cola/issues/58
2456 Fixes
2457 -----
2458 * Simplified the actions widget to work around a regression
2459   in PyQt4 4.7.4.
2461   https://github.com/git-cola/git-cola/issues/62
2463 .. _v1.4.2.2:
2465 git-cola v1.4.2.2
2466 =================
2467 Usability, bells and whistles
2468 -----------------------------
2469 * `git dag` interaction was made faster.
2471 Fixes
2472 -----
2473 * Added '...' indicators to the buttons for
2474   'Fetch...', 'Push...', 'Pull...', and 'Stash...'.
2476   https://github.com/git-cola/git-cola/issues/51
2478 * Fixed a hang-on-exit bug in the cola-provided
2479   'ssh-askpass' implementation.
2481 .. _v1.4.2.1:
2483 git-cola v1.4.2.1
2484 =================
2485 Usability, bells and whistles
2486 -----------------------------
2487 * Staging and unstaging is faster.
2489   https://github.com/git-cola/git-cola/issues/48
2491 * `git dag` reads history in a background thread.
2493 Portability
2494 -----------
2495 * Added :data:`cola.compat.hashlib` for `Python 2.4` compatibility
2496 * Improved `PyQt 4.1.x` compatibility.
2498 Fixes
2499 -----
2500 * Configured menu actions use ``sh -c`` for Windows portability.
2503 .. _v1.4.2:
2505 git-cola v1.4.2
2506 ===============
2507 Usability, bells and whistles
2508 -----------------------------
2509 * Added support for the configurable ``guitool.<tool>.*``
2510   actions as described in ``git-config(1)``.
2512   https://github.com/git-cola/git-cola/issues/44
2514   http://schacon.github.com/git/git-config.html
2516   This makes it possible to add new actions to `git cola`
2517   by simply editing ``~/.gitconfig``.  This implements the
2518   same guitool support as `git gui`.
2519 * Introduced a stat cache to speed up `git config` and
2520   repository status checks.
2521 * Added Alt-key shortcuts to the main `git cola` interface.
2522 * The `Actions` dock widget switches between a horizontal
2523   and vertical layout when resized.
2524 * We now use ``git diff --submodule`` for submodules
2525   (used when git >= 1.6.6).
2526 * The context menu for modified submodules includes an option
2527   to launch `git cola`.
2529   https://github.com/git-cola/git-cola/issues/17
2531 * Prefer ``$VISUAL`` over ``$EDITOR`` when both are defined.
2532   These are used to set a default editor in lieu of `core.editor`
2533   configuration.
2534 * Force the editor to be ``gvim`` when we see ``vim``.
2535   This prevents us from launching an editor in the (typically
2536   unattached) parent terminal and creating zombie editors
2537   that cannot be easily killed.
2538 * Selections are remembered and restored across updates.
2539   This makes the `partial-staging` workflow easier since the
2540   diff view will show the updated diff after staging.
2541 * Show the path to the current repository in a tooltip
2542   over the commit message editor.
2544   https://github.com/git-cola/git-cola/issues/45
2546 * Log internal ``git`` commands when ``GIT_COLA_TRACE`` is defined.
2548   https://github.com/git-cola/git-cola/issues/39
2550 Fixes
2551 -----
2552 * Improved backwards compatibility for Python 2.4.
2553 * `Review mode` can now review the current branch; it no longer
2554   requires you to checkout the branch into which the reviewed
2555   branch will be merged.
2556 * Guard against `color.ui = always` configuration when using
2557   `git log` by passing ``--no-color``.
2558 * ``yes`` and ``no`` are now supported as valid booleans
2559   by the `git config` parser.
2560 * Better defaults are used for `fetch`, `push`, and `pull`..
2562   https://github.com/git-cola/git-cola/issues/43
2564 Packaging
2565 ---------
2566 * Removed colon (`:`) from the applilcation name on Windows
2568   https://github.com/git-cola/git-cola/issues/41
2570 * Fixed bugs with the Windows installer
2572   https://github.com/git-cola/git-cola/issues/40
2574 * Added a more standard i18n infrastructure.  The install
2575   tree now has the common ``share/locale/$lang/LC_MESSAGES/git-cola.mo``
2576   layout in use by several projects.
2578 * Started trying to accommodate Mac OSX 10.6 (Snow Leopard)
2579   in the ``darwin/`` build scripts but our tester is yet to
2580   report success building a `.app` bundle.
2582 * Replaced use of ``perl`` in Sphinx/documentation Makefile
2583   with more-portable ``sed`` constructs.  Thanks to
2584   Stefan Naewe for discovering the portability issues and
2585   providing msysgit-friendly patches.
2587 .. _v1.4.1.2:
2589 git-cola v1.4.1.2
2590 =================
2591 Usability, bells and whistles
2592 -----------------------------
2593 * It is now possible to checkout from the index as well
2594   as from `HEAD`.  This corresponds to the
2595   `Removed Unstaged Changes` action in the `Repository Status` tool.
2596 * The `remote` dialogs (fetch, push, pull) are now slightly
2597   larger by default.
2598 * Bookmarks can be selected when `git cola` is run outside of a git repository.
2599 * Added more user documentation.  We now include many links to
2600   external git resources.
2601 * Added `git dag` to the available tools.
2602   `git dag` is a node-based DAG history browser.
2603   It doesn't do much yet, but it's been merged so that we can start
2604   building and improving upon it.
2606 Fixes
2607 -----
2608 * Fixed a missing ``import`` when showing `right-click` actions
2609   for unmerged files in the `Repository Status` tool.
2610 * ``git update-index --refresh`` is no longer run every time
2611   ``git cola version`` is run.
2612 * Don't try to watch non-existent directories when using `inotify`.
2613 * Use ``git rev-parse --symbolic-full-name`` plumbing to find
2614   the name of the current branch.
2616 Packaging
2617 ---------
2618 * The ``Makefile`` will now conditionally include a ``config.mak``
2619   file located at the root of the project.  This allows for user
2620   customizations such as changes to the `prefix` variable
2621   to be stored in a file so that custom settings do not need to
2622   be specified every time on the command-line.
2623 * The build scripts no longer require a ``.git`` directory to
2624   generate the ``builtin_version.py`` module.  The release tarballs
2625   now include a ``version`` file at the root of the project which
2626   is used in lieu of having the git repository available.
2627   This allows for ``make clean && make`` to function outside of
2628   a git repository.
2629 * Added maintainer's ``make dist`` target to the ``Makefile``.
2630 * The built-in `simplejson` and `jsonpickle` libraries can be
2631   excluded from ``make install`` by specifying the ``standalone=true``
2632   `make` variable.  For example, ``make standalone=true install``.
2633   This corresponds to the ``--standalone`` option to ``setup.py``.
2636 .. _v1.4.1.1:
2638 git-cola v1.4.1.1
2639 =================
2640 Usability, bells and whistles
2641 -----------------------------
2642 * We now use patience diff by default when it is available via
2643   `git diff --patience`.
2644 * Allow closing the `cola classic` tool with `Ctrl+W`.
2646 Fixes
2647 -----
2648 * Fixed an unbound variable error in the `push` dialog.
2650 Packaging
2651 ---------
2652 * Don't include `simplejson` in MANIFEST.in.
2653 * Update desktop entry to read `Cola Git GUI`.
2656 .. _v1.4.1:
2658 git-cola v1.4.1
2659 ===============
2660 This feature release adds two new features directly from
2661 `git cola`'s github issues backlog.  On the developer
2662 front, further work was done towards modularizing the code base.
2664 Usability, bells and whistles
2665 -----------------------------
2666 * Dragging and dropping patches invokes `git am`
2668   https://github.com/git-cola/git-cola/issues/3
2670 * A dialog to allow opening or cloning a repository
2671   is presented when `git cola` is launched outside of a git repository.
2673   https://github.com/git-cola/git-cola/issues/22
2675 * Warn when `push` is used to create a new branch
2677   https://github.com/git-cola/git-cola/issues/35
2679 * Optimized startup time by removing several calls to `git`.
2682 Portability
2683 -----------
2684 * `git cola` is once again compatible with PyQt 4.3.x.
2686 Developer
2687 ---------
2688 * `cola.gitcmds` was added to factor out git command-line utilities
2689 * `cola.gitcfg` was added for interacting with `git config`
2690 * `cola.models.browser` was added to factor out repobrowser data
2691 * Added more tests
2694 .. _v1.4.0.5:
2696 git-cola v1.4.0.5
2697 =================
2698 Fixes
2699 -----
2700 * Fix launching external applications on Windows
2701 * Ensure that the `amend` checkbox is unchecked when switching modes
2702 * Update the status tree when amending commits
2705 .. _v1.4.0.4:
2707 git-cola v1.4.0.4
2708 =================
2709 Packaging
2710 ---------
2711 * Fix Lintian warnings
2714 .. _v1.4.0.3:
2716 git-cola v1.4.0.3
2717 =================
2718 Fixes
2719 -----
2720 * Fix X11 warnings on application startup
2723 .. _v1.4.0.2:
2725 git-cola v1.4.0.2
2726 =================
2727 Fixes
2728 -----
2729 * Added missing 'Exit Diff Mode' button for 'Diff Expression' mode
2731   https://github.com/git-cola/git-cola/issues/31
2733 * Fix a bug when initializing fonts on Windows
2735   https://github.com/git-cola/git-cola/issues/32
2738 .. _v1.4.0.1:
2740 git-cola v1.4.0.1
2741 =================
2742 Fixes
2743 -----
2744 * Keep entries in sorted order in the `cola classic` tool
2745 * Fix staging untracked files
2747   https://github.com/git-cola/git-cola/issues/27
2749 * Fix the `show` command in the Stash dialog
2751   https://github.com/git-cola/git-cola/issues/29
2753 * Fix a typo when loading merge commit messages
2755   https://github.com/git-cola/git-cola/issues/30
2758 .. _v1.4.0:
2760 git-cola v1.4.0
2761 ===============
2762 This release focuses on a redesign of the git-cola user interface,
2763 a tags interface, and better integration of the `cola classic` tool.
2764 A flexible interface based on configurable docks is used to manage the
2765 various cola widgets.
2767 Usability, bells and whistles
2768 -----------------------------
2769 * New GUI is flexible and user-configurable
2770 * Individual widgets can be detached and rearranged arbitrarily
2771 * Add an interface for creating tags
2772 * Provide a fallback `SSH_ASKPASS` implementation to prompt for
2773   SSH passwords on fetch/push/pull
2774 * The commit message editor displays the current row/column and
2775   warns when lines get too long
2776 * The `cola classic` tool displays upstream changes
2777 * `git cola --classic` launches `cola classic` in standalone mode
2778 * Provide more information in log messages
2780 Fixes
2781 -----
2782 * Inherit the window manager's font settings
2783 * Miscellaneous PyQt4 bug fixes and workarounds
2785 Developer
2786 ---------
2787 * Removed all usage of Qt Designer `.ui` files
2788 * Simpler model/view architecture
2789 * Selection is now shared across tools
2790 * Centralized notifications are used to keep views in sync
2791 * The `cola.git` command class was made thread-safe
2792 * Less coupling between model and view actions
2793 * The status view was rewritten to use the MVC architecture
2794 * Added more documentation and tests
2797 .. _v1.3.9:
2799 git-cola v1.3.9
2800 ===============
2801 Usability, bells and whistles
2802 -----------------------------
2803 * Added a `cola classic` tool for browsing the entire repository
2804 * Handle diff expressions with spaces
2805 * Handle renamed files
2807 Portability
2808 -----------
2809 * Handle carat `^` characters in diff expressions on Windows
2810 * Worked around a PyQt 4.5/4.6 QThreadPool bug
2812 Documentation
2813 -------------
2814 * Added a keyboard shortcuts reference page
2815 * Added developer API documentation
2817 Fixes
2818 -----
2819 * Fix the diff expression used when reviewing branches
2820 * Fix a bug when pushing branches
2821 * Fix X11 warnings at startup
2822 * Fix more interrupted system calls on Mac OS X
2825 .. _v1.3.8:
2827 git-cola v1.3.8
2828 ===============
2829 Usability, bells and whistles
2830 -----------------------------
2831 * Fresh and tasty SVG logos
2832 * Added `Branch Review` mode for reviewing topic branches
2833 * Added diff modes for diffing between tags, branches,
2834   or arbitrary `git diff` expressions
2835 * The push dialog selects the current branch by default.
2836   This is in preparation for `git 1.7.0` where unconfigured `git push`
2837   will refuse to push when run without specifying the remote name
2838   and branch.  See the `git` release notes for more information
2839 * Support `open` and `clone` commands on Windows
2840 * Allow saving cola UI layouts
2841 * Re-enabled `double-click-to-stage` for unmerged entries.
2842   Disabling it for unmerged items was inconsistent, though safer.
2843 * Show diffs when navigating the status tree with the keyboard
2845 Packaging
2846 ---------
2847 * Worked around `pyuic4` bugs in the `setup.py` build script
2848 * Added Mac OSX application bundles to the download page
2851 .. _v1.3.7:
2853 git-cola v1.3.7
2854 ===============
2855 Subsystems
2856 ----------
2857 * `git difftool` became an official git command in `git 1.6.3`.
2858 * `git difftool` learned `--no-prompt` / `-y` and a corresponding
2859   `difftool.prompt` configuration variable
2861 Usability, bells and whistles
2862 -----------------------------
2863 * Warn when `non-fast-forward` is used with fetch, push or pull
2864 * Allow `Ctrl+C` to exit cola when run from the command line
2866 Fixes
2867 -----
2868 * Support Unicode font names
2869 * Handle interrupted system calls
2871 Developer
2872 ---------
2873 * `PEP-8`-ified more of the cola code base
2874 * Added more tests
2876 Packaging
2877 ---------
2878 * All resources are now installed into `$prefix/share/git-cola`.
2879   Closed Debian bug #519972
2881   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519972
2884 .. _v1.3.6:
2886 git-cola v1.3.6
2887 ===============
2888 Subsystems
2889 ----------
2890 * Added support for Kompare in `git difftool`
2891 * Added a separate configuration namespace for `git difftool`
2892 * Added the `diff.tool` configuration variable to define the default diff tool
2894 Usability, bells and whistles
2895 -----------------------------
2896 * The stash dialog allows passing the `--keep-index` option to `git stash`
2897 * Amending a published commit warns at commit time
2898 * Simplified the file-across-revisions comparison dialog
2899 * `origin` is selected by default in fetch/push/pull
2900 * Removed the search field from the log widget
2901 * The log window moved into a drawer widget at the bottom of the UI
2902 * Log window display can be configured with
2903   `cola.showoutput` = `{never, always, errors}`.  `errors` is the default.
2904 * `NOTE` -- `cola.showoutput` was removed with the GUI rewrite in 1.4.0.
2906 Developer
2907 ---------
2908 * Improved nose unittest usage
2910 Packaging
2911 ---------
2912 * Added a Windows/msysGit installer
2913 * Included private versions of `simplejson` and `jsonpickle`
2914   for ease of installation and development