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