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