Hi,
I am pleased to announce Tig version 2.5.10 aiming mainly at fixing
a regression introduced in 2.5.9 related to colouring in the status
view. See the release notes below for a detailed list of changes.
What is Tig?
------------
Tig is an ncurses-based text-mode interface for git. It functions mainly
as a Git repository browser, but can also assist in staging changes for
commit at chunk level and act as a pager for output from various Git
commands.
- Homepage:https://jonas.github.io/tig/
- Manual:https://jonas.github.io/tig/doc/manual.html
- Tarballs:https://github.com/jonas/tig/releases
- Gitter:https://gitter.im/jonas/tig
- Q&A:https://stackoverflow.com/questions/tagged/tig
Release notes
-------------
Bug fixes:
- Fix `stat-*` coloring file names in `tig status` instead of just
markers (regression in 2.5.9). (#1326)
- Fix keybinding with +[cmd] not triggering view refreshing. (#1324)
- Fix reopening the blame view from the main view.
- Fix editing when stdin is redirected. (#1330)
- Fix compilation warnings with ncurses 6.5.
- Make `Ctrl-C` to kill only the command running in the foreground.
(#1331)
Change summary
--------------
The diffstat and log summary for changes made in this release.
INSTALL.adoc | 4 ++--
Makefile | 2 +-
NEWS.adoc | 13 +++++++++++++
include/tig/io.h | 2 +-
include/tig/tig.h | 2 ++
src/blame.c | 11 +++++++++--
src/display.c | 15 +++++++--------
src/draw.c | 12 +++++++-----
src/io.c | 18 +++++++++++++++---
src/main.c | 8 ++++++++
src/status.c | 4 ++--
src/tree.c | 5 ++---
src/view.c | 5 +++--
13 files changed, 72 insertions(+), 29 deletions(-)
Thomas Koutcher (6):
Fix keybinding with +[cmd] not triggering view refreshing (#1324)
Fix reopening the blame view from the main view
Fix editing when stdin is redirected
Fix compilation warnings with ncurses 6.5
Make `Ctrl-C` to kill only the command running in the foreground
tig-2.5.10
xaizek (1):
Fix incorrect filename coloring in tig status (#1326)
--
Thomas Koutcher