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