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