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