diff options
author | Boris Faure <billiob@gmail.com> | 2020-07-26 12:06:59 +0200 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2020-07-26 12:06:59 +0200 |
commit | 92c26b07cabad3494fcd0c76898e5d0eb04ce2cf (patch) | |
tree | 9cd1db63d96783cb7b66b627233239762618bf2e | |
parent | 883f8b3c894e75bbd25aad0a3eb047e2b29b2a62 (diff) |
Terminology v1.8.0v1.8.0
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | NEWS | 23 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | man/terminology-helpers.1 | 2 | ||||
-rw-r--r-- | man/terminology.1 | 2 | ||||
-rw-r--r-- | meson.build | 2 |
6 files changed, 40 insertions, 5 deletions
@@ -1,3 +1,17 @@ | |||
1 | 2020-07-26 | ||
2 | * Release v1.8.0 | ||
3 | * Small framework to add unit tests | ||
4 | * Display tooltips on when hovering color descriptions | ||
5 | * Handle OSC 10/11 to change/get background and foreground colors | ||
6 | * Reworked build system for testing and fuzzing | ||
7 | * Use of switch-case constructs when home-made binary search was not | ||
8 | efficient | ||
9 | * Support EFL 1-22 or newer only | ||
10 | * Larger list of word separators when doing word-selection | ||
11 | * Reworked the Settings panel to add one panel on Mouse interactions | ||
12 | * Handle Emoji characters as double-width, following Unicode 13.0 | ||
13 | * Fix issues detected by UndefinedBehavior Sanitizer | ||
14 | |||
1 | 2020-05-10 | 15 | 2020-05-10 |
2 | * Release v1.7.0 | 16 | * Release v1.7.0 |
3 | * Terminology is packaged on the snapstore at https://snapcraft.io/terminology | 17 | * Terminology is packaged on the snapstore at https://snapcraft.io/terminology |
@@ -1,7 +1,28 @@ | |||
1 | ================= | 1 | ================= |
2 | Terminology 1.7.0 | 2 | Terminology 1.8.0 |
3 | ================= | 3 | ================= |
4 | 4 | ||
5 | Changes since 1.7.0: | ||
6 | -------------------- | ||
7 | |||
8 | Additions: | ||
9 | * Small framework to add unit tests | ||
10 | * Display tooltips on when hovering color descriptions | ||
11 | * Handle OSC 10/11 to change/get background and foreground colors | ||
12 | |||
13 | Improvements: | ||
14 | * Reworked build system for testing and fuzzing | ||
15 | * Use of switch-case constructs when home-made binary search was not | ||
16 | efficient | ||
17 | * Support EFL 1-22 or newer only | ||
18 | * Larger list of word separators when doing word-selection | ||
19 | * Reworked the Settings panel to add one panel on Mouse interactions | ||
20 | * Handle Emoji characters as double-width, following Unicode 13.0 | ||
21 | |||
22 | Fixes: | ||
23 | * Fix issues detected by UndefinedBehavior Sanitizer | ||
24 | |||
25 | |||
5 | Changes since 1.6.0: | 26 | Changes since 1.6.0: |
6 | -------------------- | 27 | -------------------- |
7 | 28 | ||
@@ -1,4 +1,4 @@ | |||
1 | Terminology 1.7.0 | 1 | Terminology 1.8.0 |
2 | ================= | 2 | ================= |
3 | 3 | ||
4 | This is an EFL terminal emulator with some extra bells and whistles. | 4 | This is an EFL terminal emulator with some extra bells and whistles. |
diff --git a/man/terminology-helpers.1 b/man/terminology-helpers.1 index 3efbb3f..471875c 100644 --- a/man/terminology-helpers.1 +++ b/man/terminology-helpers.1 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Manpage for terminology helpers | 1 | .\" Manpage for terminology helpers |
2 | .TH TERMINOLOGY-HELPERS 1 "May 10, 2020" | 2 | .TH TERMINOLOGY-HELPERS 1 "Jul 26, 2020" |
3 | .SH NAME | 3 | .SH NAME |
4 | terminiology-helpers \- programs that enhance | 4 | terminiology-helpers \- programs that enhance |
5 | .B terminology(1) | 5 | .B terminology(1) |
diff --git a/man/terminology.1 b/man/terminology.1 index 1937a7f..c8bb83b 100644 --- a/man/terminology.1 +++ b/man/terminology.1 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Manpage for Terminology | 1 | .\" Manpage for Terminology |
2 | .TH TERMINOLOGY 1 "May 10, 2020" "1.7.0" "Terminology man page" | 2 | .TH TERMINOLOGY 1 "Jul 26, 2020" "1.8.0" "Terminology man page" |
3 | .SH NAME | 3 | .SH NAME |
4 | Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). | 4 | Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). |
5 | .SH SYNOPSIS | 5 | .SH SYNOPSIS |
diff --git a/meson.build b/meson.build index e6b4ad0..212b5e9 100644 --- a/meson.build +++ b/meson.build | |||
@@ -1,5 +1,5 @@ | |||
1 | project('terminology', 'c', | 1 | project('terminology', 'c', |
2 | version: '1.7.99', | 2 | version: '1.8.0', |
3 | default_options: ['buildtype=plain', 'c_std=gnu99'], | 3 | default_options: ['buildtype=plain', 'c_std=gnu99'], |
4 | license: 'BSD') | 4 | license: 'BSD') |
5 | 5 | ||