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