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