diff options
author | Boris Faure <billiob@gmail.com> | 2019-03-25 23:08:24 +0100 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2019-03-25 23:08:24 +0100 |
commit | 0a505fa636366a74d275de36cba1bc1000f857da (patch) | |
tree | d51646d183edd0ded8884ae4c5ed3edccdc8b4d3 | |
parent | 1ce26c51f78b5205766a25f5629c9670d4985ed2 (diff) |
Prepare Terminology release 1.4.0v1.4.0
-rw-r--r-- | ChangeLog | 19 | ||||
-rw-r--r-- | NEWS | 27 | ||||
-rw-r--r-- | man/terminology-helpers.1 | 2 | ||||
-rw-r--r-- | man/terminology.1 | 2 | ||||
-rw-r--r-- | meson.build | 2 |
5 files changed, 48 insertions, 4 deletions
@@ -1,3 +1,22 @@ | |||
1 | 2019-03-31 | ||
2 | * Release v1.4.0 | ||
3 | * Add Continuous Integration on every push to the git repository | ||
4 | * Add a test framework on escape code parsing and interpreting | ||
5 | * Add more than 120 test files | ||
6 | * Add support, along with tests, for the following escape codes: DSR-DIR, | ||
7 | DSR-KBD, DSR-MSR, DSR-DECCKSR, DSR-OS, DSR-PP, DSR-UDK, DECSCLM, DECBI, | ||
8 | DECFI, DECSACE, DECRARA, DECCRARA, DECIC, DECDC, DECCRA, DECST8C, DA3, | ||
9 | DECSWBV | ||
10 | * Add finer configuration on whether to activate links | ||
11 | * Set environment variable WINDOWID | ||
12 | * Selections only disappear if the underlaying content changes | ||
13 | * When pasting a buffer, skip control characters as a security measure | ||
14 | * Fixes, along with tests, on handling the following escape codes: VPR, | ||
15 | DECERA, DECFRA, DSR-CPR, DCH, DECALN, DECAWM, IL, DL | ||
16 | * Fixes, along with tests, on mouse reporting | ||
17 | * Fixes on issues spotted by Coverity | ||
18 | |||
19 | |||
1 | 2018-12-18 | 20 | 2018-12-18 |
2 | * Release v1.3.2 | 21 | * Release v1.3.2 |
3 | * Clicking on links works again | 22 | * Clicking on links works again |
@@ -1,7 +1,32 @@ | |||
1 | ================= | 1 | ================= |
2 | Terminology 1.3.2 | 2 | Terminology 1.4.0 |
3 | ================= | 3 | ================= |
4 | 4 | ||
5 | Changes since 1.3.2: | ||
6 | -------------------- | ||
7 | |||
8 | Additions: | ||
9 | * Add Continuous Integration on every push to the git repository | ||
10 | * Add a test framework on escape code parsing and interpreting | ||
11 | * Add more than 120 test files | ||
12 | * Add support, along with tests, for the following escape codes: DSR-DIR, | ||
13 | DSR-KBD, DSR-MSR, DSR-DECCKSR, DSR-OS, DSR-PP, DSR-UDK, DECSCLM, DECBI, | ||
14 | DECFI, DECSACE, DECRARA, DECCRARA, DECIC, DECDC, DECCRA, DECST8C, DA3, | ||
15 | DECSWBV | ||
16 | * Add finer configuration on whether to activate links | ||
17 | * Set environment variable WINDOWID | ||
18 | |||
19 | Improvements: | ||
20 | * Selections only disappear if the underlaying content changes | ||
21 | * When pasting a buffer, skip control characters as a security measure | ||
22 | |||
23 | Fixes: | ||
24 | * Fixes, along with tests, on handling the following escape codes: VPR, | ||
25 | DECERA, DECFRA, DSR-CPR, DCH, DECALN, DECAWM, IL, DL | ||
26 | * Fixes, along with tests, on mouse reporting | ||
27 | * Fixes on issues spotted by Coverity | ||
28 | |||
29 | |||
5 | Changes since 1.3.1: | 30 | Changes since 1.3.1: |
6 | -------------------- | 31 | -------------------- |
7 | 32 | ||
diff --git a/man/terminology-helpers.1 b/man/terminology-helpers.1 index fb8187c..a26ceaf 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 5 2018" | 2 | .TH TERMINOLOGY-HELPERS 1 "Mar 31 2019" |
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 e5483ba..6bf3777 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 "18 Dec 2018" "1.3.2" "Terminology man page" | 2 | .TH TERMINOLOGY 1 "31 Mar 2019" "1.4.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 0604dea..98ea3aa 100644 --- a/meson.build +++ b/meson.build | |||
@@ -1,5 +1,5 @@ | |||
1 | project('terminology', 'c', | 1 | project('terminology', 'c', |
2 | version: '1.3.99', | 2 | version: '1.4.0', |
3 | default_options: ['c_std=gnu99'], | 3 | default_options: ['c_std=gnu99'], |
4 | license: 'BSD') | 4 | license: 'BSD') |
5 | 5 | ||