From a3677d68e8082637235380f3ba2c6871116e8092 Mon Sep 17 00:00:00 2001 From: Gabor Karsay Date: Sat, 31 Aug 2019 11:49:27 +0200 Subject: [PATCH] v1.6.2 New minor release --- NEWS | 20 +++++++++++++++++-- README.md | 8 ++++---- ...om.github.gkarsay.parlatype.appdata.xml.in | 9 +++++++++ libparlatype/meson.build | 2 +- libreoffice/Parlatype.py | 2 +- meson.build | 2 +- 6 files changed, 34 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 1abe8954..6696084b 100644 --- a/NEWS +++ b/NEWS @@ -1,10 +1,26 @@ +Overview of Changes in Parlatype 1.6.2 – 2019-08-31 +=================================================== + +* New: Update time label only if time has changed. This is a performance + increase, cursor movement should be smoother on slower systems. +* Fix: Various fixes or improvements for the build system + - Fixed pkg-config cflags + - Fixed failing unit test + - Fixed extern C declarations for C++ + - Added Meson configuration message +* New or updated languages: + - es: Adolfo Jayme, Jorge Toledo + - hu: Óvári + - lt: Moo + + Overview of Changes in Parlatype 1.6.1 – 2019-07-05 =================================================== * New: Automatic speech recognition (ASR) is now disabled by default and it’s only shown, if parlatype is launched with the new parameter --with-asr * New: Parlatype can be built without ASR (build option asr=false) -* New: libreoffice helpers’ AppStream ID renamed (hyphen instead of underscore) +* New: libreoffice helpers’ AppStream ID renamed (underscore instead of hyphen) * Fix: Initialize i18n for library, fixes not shown translations in Flatpak or non-standard prefixes * Fix: All memory leaks discovered with Valgrind in test suite @@ -229,4 +245,4 @@ Overview of Changes in Parlatype 1.1 – 2016-07-29 Overview of Changes in Parlatype 1.0 – 2016-01-18 ================================================= -* This is the first release of Parlatype. +* This is the first release of Parlatype. \ No newline at end of file diff --git a/README.md b/README.md index b00a7113..d1468258 100644 --- a/README.md +++ b/README.md @@ -66,11 +66,11 @@ $ sudo ninja install ``` ### Build from tarball -Download the latest release tarball from https://github.com/gkarsay/parlatype/releases/latest. Assuming it’s version 1.6.1 and you want the program only: +Download the latest release tarball from https://github.com/gkarsay/parlatype/releases/latest. Assuming it’s version 1.6.2 and you want the program only: ``` -$ wget https://github.com/gkarsay/parlatype/releases/download/v1.6.1/parlatype-1.6.1.tar.gz -$ tar -zxvf parlatype-1.6.1.tar.gz -$ cd parlatype-1.6.1/ +$ wget https://github.com/gkarsay/parlatype/releases/download/v1.6.2/parlatype-1.6.2.tar.gz +$ tar -zxvf parlatype-1.6.2.tar.gz +$ cd parlatype-1.6.2/ $ meson build --prefix=/usr $ cd build $ ninja diff --git a/data/com.github.gkarsay.parlatype.appdata.xml.in b/data/com.github.gkarsay.parlatype.appdata.xml.in index 475aec16..24130c57 100644 --- a/data/com.github.gkarsay.parlatype.appdata.xml.in +++ b/data/com.github.gkarsay.parlatype.appdata.xml.in @@ -39,6 +39,15 @@ + + +

This is a minor release.

+
    +
  • Update time label only if time has changed. This is a performance increase, cursor movement should be smoother on slower systems.
  • +
  • Translation updates for Hungarian, Lithuanian and Spanish
  • +
+
+

This is a minor release with some changes.

diff --git a/libparlatype/meson.build b/libparlatype/meson.build index b1d57eeb..d33c012d 100644 --- a/libparlatype/meson.build +++ b/libparlatype/meson.build @@ -2,7 +2,7 @@ # refer to the libtool manual, section "Updating library version information": # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html -libparlatype_version = '2.1.0' +libparlatype_version = '2.1.1' # API or namespace version for GIR = first number of libparlatype_version + .0 libparlatype_api_version = '2.0' diff --git a/libreoffice/Parlatype.py b/libreoffice/Parlatype.py index 04026239..6b69fa5e 100644 --- a/libreoffice/Parlatype.py +++ b/libreoffice/Parlatype.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' Parlatype.py is part of Parlatype. -Version: 1.6.1 +Version: 1.6.2 Copyright (C) Gabor Karsay 2016-2019 diff --git a/meson.build b/meson.build index 8417c402..097aa3bd 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('parlatype', 'c', - version: '1.6.1', + version: '1.6.2', #meson_version: '>= 0.47.2', # oldest working tested version license: 'GPL3+', )