Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
New minor release
  • Loading branch information
gkarsay committed Aug 31, 2019
1 parent ff84323 commit a3677d6
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 9 deletions.
20 changes: 18 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions data/com.github.gkarsay.parlatype.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@
</kudos>

<releases>
<release version="1.6.2" date="2019-08-31">
<description>
<p>This is a minor release.</p>
<ul>
<li>Update time label only if time has changed. This is a performance increase, cursor movement should be smoother on slower systems.</li>
<li>Translation updates for Hungarian, Lithuanian and Spanish</li>
</ul>
</description>
</release>
<release version="1.6.1" date="2019-07-05">
<description>
<p>This is a minor release with some changes.</p>
Expand Down
2 changes: 1 addition & 1 deletion libparlatype/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion libreoffice/Parlatype.py
Original file line number Diff line number Diff line change
@@ -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 <gabor.karsay@gmx.at>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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+',
)
Expand Down

0 comments on commit a3677d6

Please sign in to comment.