Code

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