Don't do pointer arithmetic on void*
[tig.git] / NEWS.adoc
blob2799391c59022ac2a93d7bd7f53e9510aa220a4b
1 Release notes
2 =============
4 master
5 ------
7 Improvements:
9  - Improve C99 compliance so Tig compiles with the native compilers on
10    Solaris (SunStudio cc) and AIX (xlc). (GH #380)
11  - Add move-half-page-up and move-half-page-down actions. (GH #323)
12  - Preserve the cursor position when changing the diff context. 
13  - Add option to turn off automatic enabling of `--topo-order` when the graph is
14    shown in the main view. (GH #310)
15  - Add `:exec <flags><args...>` prompt command to execute commands.
16  - Add shorthand for changing the view settings of a single column,
17    eg. `set main-view-author = short`. (GH #318)
18  - Show better diff context info in the stage view.
19  - Add `%(lineno)` state variable. (GH #304)
20  - Use hash table to speed up refs lookup. (GH #350)
21  - Show the file path in the blob view when available.
22  - Speed up the diff view in large repos by loading git-describe info after the
23    diff content has been read. (GH #324)
24  - Add the old graph rendering as an option. (GH #310, #324)
25  - Add `main-options` setting for specifying default main view options.
26    Example: `set main-options = --max-count=1000`. (GH #368)
27  - See `contrib/large-repo.tigrc` for settings that will help to speed up Tig in
28    large repos. (GH #368)
29  - Add `:save-options <file>` prompt command to save config to file. (GH #315)
31 Bug fixes:
33  - Update manual to reflect default keybinding changes. (GH #325)
34  - Fix graph support for `--first-parent`. (GH #326)
35  - Fix off-by-one error when opening editor from the grep view.
36  - Fix status on-branch information.
37  - Fix main view to handle the case when git-log doesn't find any commits.
38  - Fix corner case when parsing diff chunk when lines information is missing.
39  - Ensure main view changes commits are shown right before the current HEAD.
40  - Fix rendering of boundary commits.
41  - Fix compilation with GNU Make 3.80 by removing `$(abspath)`. (GH #362)
42  - Fix config parsing to support shell-like quoting in user-defined command,
43    e.g. `bind generic <Ctrl-f> :!git log -G"%(prompt Prompt: )"` (GH #371)
44  - Make diff meta information colors more consistent with Git. (GH #375)
45  - Fix segfault when updating changes in a maximized stage view opened via the
46    main view. (GH #376)
47  - Handle line number configs where the interval is not specified. (GH #378)
49 tig-2.0.3
50 ---------
52 Improvements:
54  - Add `:save-display <file>` prompt command to save the current display.
55  - Add `:script <file>` prompt command for scripting the Tig UI.
56  - Add test framework and convert existing tests to use it.
57  - Add command-line option for starting in refs view: `tig refs`. (GH #309)
58  - Make blame commit ID colors stable across reloads. (GH #303)
59  - Increase blame ID and graph rendering color palette to 14 colors.
60  - New setting 'split-view-width' controls the width for vertical splits. It
61    takes the width of the right-most view either as a number or a percentage.
62  - Expose settings holding command line argument lists: `file-args`, `rev-args`,
63    and `cmdline-args`. They are mainly intended for testing purposes but also
64    allows to change the filtering arguments dynamically. (GH #306)
65  - Add `log-options` setting for specifying default log view options.
66    Example: `set log-options = --pretty=fuller`.
67  - Use option specific view flags to reload view after `:set` commands.
69 Bug fixes:
71  - Refresh the current view when returning from an external command and
72    `refresh-mode=after-command`. (GH #289)
73  - Fix readline completion.
74  - Fix '/' to `find-next` when readline support is enabled. (GH #302)
75  - Fix readline prompt to correctly handle UTF-8 characters.
76  - Add warnings for more obsolete actions and colors.
77  - Fix passing of commit IDS via stdin to the main view.
78  - Fix commit title overflow drawing for multibyte text. (GH #307)
79  - Fix installation directory permissions.
80  - Handle binary files matches reported by git-grep.
81  - Toggling of "args"-typed options without any arguments will clear the current
82    arguments. Example: `:toggle blame-options`.
83  - Detect custom `pretty.format` settings that break the log view and fallback
84    to use the `medium` format. (GH #225)
85  - Fix invocation of git-diff for the blame view's line tracking. (GH #316)
86  - Fix blame completion of directory names. (GH #317)
87  - Fix display of conflicts in the main view when 'show-changes' is enabled.
88  - Fix off-by-one error when displaying line numbers in the grep view.
89  - When showing the commit graph ensure that either topo, date or author-date
90    commit order is used. (Debian #757692) (GH #238)
92 tig-2.0.2
93 ---------
95 Improvements:
97  - Use git-status for diffing the index.
98  - Group toggle options together in the help view.
100 Bug fixes:
102  - Fix refs, main and grep loading when 'gui.encoding' is set. (GH #287)
103  - Ignore 'gui.encoding' and 'i18n.commitencoding' when set to 'UTF-8'.
104  - Add work-around for missing strndup() on Mac OS X v10.6. (GH #286)
105  - Fix spurious abbreviation of author names. (GH #288)
106  - Don't show empty action groups in the help view.
108 tig-2.0.1
109 ---------
111 Bug fixes:
113  - Fix compilation in watch.c.
114  - Fix parsing of key bindings mapped to '^' and '<'. (GH #280, #282)
116 tig-2.0
117 -------
119 Note to packagers:
121  - Add `.adoc` extension to AsciiDoc files so they show correctly on GitHub.
122    This includes `README`, `INSTALL`, and `NEWS` and files in `doc/` directory.
123  - `BUGS` file has been merged into `README.adoc`.
124  - Default keybindings have been moved to a system-level `tigrc` file, which is
125    installed to ${sysconfdir} by default. The content of the `tigrc` file is
126    included inside the binary as a fall-back. Pass `NO_BUILTIN_TIGRC=y` to not
127    include the system `tigrc` content and reduce the size of the binary.
128  - The example `contrib/tigrc` file (made obsolete by `tigrc`) has been removed.
129  - Source files have been moved to `src` and `include` and `tig.c` was split up.
130  - Build output is less verbose by default; use `make V=1` for old output.
132 Incompatibilities:
134  - In preparation for key combo support, key mappings for symbolic keys (e.g.
135    `Up` and `Down`) must now start with `<` and end with `>`, e.g. `<Up>` and
136    `<Down>`. Furthermore, escape key combos must now use `<Esc>key` instead of
137    `^[key`, and control key mappings must now use `<Ctrl-key>` instead of
138    `^key`.
139  - Only use 'diff-options' for the diff view and introduce '%(cmdlineargs)' to
140    hold non-file and non-revision flags passed on the command line. Affects all
141    user-defined commands that expect '%(diffargs)' to hold both 'diff-options'
142    arguments and those passed on the command line. (GH #228)
143  - Remove built-in keybinding for `git gc`. Add the following line to `~/.tigrc`
144    to restore it: `bind generic G ?git gc`.
145  - To support view specific colors, '.' can no longer be used interchangeably
146    with '-' and '_' in settings names and in particular color names.
147  - Replace 'stage-next' action with prompt command using a predefined search
148    (see below) and add binding (`@` by default) to also work in the diff view.
149  - Most view display options must now be set via the new `*-view` options in
150    tigrc. Existing options are no longer recognized, but a warning is shown.
151  - Remap default bindings to have more consistent convention: use lower-case
152    keys primarily for view switching and non-destructive actions, use upper-case
153    keys for view-specific actions including user-defined commands. To preserve
154    old default key bindings see `contrib/bindings-v1.x.tigrc`. (GH #257)
156 Improvements:
158  - Add mouse support: scroll view, click line to move cursor, double click line
159    (or click again) to "Enter" cursor line, e.g. open commit diff. Disabled by
160    default, since it makes text selection less intuitive. If you enable this
161    remember to hold down Shift (or Option on Mac) when selecting text.
162  - Rewrite and improve the rendering of the commit graph. (GH #144, #46)
163  - Add completion and history support to the prompt via readline. (GH #185)
164  - Options can be configured and toggled individually for each view. Use the new
165    view settings to configure the order and display options for each view
166    columns. See system tigrc and tigrc(5) for examples. (GH #89, #222)
167  - Add grep view as a front-end to git-grep(1): `tig grep -p strchr`. From
168    within Tig, the key for switching or grepping is bound to 'g' by default.
169  - Rename 'branch' view to 'refs' view and show tags. (GH #134)
170  - Add main view pager mode that reads git-log's '--pretty=raw' data
171    from stdin, e.g. `git reflog --pretty=raw | tig --pretty=raw`.
172  - Add support for `--graph` and highlight diff stats in the log view.
173  - Add default command bindings: `!` to delete branch, `!` to drop stash.
174  - Add 'stage-split-chunk' action for splitting chunks in the stage view.
175    Bound to '\' by default. (GH #107)
176  - Add 'back' action bound to '<' by default, which will return the blame view
177    to the previous revision and line after moving e.g. to the parent. (GH #124)
178  - Auto-refresh views based on watched repository changes. Configure by setting
179    `refresh-mode` to 'manual', 'auto', 'after-command', or 'periodic'. (GH #190)
180  - All default settings are in well-documented system `tigrc`.
181  - Add `:toggle` prompt command to manipulate options using keybindings. For
182    example: `bind diff D :toggle diff-options --patience --notes`. (GH #69)
183  - Add a new "auto" value for the 'vertical-split' option to let Tig choose the
184    split orientation (this is the new default behavior). Can be toggled.
185  - Make it possible to toggle the display of files in untracked directories.
186  - Allow Tig to be started with no default configuration by specifying an
187    alternative system `tigrc` file, e.g.: `TIGRC_SYSTEM=~/.tigrc.safe tig`. Set
188    `TIGRC_SYSTEM` to the empty string to use built-in configuration instead of
189  - Key mappings can contain UTF-8 multibyte unicode keys.
190  - Warn about conflicting keybindings using Ctrl, e.g. `<Ctrl-f>` and
191    `<Ctrl-F>`. (GH #218)
192  - Extend key bindings for prompt commands (ie. `bind <keymap> <key> :<prompt>`)
193    to support predefined searches, eg.: `bind stage 2 :?^@@`.
194  - Git color mappings can be configured in tigrc.
195  - More informative configuration error messages.
196  - Make reference label formatting configurable, for example:
197    `set reference-format = (branch) <tags> remote`. (GH #201)
198  - Adjust author width and other view columns automatically. (GH #49)
199  - Support view specific colors: `color stage.diff-add yellow default`.
200  - Copy `-S`, `-G` and `--grep=` pattern to search buffer so 'find-next' and
201    'find-prev' work as expected.
202  - Optionally specify custom prompt for `%(prompt)` in shell commands, e.g.
203    `bind main B ?git checkout -b "%(prompt Enter new branch name: )"`.
204  - Add `%(remote)` and `%(tag)` symbols to complement `%(branch)`.
205  - User-defined commands can now be prefixed with any of the supported flags,
206    e.g. `?git checkout -b %(branch)`.
207  - Open editor at line number for combined diffs e.g. diffs of unmerged files.
208  - Add build configuration for Cygwin (OS name: CYGWIN_NT-6.1). (GH #92)
209  - Document the Git commands supported by the pager mode.  (GH #1)
210    system `tigrc` configuration. (GH #235)
212 Bug fixes:
214  - Fix stash diff display when reloading the stash view after a deleting.
215  - Set the commit reference when opening the blame view from the blob view.
216  - Correctly identify and highlight the remote branch tracked by HEAD.
217  - Pass --no-color after user defined arguments to ensure that colors do not
218    break the output parsing. (GH #191)
219  - Close stdin when pager mode is not supported.
220  - Show newly created branches in the main view. (GH #196)
221  - File with 0 changes breaks diffstat highlighting (GH #215)
222  - Update %(branch) variable in the main view. (GH #223)
223  - Disable graph rendering when either of `--reverse`, `-S`, `-G`, and `--grep`
224    are passed to the main view. (GH #127)
225  - Only refresh views that support it.
226  - Fix author and date annotation of renamed entries in the tree view.
227  - Fix use of unsafe methods in the signal handler. (GH #245)
228  - Fix rendering in non-UTF8 terminals.
229  - Fix stage-update-line by rewriting the diff chunk containing the line instead
230    of using `--unidiff-zero` and a diff context of zero. (GH #130)
231  - Fix status-update to work for untracked directories. (GH #236)
232  - Don't pass log parameters given on the command line to the diff view.
234 tig-1.2.1
235 ---------
237 Incompatibilities:
239  - Move manual and man pages to doc/ directory and rename AsciiDoc files
240    to have .asciidoc as the extension to make them render on GitHub.
242 Improvements:
244  - Show blob sizes in the tree view either as bytes or using binary unit
245    prefixes. Example: `set show-file-size = units`. (GH #163)
246  - Reduce main view memory usage and startup time, especially when revision
247    graph rendering is disabled. (GH #160)
249 Bug fixes:
251  - Fix submodule-related setup to check for non-zero return value from
252    setenv(). (GH #188)
254 tig-1.2
255 -------
257  - Tig now has its own tag on Stack Overflow, where users are invited to
258    ask questions: http://stackoverflow.com/questions/tagged/tig
260 Improvements:
262  - Prompt commands can be bound to keys. For example:
263    `bind diff F :set diff-options = --full-diff`. (GH #69, #116)
264  - Add a diff-options setting for specifying default diff options.
265    Example: `set diff-options = --patience`. (GH #116)
266  - Options in diff-options and blame-options matching Tig browsing state
267    variables are replaced.
268  - Show diff stats as wide as the terminal. (GH #109)
269  - Show line numbers in the branch view. (GH #135)
270  - Add toggles for showing author email or email user names. (GH #115)
271  - Open editor at the selected line by prefixing the file argument with
272    `+<lineno>`. Tested in vi, Vim, Emacs, Nano, Gedit, Geany. Disable
273    by adding `set editor-line-number = no` to ~/.tigrc. (GH #118, #119)
274  - Add toggle-files to control whether to show full commit diff or only
275    the diff concerning the currently selected file, e.g. for blame.
276  - Optionally highlight exceeding characters in long commit titles.
277    The default title max width is 50 characters. Customize using:
278    `set title-overflow = 50` (GH #125)
279  - Add +ESC key bindings. Example: `bind generic ^[v move-page-up` (GH #120)
280  - Create temporary files in TMPDIR, TEMP, or TMP before defaulting to /tmp.
281  - Reenable `tig log` as a subcommand. (GH #146)
282  - Enable tilde expansion in ~/.tigrc "source" commands. (GH #168)
283  - Introduce the stash view, bound to the 'y' keybinding. (GH #169, #174)
285 Bug fixes:
287  - Fix blame and status to work in directories starting with a dot. (GH #172)
288  - Reload current branch name when reloading the status view. (GH #93)
289  - Fix compile errors on old Solaris. (GH #97)
290  - Reload HEAD info when reloading the stage view. (GH #104, #93)
291  - Fix disappearing branch labels after external commands. (GH #148)
292  - Fix diff view display for staged/unstaged changes when using 'd'.
293  - Fix display of status messages when toggling view options. (GH #111)
294  - Fix illegal memory access. (GH #98)
295  - Fix display of all branches label in repos with short branch names.
296  - Fix rendering glitch for branch names.
297  - Do not apply diff styling to untracked files in the stage view. (GH #153)
298  - Fix tree indentation for entries containing combining characters. (GH #170)
299  - Ignore unrepresentable characters when transliterating text for rendering.
300  - Transliterate text to output encoding before trimming it to avoid
301    misalignment. (GH #86)
302  - Introduce a more natural context-sensitive log display. (GH #155)
304 tig-1.1
305 -------
307 Incompatibilities:
309  - Disable diff move/copy detection by default, boosting diff
310    performance on larger projects. Use git config 'diff.renames' option
311    (Git-wide) to set your preferred behavior. Environment variable
312    TIG_DIFF_OPTS can be used to restore the old behavior.
313  - Fix manual keybinding for stage-single-line. (GH #108)
314  - Values set for author-width and filename-width will result in widths
315    one character bigger than previously.
317 Improvements:
319  - Typing a text in the prompt will be interpreted as a Tig command.
320    Prefixing the command with a '!' will execute this system command in
321    an external pager. Entering a single key will execute the
322    corresponding key binding.
323  - Basic support for wrapping long line in pager, diff, and stage views.
324    Enable using: `set wrap-lines = yes`. (GH #2)
325  - User-defined commands prefixed with a '?' means prompt before
326    execution. Example: `bind main B !?git rebase -i %(commit)`.
327  - User-defined commands prefixed with a '<' means exit after execution.
328    Example: `bind main C !<git commit`. (GH #66)
329  - User-defined commands are executed unquoted to support shell commands.
330    Example: `bind generic I !@sh -c "echo -n %(commit) | xclip -selection c"`.
331    (GH #65)
332  - Configure case-insensitive searches using: `set ignore-case = yes`.
333  - Add "deleted mode" line type for better diff coloring.
334  - Open editor when requesting edit action from within a file diff.
335  - Update AX_WITH_CURSES to build under Cygwin.
336  - Improve tigrc(5) documentation. (Debian #682766)
337  - Allow to build on Mac OS 10.7 without the configure script. (GH #25)
338  - Add option to split the view vertically instead of horizontally.
339    Example: `set vertical-split = yes'. (GH #76)
340  - Add 'show-id' and 'id-width' options to configure the display of
341    commit IDs in the main view and ID width in the blame view. (GH #77)
342  - Allow to override Git based encoding to UTF-8 by setting
343    'i18n.commitencoding' or 'gui.encoding'.
344  - Improve autobuild support to track generated files and work with
345    autoreconf 2.61.
346  - Commit IDs are read from stdin when --stdin is given; works for main
347    and diff view, e.g. `tig --no-walk --stdin < cherry-picks.txt`.
348  - Add option to disable focusing of the child view when it's opened.
349    Disable using: `set focus-child = no`. (GH #83)
350  - Allow to open blob related with added content in a diff. (GH #91)
352 Bug fixes:
354  - Fix commit graph regression when a path spec is specified. (GH #53)
355  - Main view: only show staged/unstaged changes for the current branch.
356  - Support submodules created with current version of git. (GH #54)
357  - Fix diff status message for file diffs with no content changes.
358  - Fix parent blaming when Tig is launched in subdirectory. (GH #70)
359  - Do not show deleted branch when reloading the branch view.
361 tig-1.0
362 -------
364 The master repository is git://github.com/jonas/tig.git, and the old
365 master repository (http://jonas.nitro.dk/tig/tig.git) will be retired.
367 Improvements:
369  - Use git-log(1)s default commit ordering. The old behavior can be
370    restored by adding `set commit-order = topo` to ~/.tigrc.
371  - Support staging of single lines. Bound to '1' default. (GH #21)
372  - Use +<lineno> to open the initial view at an arbitrary line. (GH #20)
373  - Add show-notes ~/.tigrc option. Notes are displayed by default.
374  - Support jumping to specific SHAs in the main view.
375  - Decorate replaced commits.
376  - Display line numbers in main view.
377  - Colorize binary diff stats. (GH #17)
378  - Custom colorization of lines matching a string prefix (GH #16).
379    Example configuration: color "Reported-by:" green default
380  - Use Git's color settings for the main, status and diff views.
381    Put `set read-git-colors = no` in ~/.tigrc to disable.
382  - Handle editor options with multiple arguments. (GH #12)
383  - Show filename when running tig blame with copy detection. (GH #19)
384  - Use 'source <path>' command to load additional files from ~/.tigrc
385  - User-defined commands prefixed with '@' are run with no console
386    output, e.g.
388         bind generic 3 !@rm sys$command
390  - Make display of space changes togglable in the diff and stage view.
391    Bound to 'W' by default.
392  - Use per-file encoding specified in gitattributes(5) for blobs and
393    unstaged files.
394  - Obsolete commit-encoding option and pass --encoding=UTF-8 to revision
395    commands.
396  - Main view: show uncommitted changes as staged/unstaged commits.
397    Can be disabled by putting `set show-changes = no` in ~/.tigrc.
398  - Add %(prompt) external command variable, which will prompt for the
399    argument value.
400  - Log information about Git commands when the TIG_TRACE environment
401    variable is set. Example: `TIG_TRACE=/tmp/tig.log tig`
402  - Branch view: Show the title of the last commit.
403  - Increase the author auto-abbreviation threshold to 10. (GH #49)
404  - For old commits show number of years in relative dates. (GH #50)
406 Bug fixes:
408  - Fix navigation behavior when going from branch to main view. (GH #38)
409  - Fix segfault when sorting the tree view by author name.
410  - Fix diff stat navigation for unmodified files with stat changes.
411  - Show branches/refs which names are a substring of the current branch.
412  - Stage view: fix off-by-one error when jumping to a file in a diff
413    with only one file.
414  - Fix diff-header colorization. (GH #15)
415   
416 tig-0.18
417 --------
419 Incompatibilities:
421  - Remove support for the deprecated TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD
422    environment variables.
424 Improvements:
426  - Pressing enter on diff stat file lines will jump to file's diff.
427  - Naïvely color blame IDs to distinguish lines.
428  - Document palette color options used for revision graph and blame IDs.
429  - Add support for blaming diff lines.
430  - Add diff-context option and bindings to increase the diff context in
431    the diff and stage view.
432  - (GH-6) Make blame configurable via extra options passed from the command
433    line and blame-options setting from ~/.tigrc. For example:
434    
435         set blame-options = -C -C -C
437 Bug fixes:
439  - Expand browsing state variables for prompt. (LP #694780, Debian #635546)
440  - Fix segfault when sorting the branch view by author.
441  - Expand %(directory) to . for the root directory. (GH-3)
442  - Accept 'utf-8' for the line-graphics option as indicated in the docs.
443  - Use erasechar() to check for the correct backspace character.
445 tig-0.17
446 --------
448 Improvements:
450  - Start rewrite of the revision graph renderer. Three modes are
451    supported UTF-8, ncurses line graphics, and ASCII. Also, enable
452    revision graph rendering by default.
454 Bug fixes:
456  - Fix ncurses 5.8 issue by passing non-zero column size to newwin().
457  - Fix opening of diffs when browsing branches.
459 tig-0.16.2
460 ----------
462 Bug fixes:
464  - Fix regression causing empty tree view.
465  - Fix set_tabsize() compile error for older versions of ncurses.
467 tig-0.16.1
468 ----------
470 Improvements:
472  - Add scroll-first-col action to jump to the first column. Bound to '|'
473    by default.
474  - Add 'status-untracked-dirs' option to ignore unknown directories
475    contents in the status view. On by default.
477 Bug fixes:
479  - Fix 'tig show <commit>' to show the provided commit.
480  - Fix problem with empty diff views when file specs were passed on the
481    command line.
482  - Fix segfault when starting Tig in pager mode.
484 tig-0.16
485 --------
487 Incompatibilities:
489  - Encode everything internally as UTF-8. This can affect performance,
490    but should in general improve handling of character lengths etc.
491    Also, to properly handle UTF-8 environments use ncurses with wide
492    character support.
493  - The use of TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD environment variables
494    has been deprecated. To allow configuration of the diff view,
495    TIG_DIFF_OPTS can be used.
497 Improvements:
499  - Plug several memory leaks.
500  - Command line arguments are split into diff, revision, and file
501    arguments and made available as %(diffargs), %(revargs), and
502    %(fileargs). Diff view will limit diffs using %(fileargs).
503  - Status view: update the file variable when a line is selected so
504    %(file) works as expected.
505  - Branch view: add %(branch) symbol providing access to the selected
506    branch.
507  - Branch view: add entry to browse all branches (uses git-log's --all
508    flag).
509  - Abbreviation of author names can now be configured and toggled.
510  - Mark detached heads with [HEAD].
511  - Add support for displaying dates in local time.
513 Bug fixes:
515  - Status view: fix usage from sub directories, which was broken by the
516    changes made to support blame view from sub directories.
517  - Fix text expansion to not truncate long lines
518  - Fix parsing of boolean show-date values.
519  - Fix relative date.
520  - Fix unbind to behave as if the keybinding was never defined.
521  - Fix unbind to also cover built-in run requests.
522  - Fix parsing of unknown keymap names.
523  - Blame view: fix parent blame to detect renames. It uses "previous"
524    line info from the blame porcelain output added in Git version 1.6.3.
526 tig-0.15
527 --------
529 Incompatibilities:
531  - Setting the cursor color no longer automatically sets the text to
532    bold. The old 'lazy' behavior was a bug.
533  - Remove check for git-repo-config, which was officially deprecated in
534    Git version 1.5.4. The configure script no longer depends on Git
535    being installed.
537 Improvements:
539  - Provide the manual as a man page named tigmanual(7).
540  - Add ability to toggle between showing shorter dates (without time
541    info) and relative dates. Use 'D' to toggle between date formats.
542  - Show the active (instead of the default) keybindings in the help
543    view. Furthermore, honor the keymap when suggesting actions in the
544    help messages.
545  - Add branch view for choosing which branch to display in the main
546    view. Bound to 'H' by default.
547  - Tree view: show entry to parent directory ('..') when running from
548    subdirectory.
549  - Tree view: sort entries by name, date or author. Toggling is bound to
550    'i' by default, with 'I' controlling whether or not to sort in
551    ascending order.
552  - Make height of the lower view in a split view configurable by setting
553    the 'split-view-height' variable to a number or a percentage.
554    Defaults to 2/3 of the total view height.
555  - Allow multiple text attributes for color commands:
557         color cursor white blue underline bold
559 Bug fixes:
561  - Blame view: fix loading of blame data when opened from the tree view
562    and CWD is not the repo root. (Debian bug 540766)
563  - Tree view: fix searching.
565 tig-0.14.1
566 ----------
568 Improvements:
570  - Status view: improve "on branch" information inspired by the prompt
571    code in Git's bash completion script.
572  - Colors for 256-capable terminals can be specified as colorN.
573  - Entering a number in the prompt will jump to that line number.
574  - Handle core.worktree by setting GIT_DIR and GIT_WORK_TREE.
575  - Make behavior of horizontal scrolling configurable by setting the
576    'horizontal-scroll' variable to a number or a percentage. Defaults to
577    scrolling 50% of the view width.
579 Bug fixes:
581  - Status view: show error when failing to open a file.
582  - Status view: report failures to update a file.
583  - Blame view: fix problem with uninitialized variable.
584  - Blame view: use line number information when loading blame for
585    specific commit.
586  - Fix handling of quoted strings in the config file.
587  - Fix horizontal scrolling glitches.
589 tig-0.14
590 --------
592 Incompatibilities:
594  - The screen-resize action has been deprecated. It had no real use for
595    users and was never meant to be exposed.
596  - The "tree-parent" action was renamed to "parent". Warnings will be
597    emitted for transition.
598  - Remove parsing of deprecated option -S and subcommands log and diff.
599  - The "author" color replaces "main-author". Setting the latter will
600    now set the "author" color.
602 Improvements:
604  - Horizontal scrolling. Bound to Left/Right by default.
605  - Read tigrc(5) options from Git configuration files using the syntax:
607         [tig] show-rev-graph = true
608         [tig "color"] cursor = yellow red bold 
609         [tig "bind"] generic = P parent
611  - Tree view: avoid flickering when updating.
612  - Tree view: annotate entries with commit information.
613  - Tree & blob view: open any blob in an editor.
614  - Stage & main view: restore view position when reloading.
615  - Blame view: load blame for parent commit. For merge commits the parent
616    is queried. Bound to ',' by default via the existing "parent" action.
617  - Abbreviate author names to initials when the width of the author column
618    is below 6 characters.
620 Bug fixes:
622  - Tree view: fix memory corruption bug when updating.
623  - Tree view: improve handling of empty trees.
624  - Status view: fix reverting of unmerged files.
625  - Fix regression for non-UTF-8 locales corrupting the view data.
626  - Fix regression parsing multiple spaces in ~/.tigrc.
628 tig-0.13
629 --------
631 Incompatibilities:
633  - Commands from the environment (e.g. TIG_MAIN_CMD) will no longer have
634    access to shell features, such as subshells and variable expansion.
635    The easiest way to upgrade your configuration is to put such commands
636    in a script file or as a Git alias.
638 Improvements:
640  - Display repository references in the sorted order: tags, heads,
641    tracked remotes, remotes.
642  - Add bash completion for blame.
643  - Tree view: edit files of the current branch.
644  - Run requests: new identifiers %(directory), %(file), and %(ref)
645  - Improve responsiveness and view loading speed by using select(2).
647 Bug fixes:
649  - Separate blame revision and file argument by "--" to avoid problems.
650  - Main view: fix redrawing of the last commit wrt. the revision graph.
651  - Fix waiting for input after executing a run request in pager mode.
652  - Status & stage view: refuse to open directories and deleted files.
653  - Tree view: show error when requesting blame for all non-file entries.
654  - Do not draw loading views, which are not displayed.
655  - Fix launching of mergetool from a subdirectory.
657 tig-0.12.1
658 ----------
660 Improvements:
662  - Status view: revert uncommitted diff chunks and unstaged files with
663    changes. Bound to '!' by default.
664  - Main view: use --topo-order also when rev-list arguments are given on
665    the command line.
666  - Log view: support for refreshing.
668 Bug fixes:
670  - Status view: use ls-files' --exclude-standard so user specific ignore
671    rules are effective. The option was added in Git version 1.5.4.
672  - Stage view: fix assertion failure triggered when updating while
673    status view is not displayed.
674  - Help view: avoid confusion by showing "(no key)" instead of "'?'" for
675    unbound requests.
676  - Reload repository references when refreshing the main (and log) view.
677  - Do not maximize views when refreshing.
679 tig-0.12
680 --------
682 Improvements:
684  - F5 also refreshes the current view.
685  - Allow line graphics to be disabled with new line-graphics option.
686  - Main view: also include the reference names when searching.
687  - Main view: support for refreshing.
688  - Main view: disable boundary commits by default. Use --boundary when
689    they should be shown. (Debian bug 498628)
690  - Stage view: add stage-next action to jump to next diff chunk that can
691    be staged. By default bound to '@'.
692  - Configure: check for the ncurses header files.
693  - Add author-width option to customize the width of the author column.
694    For example, put the following in ~/.tigrc: set author-width = 10
696 Bug fixes:
698  - Fix regression when staging all diff chunks in a section.
699  - Bind the maximize view action to 'O'; it conflicted with the
700    keybinding to launch the merge tool in the status view.
701  - Fix problem with $(cmd) usage in shell code. Some shells (jsh)
702    installed as /bin/sh does not support it.
703  - Do not show incomplete boundary commits when --no-walk is used.
704  - Documentation: Rename gitlink macro to support AsciiDoc 8.2.3.
705  - Ignore pipe reads with errno "Success" reported after a signals,
706    for example when refreshing doing background loading.
708 tig-0.11
709 --------
711 Incompatibilities:
713  - Remove parsing of deprecated options: -g, -l, -d.
714  - The first seen '--' will stop option parsing and is passed to Git
715    instead of breaking out of Tig's option parsing.
717 New features:
719  - Blame view; bound to 'B' by default, reachable from the command line
720    and the tree, status, and stage views.
721  - Blame/main view: allow display of date, author, and references to be
722    toggled on/off. Bound to 'D', 'A', and 'F' respectively.
723  - Add action to maximize the current view.
725 Improvements:
727  - Show the current branch in the status view.
728  - Show local/light-weight tags.
730 Bug fixes:
732  - Fix regressions for the pager mode.
733  - Fix refreshing of the index with working directory info.
735 tig-0.10.1
736 ----------
738 Improvements:
740  - Status view: detect renamed files and show them with 'R'.
741  - Status view: refresh the index to avoid "empty diffs".
742  - Diff view: make diff headers more verbose to include e.g. committer.
743  - Configure: check for the ncursesw library.
745 Bug fixes:
747  - Fix UTF-8 handling for tag names and commit messages.
748  - Fix the check for git-config(1) in configure to handle the case when
749    Git has been installed using a libexecdir which is not in the path.
750  - Fix replacing of SYSCONFDIR when installing from released tarballs.
752 tig-0.10
753 ---------
755 Incompatibilities:
757  - Deprecate most Tig specific command line options to make Tig more
758    compatible with gitk. The deprecated options are: -g, -l, -d, and -S.
759    Use of any of them will result in a warning being printed to stderr.
760    Instead of '-S', use the new 'status' subcommand.
761  - Make man page building depend on DocBook XSL version >= 1.72.0.
762  - Install man pages in $(prefix)/share/man.
763  - Implement the cherry pick action (bound to 'C') using new support for
764    running external commands. This obsoletes the TIG_CHEERY_PICK
765    environment variable
767 New features:
769  - Add support for binding keys to external commands. To bind '.' to
770    running git-commit(1), add the line: "bind generic . !git commit" to
771    your ~/.tigrc. Each command can have replacement string such as
772    %(commit), %(head), and %(blob), which are substituted before the
773    command is run.
774  - Add system-wide configuration file defaulting to $(prefix)/etc/tigrc.
775  - Add the environment variables TIGRC_USER and TIGRC_SYSTEM to change
776    user and system-wide configuration files, respectively.
778 Improvements:
780  - Main view: color the revision graph.
781  - Main view: show boundary commits; they are marked with '^' in the
782    revision graph.
783  - Tree view: add tree-parent action to jump to view of the parent tree.
784    Bound to ',' by default.
785  - Allow the default terminal colors to be overwritten. To use black
786    text on white, add the line "color default white black" to your
787    ~/.tigrc.
788  - Misc. documentation improvements.
790 Bug fixes:
792  - Use git-diff-index(1) and git-diff-files(1) instead of git-diff(1) to
793    avoid running external diff drivers.
794  - Use --no-color when calling git-log(1).
795  - Fix crash when opening mergetool for lines that are not unmerged.
797 tig-0.9.1
798 ---------
800 Incompatibilities:
802  - Make the clean rule to never remove generated documentation files.
803    Use the distclean rule for accomplishing this.
805 New features:
807  - Add support for cherry-picking commits in the main view to the
808    current branch. Bound to 'C' by default.
810 Improvements:
812  - Add support for launching git-mergetool(1) from the status view.
813    Bound to 'M' by default.
814  - Add support for refreshing/reloading the status view
815  - Detect working trees and disable the status view when it is missing.
817 Bug fixes:
819  - Fix iconv() checking in configure.
820  - Fix editor invocation to make paths relative to the project root.
821  - Fix out-of-range current line when reloading the status view.
822  - Include autoconf files in the tarball generated by `make dist`.
824 tig-0.9
825 -------
827 New features:
829  - Add bash completion script for Tig (contrib/tig-completion.bash).
830  - Add optional autoconf-based build infrastructure.
831  - Add stage view for showing changes in the working tree and add
832    support for staging individual diff chunks for commit.
834 Improvements:
836  - Status view: allow all files in a section to be staged for commit.
837  - Status view: Add support for opening files in an editor. Bound to 'e'
838    by default.
839  - Tree view: use a stack for remembering the lines for parent tree.