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