From 2a0b42276377fa7c44ac2e510f86ac33d36aa6b6 Mon Sep 17 00:00:00 2001 From: Mikel Olasagasti Uranga Date: Sun, 4 Oct 2020 15:22:26 +0200 Subject: [PATCH] Release 0.5.4 --- AUTHORS | 5 +-- NEWS | 34 +++++++++++++++++++ configure.ac | 2 +- .../info.olasagasti.revelation.appdata.xml.in | 5 +++ meson.build | 2 +- src/lib/config.py.in | 2 +- 6 files changed, 45 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index fb896bd..a7f606d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1,5 @@ Erik Grinaker Main author -Mikel Olasagasti Uranga Current maintainer +Mikel Olasagasti Uranga Current maintainer Code Contributors ================= @@ -15,7 +15,8 @@ John Lenz Added LUKS file import/export Andreas Sliwka Applet option to show/hide search entry Wade Berrier Don't crash on missing theme icons Arjuna Del Toso Bitwarden Web Vault export -Miquel Garriga Migrate to Python3 and GTK3 +Miquel Garriga Migrate to Python3 and GTK3 & Multiple fixes +Germán Poo-Caamaño KSP, Meson port, Gtk.FileChooserNative and multiple fixes Translations ============ diff --git a/NEWS b/NEWS index 704a319..728f525 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,36 @@ +2020-10-04: Revelation 0.5.4 +============================ +"Drifting through the marsh we made it just outside the bend" + +New features: + +- Keyboard Shortcuts Page (KSP) available #39 [Germán Poo-Caamaño] +- Port to Meson build system #55 [Germán Poo-Caamaño] +- Migrate from Gtk.FileChooserDialog to Gtk.FileChooserNative to avoid having + to grant full $HOME access in Flatpak #27 [Germán Poo-Caamaño] +- KeepassXC CSV importer #67 + +Bugfixes: + +- Fix importing / exporting issues #62 #63 #64 #65 #43 [Miquel Garriga] +- Fix opening multiple revelation from console #46 [Miquel Garriga] +- Restore Key_Escape accelerator in searchbar #46 [Miquel Garriga] +- Close button now closes file, doesn't quit #47 + +Translation: +- Update Basque and Spanish translations + +Others: +- This will be the last version with autotools support, next release will drop + autotools code. Future releases will only support Meson. +- Multiple cleanups #51 #54 #59 [Germán Poo-Caamaño] +- Update searchbar code and improve usability #44 #45 [Germán Poo-Caamaño] +- Change desktop file categories #61 [Matthias Mailänder] + + 2020-09-13: Revelation 0.5.3 ============================ +"Gora mirotzak!" Bugfixes: @@ -20,6 +51,7 @@ Others: 2020-09-04: Revelation 0.5.2 ============================ +"Back to chaos" Bugfixes: - Fix #24 [Miquel Garriga] @@ -33,6 +65,7 @@ Others: 2020-08-30: Revelation 0.5.1 ============================ +"Cadi Cadi" Bugfixes: - Fix #21 [Miquel Garriga] @@ -47,6 +80,7 @@ Others: 2020-08-10: Revelation 0.5.0 ============================ +"No estaba muerto, estaba de parranda" New features: - Code migrated to Python3 and GTK3 #11 [Miquel Garriga] diff --git a/configure.ac b/configure.ac index 676482d..b0c02f7 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ dnl dnl initialize autoconf/automake AC_PREREQ([2.69]) -AC_INIT([revelation],[0.5.3],[https://github.com/mikelolasagasti/revelation/issues],[revelation],[https://revelation.olasagasti.info/]) +AC_INIT([revelation],[0.5.4],[https://github.com/mikelolasagasti/revelation/issues],[revelation],[https://revelation.olasagasti.info/]) AM_INIT_AUTOMAKE([1.11 tar-ustar dist-xz no-dist-gzip -Wno-portability foreign]) AM_GNU_GETTEXT_VERSION([0.19.8]) diff --git a/data/info.olasagasti.revelation.appdata.xml.in b/data/info.olasagasti.revelation.appdata.xml.in index ae104f1..5e325db 100644 --- a/data/info.olasagasti.revelation.appdata.xml.in +++ b/data/info.olasagasti.revelation.appdata.xml.in @@ -36,6 +36,10 @@ https://revelation.olasagasti.info/screenshots/revelation-search.png Search entries by multiple criteria + + https://revelation.olasagasti.info/screenshots/revelation-shortcuts.png + Shortcuts window + https://revelation.olasagasti.info/screenshots/revelation-preferences.png Adjust the application to give you pace of mind @@ -79,6 +83,7 @@ none + diff --git a/meson.build b/meson.build index 6b3f4b6..e508fb0 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('revelation', - version : '0.5.3', + version : '0.5.4', meson_version: '>= 0.51.0' ) diff --git a/src/lib/config.py.in b/src/lib/config.py.in index 3d3e14a..cc3cd76 100644 --- a/src/lib/config.py.in +++ b/src/lib/config.py.in @@ -37,7 +37,7 @@ APPNAME = "Revelation" PACKAGE = "@PACKAGE@" VERSION = "@VERSION@" DATAVERSION = 2 -RELNAME = "Gora mirotzak!" +RELNAME = "Drifting through the marsh we made it just outside the bend" URL = "https://revelation.olasagasti.info/" AUTHORS = [ "Erik Grinaker ","Mikel Olasagasti Uranga " ] ARTISTS = [ "Erik Grinaker " ]