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