diff --git a/ChangeLog b/ChangeLog index eb124a4e..6b5fc5eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2019-07-20 + * Release v1.5.0 + * Handle emoji has double-width character, introduced in Unicode 9.0. + * Add option "Treat Emojis as double-width characters", on by default. + * Hide cursor when idle, with parameter to set idle time + * Add papercolor theme + * Themes can now set background color through a color-class + * Handle OSC-11 to report background color + * Update Italian and French translations + * Fix initial window size hints + * Fix focus issues + 2019-05-24 * Release v1.4.1 * Decode pasted string as UTF-8, fixing some characters being skipped diff --git a/NEWS b/NEWS index 307d84d2..41dc95b4 100644 --- a/NEWS +++ b/NEWS @@ -1,8 +1,27 @@ ================= -Terminology 1.4.0 +Terminology 1.5.0 ================= -Changes since 1.4.0: +Changes since 1.5.0: +-------------------- + +Additions: + * Handle emoji has double-width character, introduced in Unicode 9.0. + * Add option "Treat Emojis as double-width characters", on by default. + * Hide cursor when idle, with parameter to set idle time + * Add papercolor theme + +Improvements: + * Themes can now set background color through a color-class + * Handle OSC-11 to report background color + * Update Italian and French translations + +Fixes: + * Fix initial window size hints + * Fix focus issues + + +Changes since 1.4.1: -------------------- Fixes: diff --git a/README.md b/README.md index 79f42f45..796c2300 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Terminology 1.4.1 +Terminology 1.5.0 ================= 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 b4d91e6e..901ed3e9 100644 --- a/man/terminology-helpers.1 +++ b/man/terminology-helpers.1 @@ -1,5 +1,5 @@ .\" Manpage for terminology helpers -.TH TERMINOLOGY-HELPERS 1 "May 24, 2019" +.TH TERMINOLOGY-HELPERS 1 "Jul 20, 2019" .SH NAME terminiology-helpers \- programs that enhance .B terminology(1) diff --git a/man/terminology.1 b/man/terminology.1 index a08981c3..1ee3b605 100644 --- a/man/terminology.1 +++ b/man/terminology.1 @@ -1,5 +1,5 @@ .\" Manpage for Terminology -.TH TERMINOLOGY 1 "May 24, 2019" "1.4.1" "Terminology man page" +.TH TERMINOLOGY 1 "Jul 20, 2019" "1.5.0" "Terminology man page" .SH NAME Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). .SH SYNOPSIS diff --git a/meson.build b/meson.build index ea95b5cd..335524fb 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('terminology', 'c', - version: '1.4.99', + version: '1.5.0', default_options: ['buildtype=plain', 'c_std=gnu99'], license: 'BSD')