Skip to content

Commit 4bfbf21

Browse files
committed
Prepare for 1.14.1 release
1 parent 13efe2a commit 4bfbf21

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

Diff for: AUTHORS

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ git log. For a complete list, you could try:
77

88
git log --pretty="format:%an <%ae>" | sort -f | uniq
99

10-
Per 2024-01-23, this yields the following (sans duplicates):
10+
Per 2024-06-17, this yields the following (sans duplicates):
1111

1212
1313
@@ -25,14 +25,15 @@ Michael Vetter <[email protected]>
2525
Mikel Olasagasti Uranga <[email protected]>
2626
2727
28+
2829
Ricardo Arguello <[email protected]>
2930
Robert-André Mauchin <[email protected]>
3031
Roman Wagner <[email protected]>
3132
Samuel Thibault <[email protected]>
33+
Simon Law <[email protected]>
3234
3335
Sotiris Papatheodorou <[email protected]>
3436
Sudhakar Verma <[email protected]>
3537
Tim Gates <[email protected]>
3638
Wu Zhenyu <[email protected]>
3739
Øyvind Kolås <[email protected]>
38-

Diff for: NEWS

+22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
Chafa releases
22
==============
33

4+
1.14.1 (2024-06-17)
5+
-------------------
6+
7+
This release brings bug fixes, compatibility improvements and some performance
8+
enhancements.
9+
10+
* A JPEG XL (.jxl) loader was added using libjxl (github#188, @oupson).
11+
12+
* Added detection of the Eat "Emulate a Terminal" Emacs terminal (Simon Law).
13+
14+
* Symbols mode was sped up significantly on AVX2-capable platforms.
15+
16+
* Tests: A new test driver was added. It will log the specifics of any failures,
17+
which aids debugging of CI builds (issue found by Mo Zhou).
18+
19+
* Bug fixes:
20+
github#189 Fix installation of zsh completions (Felix Yan).
21+
github#190 Fix a small memory leak in ChafaCanvas (found by @jstkdng).
22+
github#192 Wrong sixel padding in some circumstances (found by @dnkl).
23+
github#195 tmux passthrough enabled when already set (found by Ron Lau).
24+
github#196 iTerm mode not enabled automatically (found by @sudo-burger).
25+
426
1.14.0 (2024-01-08)
527
-------------------
628

Diff for: chafa/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ noinst_LTLIBRARIES =
99
noinst_HEADERS =
1010

1111
libchafa_la_CFLAGS = $(LIBCHAFA_CFLAGS) $(GLIB_CFLAGS) -DCHAFA_COMPILATION
12-
libchafa_la_LDFLAGS = $(LIBCHAFA_LDFLAGS) -no-undefined -version-info 9:0:9
12+
libchafa_la_LDFLAGS = $(LIBCHAFA_LDFLAGS) -no-undefined -version-info 9:1:9
1313
libchafa_la_LIBADD = $(GLIB_LIBS) internal/libchafa-internal.la -lm
1414

1515
libchafa_la_SOURCES = \

Diff for: configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dnl --- Package configuration ---
66

77
m4_define([chafa_major_version], [1])
88
m4_define([chafa_minor_version], [14])
9-
m4_define([chafa_micro_version], [0])
9+
m4_define([chafa_micro_version], [1])
1010

1111
m4_define([chafa_version], [chafa_major_version.chafa_minor_version.chafa_micro_version])
1212

0 commit comments

Comments
 (0)