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