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