Add bash completion for the blame subcommand
[tig] / NEWS
1 Release notes
2 =============
3
4 tig master
5 ----------
6
7 Improvements:
8
9  - Display repository references in the sorted order: tags, heads,
10    tracked remotes, remotes.
11  - Add bash completion for blame.
12
13 tig-0.12.1
14 ----------
15
16 Improvements:
17
18  - Status view: revert uncommitted diff chunks and unstaged files with
19    changes. Bound to '!' by default.
20  - Main view: use --topo-order also when rev-list arguments are given on
21    the command line.
22  - Log view: support for refreshing.
23
24 Bug fixes:
25
26  - Status view: use ls-files' --exclude-standard so user specific ignore
27    rules are effective. The option was added in git version 1.5.4.
28  - Stage view: fix assertion failure triggered when updating while
29    status view is not displayed.
30  - Help view: avoid confusion by showing "(no key)" instead of "'?'" for
31    unbound requests.
32  - Reload repository references when refreshing the main (and log) view.
33  - Do not maximize views when refreshing.
34
35 tig-0.12
36 --------
37
38 Improvements:
39
40  - F5 also refreshes the current view.
41  - Allow line graphics to be disabled with new line-graphics option.
42  - Main view: also include the reference names when searching.
43  - Main view: support for refreshing.
44  - Main view: disable boundary commits by default. Use --boundary when
45    they should be shown. (Debian bug 498628)
46  - Stage view: add stage-next action to jump to next diff chunk that can
47    be staged. By default bound to '@'.
48  - Configure: check for the ncurses header files.
49  - Add author-width option to costumize the width of the author column.
50    For example, put the following in ~/.tigrc: set author-width = 10
51
52 Bug fixes:
53
54  - Fix regression when staging all diff chunks in a section.
55  - Bind the maximize view action to 'O'; it conflicted with the
56    keybinding to launch the merge tool in the status view.
57  - Fix problem with $(cmd) usage in shell code. Some shells (jsh)
58    installed as /bin/sh does not support it.
59  - Do not show incomplete boundary commits when --no-walk is used.
60  - Documentation: Rename gitlink macro to support AsciiDoc 8.2.3.
61  - Ignore pipe reads with errno "Success" reported after a signals,
62    for example when refreshing doing background loading.
63
64 tig-0.11
65 --------
66
67 Incompatibilities:
68
69  - Remove parsing of deprecated options: -g, -l, -d.
70  - The first seen '--' will stop option parsing and is passed to git
71    instead of breaking out of tig's option parsing.
72
73 New features:
74
75  - Blame view; bound to 'B' by default, reachable from the command line
76    and the tree, status, and stage views.
77  - Blame/main view: allow display of date, author, and references to be
78    toggled on/off. Bound to 'D', 'A', and 'F' respectively.
79  - Add action to maximize the current view.
80
81 Improvements:
82
83  - Show the current branch in the status view.
84  - Show local/light-weight tags.
85
86 Bug fixes:
87
88  - Fix regressions for the pager mode.
89  - Fix refreshing of the index with working directory info.
90
91 tig-0.10.1
92 ----------
93
94 Improvements:
95
96  - Status view: detect renamed files and show them with 'R'.
97  - Status view: refresh the index to avoid "empty diffs".
98  - Diff view: make diff headers more verbose to include e.g. committer.
99  - Configure: check for the ncursesw library.
100
101 Bug fixes:
102
103  - Fix UTF8 handling for tag names and commit messages.
104  - Fix the check for git-config(1) in configure to handle the case when
105    git has been installed using a libexecdir which is not in the path.
106  - Fix replacing of SYSCONFDIR when installing from released tarballs.
107
108 tig-0.10
109 ---------
110
111 Incompatibilities:
112
113  - Deprecate most tig specific command line options to make tig more
114    compatible with gitk. The deprecated options are: -g, -l, -d, and -S.
115    Use of any of them will result in a warning being printed to stderr.
116    Instead of '-S', use the new 'status' subcommand.
117  - Make man page building depend on DocBook XSL version >= 1.72.0.
118  - Install man pages in $(prefix)/share/man.
119  - Implement the cherry pick action (bound to 'C') using new support for
120    running external commands. This obsoletes the TIG_CHEERY_PICK
121    environment variable
122
123 New features:
124
125  - Add support for binding keys to external commands. To bind '.' to
126    running git-commit(1), add the line: "bind generic . !git commit" to
127    your ~/.tigrc. Each command can have replacement string such as
128    %(commit), %(head), and %(blob), which are substituted before the
129    command is run.
130  - Add system-wide configuration file defaulting to $(prefix)/etc/tigrc.
131  - Add the environment variables TIGRC_USER and TIGRC_SYSTEM to change
132    user and system-wide configuration files, respectively.
133
134 Improvements:
135
136  - Main view: color the revision graph.
137  - Main view: show boundary commits; they are marked with '^' in the
138    revision graph.
139  - Tree view: add tree-parent action to jump to view of the parent tree.
140    Bound to ',' by default.
141  - Allow the default terminal colors to be overwritten. To use black
142    text on white, add the line "color default white black" to your
143    ~/.tigrc.
144  - Misc. documentation improvements.
145
146 Bug fixes:
147
148  - Use git-diff-index(1) and git-diff-files(1) instead of git-diff(1) to
149    avoid running external diff drivers.
150  - Use --no-color when calling git-log(1).
151  - Fix crash when opening mergetool for lines that are not unmerged.
152
153 tig-0.9.1
154 ---------
155
156 Incompatibilities:
157
158  - Make the clean rule to never remove generated documentation files.
159    Use the distclean rule for accomplishing this.
160
161 New features:
162
163  - Add support for cherry-picking commits in the main view to the
164    current branch. Bound to 'C' by default.
165
166 Improvements:
167
168  - Add support for launching git-mergetool(1) from the status view.
169    Bound to 'M' by default.
170  - Add support for refreshing/reloading the status view
171  - Detect working trees and disable the status view when it is missing.
172
173 Bug fixes:
174
175  - Fix iconv() checking in configure.
176  - Fix editor invocation to make paths relative to the project root.
177  - Fix out-of-range current line when reloading the status view.
178  - Include autoconf files in the tarball generated by `make dist`.
179
180 tig-0.9
181 -------
182
183 New features:
184
185  - Add bash completion script for tig (contrib/tig-completion.bash).
186  - Add optional autoconf-based build infrastructure.
187  - Add stage view for showing changes in the working tree and add
188    support for staging individual diff chunks for commit.
189
190 Improvements:
191
192  - Status view: allow all files in a section to be staged for commit.
193  - Status view: Add support for opening files in an editor. Bound to 'e'
194    by default.
195  - Tree view: use a stack for remembering the lines for parent tree.