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