Terminology v1.8.0

This commit is contained in:
Boris Faure 2020-07-26 12:06:59 +02:00
parent 883f8b3c89
commit 92c26b07ca
Signed by: borisfaure
GPG Key ID: 35C0410516166BE8
6 changed files with 40 additions and 5 deletions

View File

@ -1,3 +1,17 @@
2020-07-26
* Release v1.8.0
* Small framework to add unit tests
* Display tooltips on when hovering color descriptions
* Handle OSC 10/11 to change/get background and foreground colors
* Reworked build system for testing and fuzzing
* Use of switch-case constructs when home-made binary search was not
efficient
* Support EFL 1-22 or newer only
* Larger list of word separators when doing word-selection
* Reworked the Settings panel to add one panel on Mouse interactions
* Handle Emoji characters as double-width, following Unicode 13.0
* Fix issues detected by UndefinedBehavior Sanitizer
2020-05-10 2020-05-10
* Release v1.7.0 * Release v1.7.0
* Terminology is packaged on the snapstore at https://snapcraft.io/terminology * Terminology is packaged on the snapstore at https://snapcraft.io/terminology

23
NEWS
View File

@ -1,7 +1,28 @@
================= =================
Terminology 1.7.0 Terminology 1.8.0
================= =================
Changes since 1.7.0:
--------------------
Additions:
* Small framework to add unit tests
* Display tooltips on when hovering color descriptions
* Handle OSC 10/11 to change/get background and foreground colors
Improvements:
* Reworked build system for testing and fuzzing
* Use of switch-case constructs when home-made binary search was not
efficient
* Support EFL 1-22 or newer only
* Larger list of word separators when doing word-selection
* Reworked the Settings panel to add one panel on Mouse interactions
* Handle Emoji characters as double-width, following Unicode 13.0
Fixes:
* Fix issues detected by UndefinedBehavior Sanitizer
Changes since 1.6.0: Changes since 1.6.0:
-------------------- --------------------

View File

@ -1,4 +1,4 @@
Terminology 1.7.0 Terminology 1.8.0
================= =================
This is an EFL terminal emulator with some extra bells and whistles. This is an EFL terminal emulator with some extra bells and whistles.

View File

@ -1,5 +1,5 @@
.\" Manpage for terminology helpers .\" Manpage for terminology helpers
.TH TERMINOLOGY-HELPERS 1 "May 10, 2020" .TH TERMINOLOGY-HELPERS 1 "Jul 26, 2020"
.SH NAME .SH NAME
terminiology-helpers \- programs that enhance terminiology-helpers \- programs that enhance
.B terminology(1) .B terminology(1)

View File

@ -1,5 +1,5 @@
.\" Manpage for Terminology .\" Manpage for Terminology
.TH TERMINOLOGY 1 "May 10, 2020" "1.7.0" "Terminology man page" .TH TERMINOLOGY 1 "Jul 26, 2020" "1.8.0" "Terminology man page"
.SH NAME .SH NAME
Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries).
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,5 +1,5 @@
project('terminology', 'c', project('terminology', 'c',
version: '1.7.99', version: '1.8.0',
default_options: ['buildtype=plain', 'c_std=gnu99'], default_options: ['buildtype=plain', 'c_std=gnu99'],
license: 'BSD') license: 'BSD')