qtutils: apply flake8 suggestions
[git-cola.git] / share / doc / git-cola / relnotes / v1.8.2.rst
blobf333c546c6c6b270cf55f7a507e589317d3bdb11
1 .. _v1.8.2:
3 git-cola v1.8.2
4 ===============
5 Usability, bells and whistles
6 -----------------------------
7 * We now automatically remove missing repositories from the
8   "Select Repository" dialog.
10   https://github.com/git-cola/git-cola/issues/145
12 * A new `git cola diff` sub-command was added for diffing changed files.
14 Fixes
15 -----
16 * The inotify auto-refresh feature makes it difficult to select text in
17   the "diff" editor when files are being continually modified by another
18   process.  The auto-refresh causes it to lose the currently selected text,
19   which is not wanted.  We now avoid this problem by saving and restoring
20   the selection when refreshing the editor.
22   https://github.com/git-cola/git-cola/issues/155
24 * More strings have been marked for l10n.
26   https://github.com/git-cola/git-cola/issues/157
28 * Fixed the Alt+D Diffstat shortcut.
30   https://github.com/git-cola/git-cola/issues/159
32 Fixes
33 -----
34 * Better error handling when cloning repositories.
36   We were not handling the case where a git URL has
37   no basename, e.g. `https://git.example.com/`.
38   `git cola` originally rejected these URLs instead of
39   allowing users to clone them.  It now allows these URLs
40   when they point to valid git repositories.
42   Additionally, `git cola` learned to echo the errors
43   reported by `git clone` when it fails.
45   https://github.com/git-cola/git-cola/issues/156