Unify view refresh checking
[tig.git] / NEWS.adoc
blobd10e4976df0c59e792c848f19908a9d37802e680
1 Release notes
2 =============
4 master
5 ------
7 Note to packagers:
9  - Rename README, INSTALL, and NEWS to end in '.adoc'.
10  - BUGS file has been merged into README.
11  - Rename (again) doc/ AsciiDoc files to end in '.adoc'.
12  - Default keybindings have been moved to a system-level tigrc file, which is
13    installed to ${sysconfdir} by default. A version of the tigrc file is
14    included inside the binary as a fall-back. Pass `NO_BUILTIN_TIGRC=y` to not
15    include the tigrc and reduce the size of the binary.
16  - The example `contrib/tigrc` file (made obsolete by `tigrc`) has been removed.
17  - Source files was moved to `src` and `include`.
18  - Build output is less verbose by default; use `make V=1` for full output.
20 Incompatibilities:
22  - In preparation for key combo support, key mappings for symbolic key (e.g.
23    `Up` and `Down`) must now start with `<` and end with `>`, e.g. `<Up>` and
24    `<Down>`. Furthermore, escape key combos must now use `<Esc>key` instead of
25    `^[key`, and control key mappings must now use `<Ctrl-key>` instead of
26    `^key`.
27  - Only use 'diff-options' for the diff view and introduce '%(cmdlineargs)' to
28    hold non-file and non-revision flags passed on the command line. Affects all
29    user-defined commands that expect '%(diffargs)' to hold both 'diff-options'
30    arguments and those passed on the command line. (GH #228)
31  - Remove built-in keybinding for `git gc`. Add the following line to `~/.tigrc`
32    to restore it: `bind generic G ?git gc`.
33  - To support view specific colors, '.' can no longer be used interchangeably
34    with '-' and '_' in settings names and in particular color names.
35  - Replace 'stage-next' action with prompt command using a predefined search
36    (see below) and add binding (`@` by default) to also work in the diff view.
37  - Most view display options must now be set via the new `*-view` options in
38    tigrc. Existing options are no longer recognized, but a warning is shown.
40 Improvements:
42  - Options can be configured and toggled individually for each view. Use the new
43    view settings to configure the order and options for each view columns. See
44    system tigrc and tigrc(5) for examples. (GH #89, #222)
45  - Add mouse support: scroll view, click line to move cursor, double click line
46    (or click again) to "Enter" cursor line, e.g. open commit diff. Disabled by
47    default, since it makes text selection less intuitive. If you enable this
48    remember to hold down Shift (or Option on Mac) when selecting text.
49  - Rewrite and improve the rendering of the commit graph. (GH #144, GH #46)
50  - Add a new "auto" value for the 'vertical-split' option to let Tig choose the
51    split orientation (this is the new default behavior).
52  - Add toggle-vertical-split option to change the vertical split value.
53  - Add 'stage-split-chunk' action for splitting chunks in the stage view.
54    Bound to '\' by default. (GH #107)
55  - Add 'back' action bound to '<' by default, which will return the blame view
56    to the previous revision and line after moving e.g. to the parent. (GH #124)
57  - User-defined commands no longer needs to always be prefixed with '!'.
58  - Add auto-configuration for Cygwin (OS name: CYGWIN_NT-6.1). (GH #92)
59  - Add toggling for display files of untracked directories.
60  - Add main view pager mode that reads git-log's '--pretty=raw' data
61    from stdin, e.g. `git reflog --pretty=raw | tig --pretty=raw`.
62  - Document the Git commands supported by the pager mode.  (GH #1)
63  - Optionally specify custom prompt for `%(prompt)` in shell commands, e.g.
64    `bind main B ?git checkout -b "%(prompt Enter new branch name: )"`.
65  - Allow Tig to be started with no default keybindings or built-in user-defined
66    commands by running: `TIGRC_SYSTEM=~/.tigrc.safe tig`. (GH #235)
67  - Open editor at line number for combined diffs e.g. diffs of unmerged files.
68  - Copy `-S`, `-G` and `--grep=` pattern to search buffer so 'find-next' and
69    'find-prev' work as expected.
70  - Support view specific colors: `color stage.diff-add yellow default`.
71  - Add grep view as a front-end to git-grep(1): `tig grep -p strchr`. From
72    within Tig, the key for switching or grepping is bound to 'G' by default.
73  - Key mappings can contain UTF-8 multibyte unicode keys.
74  - Warn about conflicting keybindings using Ctrl, e.g. `<Ctrl-f>` and
75    `<Ctrl-F>`. (GH #218)
76  - Extend key bindings for prompt commands (ie. `bind <keymap> <key> :<prompt>`)
77    to support predefined searches, eg.: `bind stage 2 :?^@@`.
78  - Add :toggle prompt command as a way to manipulate options using keybindings.
79    For example: `bind diff D diff-options --patience --notes`. (GH #69)
80  - Adjust author width automatically. (GH #49)
81  - Make reference label formatting configurable, for example:
82    `set reference-format = (branch) <tags> remote`. (GH #201)
83  - Rename 'branch' view to 'refs' view and show tags. (GH #134)
84  - More informative configuration error messages.
85  - Add completion and history support to the prompt via readline. (GH #185)
86  - Add support for `--graph` and highlight diff stats in the log view.
87  - Add builtin command bindings: `!` to delete branch, `!` to drop stash.
88  - Add %(remote) and %(tag) symbols to complement %(branch).
89  - Git color mappings can be configured in tigrc.
91 Bug fixes:
93  - Fix stash diff display when reloading the stash view after a deleting.
94  - Set the commit reference when opening the blame view from the blob view.
95  - Correctly identify and highlight the remote branch tracked by HEAD.
96  - Pass --no-color after user defined arguments to ensure that colors do not
97    break the output parsing. (GH #191)
98  - Close stdin when pager mode is not supported.
99  - Show newly created branches in the main view. (GH #196)
100  - File with 0 changes breaks diffstat highlighting (GH #215)
101  - Update %(branch) variable in the main view. (GH #223)
102  - Disable graph rendering when either of `--reverse`, `-S`, `-G`, and `--grep`
103    are passed to the main view. (GH #127)
104  - Only refresh views that support it.
105  - Fix author and date annotation of renamed entries in the tree view.
106  - Fix use of unsafe methods in the signal handler. (GH #245)
107  - Fix rendering in non-UTF8 terminals.
108  - Fix stage-update-line by rewriting the diff chunk containing the line instead
109    of using `--unidiff-zero` and a diff context of zero. (GH #130)
110  - Fix status-update to work for untracked directories. (GH #236)
111  - Don't pass log parameters given on the command line to the diff view.
113 tig-1.2.1
114 ---------
116 Incompatibilities:
118  - Move manual and man pages to doc/ directory and rename AsciiDoc files
119    to have .asciidoc as the extension to make them render on GitHub.
121 Improvements:
123  - Show blob sizes in the tree view either as bytes or using binary unit
124    prefixes. Example: `set show-file-size = units`. (GH #163)
125  - Reduce main view memory usage and startup time, especially when revision
126    graph rendering is disabled. (GH #160)
128 Bug fixes:
130  - Fix submodule-related setup to check for non-zero return value from
131    setenv(). (GH #188)
133 tig-1.2
134 -------
136  - Tig now has its own tag on Stack Overflow, where users are invited to
137    ask questions: http://stackoverflow.com/questions/tagged/tig
139 Improvements:
141  - Prompt commands can be bound to keys. For example:
142    `bind diff F :set diff-options = --full-diff`. (GH #69, #116)
143  - Add a diff-options setting for specifying default diff options.
144    Example: `set diff-options = --patience`. (GH #116)
145  - Options in diff-options and blame-options matching Tig browsing state
146    variables are replaced.
147  - Show diff stats as wide as the terminal. (GH #109)
148  - Show line numbers in the branch view. (GH #135)
149  - Add toggles for showing author email or email user names. (GH #115)
150  - Open editor at the selected line by prefixing the file argument with
151    `+<lineno>`. Tested in vi, Vim, Emacs, Nano, Gedit, Geany. Disable
152    by adding `set editor-line-number = no` to ~/.tigrc. (GH #118, #119)
153  - Add toggle-files to control whether to show full commit diff or only
154    the diff concerning the currently selected file, e.g. for blame.
155  - Optionally highlight exceeding characters in long commit titles.
156    The default title max width is 50 characters. Customize using:
157    `set title-overflow = 50` (GH #125)
158  - Add +ESC key bindings. Example: `bind generic ^[v move-page-up` (GH #120)
159  - Create temporary files in TMPDIR, TEMP, or TMP before defaulting to /tmp.
160  - Reenable `tig log` as a subcommand. (GH #146)
161  - Enable tilde expansion in ~/.tigrc "source" commands. (GH #168)
162  - Introduce the stash view, bound to the 'y' keybinding. (GH #169, #174)
164 Bug fixes:
166  - Fix blame and status to work in directories starting with a dot. (GH #172)
167  - Reload current branch name when reloading the status view. (GH #93)
168  - Fix compile errors on old Solaris. (GH #97)
169  - Reload HEAD info when reloading the stage view. (GH #104, #93)
170  - Fix disappearing branch labels after external commands. (GH #148)
171  - Fix diff view display for staged/unstaged changes when using 'd'.
172  - Fix display of status messages when toggling view options. (GH #111)
173  - Fix illegal memory access. (GH #98)
174  - Fix display of all branches label in repos with short branch names.
175  - Fix rendering glitch for branch names.
176  - Do not apply diff styling to untracked files in the stage view. (GH #153)
177  - Fix tree indentation for entries containing combining characters. (GH #170)
178  - Ignore unrepresentable characters when transliterating text for rendering.
179  - Transliterate text to output encoding before trimming it to avoid
180    misalignment. (GH #86)
181  - Introduce a more natural context-sensitive log display. (GH #155)
183 tig-1.1
184 -------
186 Incompatibilities:
188  - Disable diff move/copy detection by default, boosting diff
189    performance on larger projects. Use git config 'diff.renames' option
190    (Git-wide) to set your preferred behavior. Environment variable
191    TIG_DIFF_OPTS can be used to restore the old behavior.
192  - Fix manual keybinding for stage-single-line. (GH #108)
193  - Values set for author-width and filename-width will result in widths
194    one character bigger than previously.
196 Improvements:
198  - Typing a text in the prompt will be interpreted as a Tig command.
199    Prefixing the command with a '!' will execute this system command in
200    an external pager. Entering a single key will execute the
201    corresponding key binding.
202  - Basic support for wrapping long line in pager, diff, and stage views.
203    Enable using: `set wrap-lines = yes`. (GH #2)
204  - User-defined commands prefixed with a '?' means prompt before
205    execution. Example: `bind main B !?git rebase -i %(commit)`.
206  - User-defined commands prefixed with a '<' means exit after execution.
207    Example: `bind main C !<git commit`. (GH #66)
208  - User-defined commands are executed unquoted to support shell commands.
209    Example: `bind generic I !@sh -c "echo -n %(commit) | xclip -selection c"`.
210    (GH #65)
211  - Configure case-insensitive searches using: `set ignore-case = yes`.
212  - Add "deleted mode" line type for better diff coloring.
213  - Open editor when requesting edit action from within a file diff.
214  - Update AX_WITH_CURSES to build under Cygwin.
215  - Improve tigrc(5) documentation. (Debian #682766)
216  - Allow to build on Mac OS 10.7 without the configure script. (GH #25)
217  - Add option to split the view vertically instead of horizontally.
218    Example: `set vertical-split = yes'. (GH #76)
219  - Add 'show-id' and 'id-width' options to configure the display of
220    commit IDs in the main view and ID width in the blame view. (GH #77)
221  - Allow to override Git based encoding to UTF-8 by setting
222    'i18n.commitencoding' or 'gui.encoding'.
223  - Improve autobuild support to track generated files and work with
224    autoreconf 2.61.
225  - Commit IDs are read from stdin when --stdin is given; works for main
226    and diff view, e.g. `tig --no-walk --stdin < cherry-picks.txt`.
227  - Add option to disable focusing of the child view when it's opened.
228    Disable using: `set focus-child = no`. (GH #83)
229  - Allow to open blob related with added content in a diff. (GH #91)
231 Bug fixes:
233  - Fix commit graph regression when a path spec is specified. (GH #53)
234  - Main view: only show staged/unstaged changes for the current branch.
235  - Support submodules created with current version of git. (GH #54)
236  - Fix diff status message for file diffs with no content changes.
237  - Fix parent blaming when Tig is launched in subdirectory. (GH #70)
238  - Do not show deleted branch when reloading the branch view.
240 tig-1.0
241 -------
243 The master repository is git://github.com/jonas/tig.git, and the old
244 master repository (http://jonas.nitro.dk/tig/tig.git) will be retired.
246 Improvements:
248  - Use git-log(1)s default commit ordering. The old behavior can be
249    restored by adding `set commit-order = topo` to ~/.tigrc.
250  - Support staging of single lines. Bound to '1' default. (GH #21)
251  - Use +<lineno> to open the initial view at an arbitrary line. (GH #20)
252  - Add show-notes ~/.tigrc option. Notes are displayed by default.
253  - Support jumping to specific SHAs in the main view.
254  - Decorate replaced commits.
255  - Display line numbers in main view.
256  - Colorize binary diff stats. (GH #17)
257  - Custom colorization of lines matching a string prefix (GH #16).
258    Example configuration: color "Reported-by:" green default
259  - Use Git's color settings for the main, status and diff views.
260    Put `set read-git-colors = no` in ~/.tigrc to disable.
261  - Handle editor options with multiple arguments. (GH #12)
262  - Show filename when running tig blame with copy detection. (GH #19)
263  - Use 'source <path>' command to load additional files from ~/.tigrc
264  - User-defined commands prefixed with '@' are run with no console
265    output, e.g.
267         bind generic 3 !@rm sys$command
269  - Make display of space changes togglable in the diff and stage view.
270    Bound to 'W' by default.
271  - Use per-file encoding specified in gitattributes(5) for blobs and
272    unstaged files.
273  - Obsolete commit-encoding option and pass --encoding=UTF-8 to revision
274    commands.
275  - Main view: show uncommitted changes as staged/unstaged commits.
276    Can be disabled by putting `set show-changes = no` in ~/.tigrc.
277  - Add %(prompt) external command variable, which will prompt for the
278    argument value.
279  - Log information about Git commands when the TIG_TRACE environment
280    variable is set. Example: `TIG_TRACE=/tmp/tig.log tig`
281  - Branch view: Show the title of the last commit.
282  - Increase the author auto-abbreviation threshold to 10. (GH #49)
283  - For old commits show number of years in relative dates. (GH #50)
285 Bug fixes:
287  - Fix navigation behavior when going from branch to main view. (GH #38)
288  - Fix segfault when sorting the tree view by author name.
289  - Fix diff stat navigation for unmodified files with stat changes.
290  - Show branches/refs which names are a substring of the current branch.
291  - Stage view: fix off-by-one error when jumping to a file in a diff
292    with only one file.
293  - Fix diff-header colorization. (GH #15)
294   
295 tig-0.18
296 --------
298 Incompatibilities:
300  - Remove support for the deprecated TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD
301    environment variables.
303 Improvements:
305  - Pressing enter on diff stat file lines will jump to file's diff.
306  - Naïvely color blame IDs to distinguish lines.
307  - Document palette color options used for revision graph and blame IDs.
308  - Add support for blaming diff lines.
309  - Add diff-context option and bindings to increase the diff context in
310    the diff and stage view.
311  - (GH-6) Make blame configurable via extra options passed from the command
312    line and blame-options setting from ~/.tigrc. For example:
313    
314         set blame-options = -C -C -C
316 Bug fixes:
318  - Expand browsing state variables for prompt. (LP #694780, Debian #635546)
319  - Fix segfault when sorting the branch view by author.
320  - Expand %(directory) to . for the root directory. (GH-3)
321  - Accept 'utf-8' for the line-graphics option as indicated in the docs.
322  - Use erasechar() to check for the correct backspace character.
324 tig-0.17
325 --------
327 Improvements:
329  - Start rewrite of the revision graph renderer. Three modes are
330    supported UTF-8, ncurses line graphics, and ASCII. Also, enable
331    revision graph rendering by default.
333 Bug fixes:
335  - Fix ncurses 5.8 issue by passing non-zero column size to newwin().
336  - Fix opening of diffs when browsing branches.
338 tig-0.16.2
339 ----------
341 Bug fixes:
343  - Fix regression causing empty tree view.
344  - Fix set_tabsize() compile error for older versions of ncurses.
346 tig-0.16.1
347 ----------
349 Improvements:
351  - Add scroll-first-col action to jump to the first column. Bound to '|'
352    by default.
353  - Add 'status-untracked-dirs' option to ignore unknown directories
354    contents in the status view. On by default.
356 Bug fixes:
358  - Fix 'tig show <commit>' to show the provided commit.
359  - Fix problem with empty diff views when file specs were passed on the
360    command line.
361  - Fix segfault when starting Tig in pager mode.
363 tig-0.16
364 --------
366 Incompatibilities:
368  - Encode everything internally as UTF-8. This can affect performance,
369    but should in general improve handling of character lengths etc.
370    Also, to properly handle UTF-8 environments use ncurses with wide
371    character support.
372  - The use of TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD environment variables
373    has been deprecated. To allow configuration of the diff view,
374    TIG_DIFF_OPTS can be used.
376 Improvements:
378  - Plug several memory leaks.
379  - Command line arguments are split into diff, revision, and file
380    arguments and made available as %(diffargs), %(revargs), and
381    %(fileargs). Diff view will limit diffs using %(fileargs).
382  - Status view: update the file variable when a line is selected so
383    %(file) works as expected.
384  - Branch view: add %(branch) symbol providing access to the selected
385    branch.
386  - Branch view: add entry to browse all branches (uses git-log's --all
387    flag).
388  - Abbreviation of author names can now be configured and toggled.
389  - Mark detached heads with [HEAD].
390  - Add support for displaying dates in local time.
392 Bug fixes:
394  - Status view: fix usage from sub directories, which was broken by the
395    changes made to support blame view from sub directories.
396  - Fix text expansion to not truncate long lines
397  - Fix parsing of boolean show-date values.
398  - Fix relative date.
399  - Fix unbind to behave as if the keybinding was never defined.
400  - Fix unbind to also cover built-in run requests.
401  - Fix parsing of unknown keymap names.
402  - Blame view: fix parent blame to detect renames. It uses "previous"
403    line info from the blame porcelain output added in Git version 1.6.3.
405 tig-0.15
406 --------
408 Incompatibilities:
410  - Setting the cursor color no longer automatically sets the text to
411    bold. The old 'lazy' behavior was a bug.
412  - Remove check for git-repo-config, which was officially deprecated in
413    Git version 1.5.4. The configure script no longer depends on Git
414    being installed.
416 Improvements:
418  - Provide the manual as a man page named tigmanual(7).
419  - Add ability to toggle between showing shorter dates (without time
420    info) and relative dates. Use 'D' to toggle between date formats.
421  - Show the active (instead of the default) keybindings in the help
422    view. Furthermore, honor the keymap when suggesting actions in the
423    help messages.
424  - Add branch view for choosing which branch to display in the main
425    view. Bound to 'H' by default.
426  - Tree view: show entry to parent directory ('..') when running from
427    subdirectory.
428  - Tree view: sort entries by name, date or author. Toggling is bound to
429    'i' by default, with 'I' controlling whether or not to sort in
430    ascending order.
431  - Make height of the lower view in a split view configurable by setting
432    the 'split-view-height' variable to a number or a percentage.
433    Defaults to 2/3 of the total view height.
434  - Allow multiple text attributes for color commands:
436         color cursor white blue underline bold
438 Bug fixes:
440  - Blame view: fix loading of blame data when opened from the tree view
441    and CWD is not the repo root. (Debian bug 540766)
442  - Tree view: fix searching.
444 tig-0.14.1
445 ----------
447 Improvements:
449  - Status view: improve "on branch" information inspired by the prompt
450    code in Git's bash completion script.
451  - Colors for 256-capable terminals can be specified as colorN.
452  - Entering a number in the prompt will jump to that line number.
453  - Handle core.worktree by setting GIT_DIR and GIT_WORK_TREE.
454  - Make behavior of horizontal scrolling configurable by setting the
455    'horizontal-scroll' variable to a number or a percentage. Defaults to
456    scrolling 50% of the view width.
458 Bug fixes:
460  - Status view: show error when failing to open a file.
461  - Status view: report failures to update a file.
462  - Blame view: fix problem with uninitialized variable.
463  - Blame view: use line number information when loading blame for
464    specific commit.
465  - Fix handling of quoted strings in the config file.
466  - Fix horizontal scrolling glitches.
468 tig-0.14
469 --------
471 Incompatibilities:
473  - The screen-resize action has been deprecated. It had no real use for
474    users and was never meant to be exposed.
475  - The "tree-parent" action was renamed to "parent". Warnings will be
476    emitted for transition.
477  - Remove parsing of deprecated option -S and subcommands log and diff.
478  - The "author" color replaces "main-author". Setting the latter will
479    now set the "author" color.
481 Improvements:
483  - Horizontal scrolling. Bound to Left/Right by default.
484  - Read tigrc(5) options from Git configuration files using the syntax:
486         [tig] show-rev-graph = true
487         [tig "color"] cursor = yellow red bold 
488         [tig "bind"] generic = P parent
490  - Tree view: avoid flickering when updating.
491  - Tree view: annotate entries with commit information.
492  - Tree & blob view: open any blob in an editor.
493  - Stage & main view: restore view position when reloading.
494  - Blame view: load blame for parent commit. For merge commits the parent
495    is queried. Bound to ',' by default via the existing "parent" action.
496  - Abbreviate author names to initials when the width of the author column
497    is below 6 characters.
499 Bug fixes:
501  - Tree view: fix memory corruption bug when updating.
502  - Tree view: improve handling of empty trees.
503  - Status view: fix reverting of unmerged files.
504  - Fix regression for non-UTF-8 locales corrupting the view data.
505  - Fix regression parsing multiple spaces in ~/.tigrc.
507 tig-0.13
508 --------
510 Incompatibilities:
512  - Commands from the environment (e.g. TIG_MAIN_CMD) will no longer have
513    access to shell features, such as subshells and variable expansion.
514    The easiest way to upgrade your configuration is to put such commands
515    in a script file or as a Git alias.
517 Improvements:
519  - Display repository references in the sorted order: tags, heads,
520    tracked remotes, remotes.
521  - Add bash completion for blame.
522  - Tree view: edit files of the current branch.
523  - Run requests: new identifiers %(directory), %(file), and %(ref)
524  - Improve responsiveness and view loading speed by using select(2).
526 Bug fixes:
528  - Separate blame revision and file argument by "--" to avoid problems.
529  - Main view: fix redrawing of the last commit wrt. the revision graph.
530  - Fix waiting for input after executing a run request in pager mode.
531  - Status & stage view: refuse to open directories and deleted files.
532  - Tree view: show error when requesting blame for all non-file entries.
533  - Do not draw loading views, which are not displayed.
534  - Fix launching of mergetool from a subdirectory.
536 tig-0.12.1
537 ----------
539 Improvements:
541  - Status view: revert uncommitted diff chunks and unstaged files with
542    changes. Bound to '!' by default.
543  - Main view: use --topo-order also when rev-list arguments are given on
544    the command line.
545  - Log view: support for refreshing.
547 Bug fixes:
549  - Status view: use ls-files' --exclude-standard so user specific ignore
550    rules are effective. The option was added in Git version 1.5.4.
551  - Stage view: fix assertion failure triggered when updating while
552    status view is not displayed.
553  - Help view: avoid confusion by showing "(no key)" instead of "'?'" for
554    unbound requests.
555  - Reload repository references when refreshing the main (and log) view.
556  - Do not maximize views when refreshing.
558 tig-0.12
559 --------
561 Improvements:
563  - F5 also refreshes the current view.
564  - Allow line graphics to be disabled with new line-graphics option.
565  - Main view: also include the reference names when searching.
566  - Main view: support for refreshing.
567  - Main view: disable boundary commits by default. Use --boundary when
568    they should be shown. (Debian bug 498628)
569  - Stage view: add stage-next action to jump to next diff chunk that can
570    be staged. By default bound to '@'.
571  - Configure: check for the ncurses header files.
572  - Add author-width option to customize the width of the author column.
573    For example, put the following in ~/.tigrc: set author-width = 10
575 Bug fixes:
577  - Fix regression when staging all diff chunks in a section.
578  - Bind the maximize view action to 'O'; it conflicted with the
579    keybinding to launch the merge tool in the status view.
580  - Fix problem with $(cmd) usage in shell code. Some shells (jsh)
581    installed as /bin/sh does not support it.
582  - Do not show incomplete boundary commits when --no-walk is used.
583  - Documentation: Rename gitlink macro to support AsciiDoc 8.2.3.
584  - Ignore pipe reads with errno "Success" reported after a signals,
585    for example when refreshing doing background loading.
587 tig-0.11
588 --------
590 Incompatibilities:
592  - Remove parsing of deprecated options: -g, -l, -d.
593  - The first seen '--' will stop option parsing and is passed to Git
594    instead of breaking out of Tig's option parsing.
596 New features:
598  - Blame view; bound to 'B' by default, reachable from the command line
599    and the tree, status, and stage views.
600  - Blame/main view: allow display of date, author, and references to be
601    toggled on/off. Bound to 'D', 'A', and 'F' respectively.
602  - Add action to maximize the current view.
604 Improvements:
606  - Show the current branch in the status view.
607  - Show local/light-weight tags.
609 Bug fixes:
611  - Fix regressions for the pager mode.
612  - Fix refreshing of the index with working directory info.
614 tig-0.10.1
615 ----------
617 Improvements:
619  - Status view: detect renamed files and show them with 'R'.
620  - Status view: refresh the index to avoid "empty diffs".
621  - Diff view: make diff headers more verbose to include e.g. committer.
622  - Configure: check for the ncursesw library.
624 Bug fixes:
626  - Fix UTF-8 handling for tag names and commit messages.
627  - Fix the check for git-config(1) in configure to handle the case when
628    Git has been installed using a libexecdir which is not in the path.
629  - Fix replacing of SYSCONFDIR when installing from released tarballs.
631 tig-0.10
632 ---------
634 Incompatibilities:
636  - Deprecate most Tig specific command line options to make Tig more
637    compatible with gitk. The deprecated options are: -g, -l, -d, and -S.
638    Use of any of them will result in a warning being printed to stderr.
639    Instead of '-S', use the new 'status' subcommand.
640  - Make man page building depend on DocBook XSL version >= 1.72.0.
641  - Install man pages in $(prefix)/share/man.
642  - Implement the cherry pick action (bound to 'C') using new support for
643    running external commands. This obsoletes the TIG_CHEERY_PICK
644    environment variable
646 New features:
648  - Add support for binding keys to external commands. To bind '.' to
649    running git-commit(1), add the line: "bind generic . !git commit" to
650    your ~/.tigrc. Each command can have replacement string such as
651    %(commit), %(head), and %(blob), which are substituted before the
652    command is run.
653  - Add system-wide configuration file defaulting to $(prefix)/etc/tigrc.
654  - Add the environment variables TIGRC_USER and TIGRC_SYSTEM to change
655    user and system-wide configuration files, respectively.
657 Improvements:
659  - Main view: color the revision graph.
660  - Main view: show boundary commits; they are marked with '^' in the
661    revision graph.
662  - Tree view: add tree-parent action to jump to view of the parent tree.
663    Bound to ',' by default.
664  - Allow the default terminal colors to be overwritten. To use black
665    text on white, add the line "color default white black" to your
666    ~/.tigrc.
667  - Misc. documentation improvements.
669 Bug fixes:
671  - Use git-diff-index(1) and git-diff-files(1) instead of git-diff(1) to
672    avoid running external diff drivers.
673  - Use --no-color when calling git-log(1).
674  - Fix crash when opening mergetool for lines that are not unmerged.
676 tig-0.9.1
677 ---------
679 Incompatibilities:
681  - Make the clean rule to never remove generated documentation files.
682    Use the distclean rule for accomplishing this.
684 New features:
686  - Add support for cherry-picking commits in the main view to the
687    current branch. Bound to 'C' by default.
689 Improvements:
691  - Add support for launching git-mergetool(1) from the status view.
692    Bound to 'M' by default.
693  - Add support for refreshing/reloading the status view
694  - Detect working trees and disable the status view when it is missing.
696 Bug fixes:
698  - Fix iconv() checking in configure.
699  - Fix editor invocation to make paths relative to the project root.
700  - Fix out-of-range current line when reloading the status view.
701  - Include autoconf files in the tarball generated by `make dist`.
703 tig-0.9
704 -------
706 New features:
708  - Add bash completion script for Tig (contrib/tig-completion.bash).
709  - Add optional autoconf-based build infrastructure.
710  - Add stage view for showing changes in the working tree and add
711    support for staging individual diff chunks for commit.
713 Improvements:
715  - Status view: allow all files in a section to be staged for commit.
716  - Status view: Add support for opening files in an editor. Bound to 'e'
717    by default.
718  - Tree view: use a stack for remembering the lines for parent tree.