Skip to content

Commit

Permalink
Release 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelolasagasti committed Oct 4, 2020
1 parent 66cf3c0 commit 2a0b422
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 5 deletions.
5 changes: 3 additions & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Erik Grinaker <[email protected]> Main author
Mikel Olasagasti Uranga <[email protected]> Current maintainer
Mikel Olasagasti Uranga <[email protected]> Current maintainer

Code Contributors
=================
Expand All @@ -15,7 +15,8 @@ John Lenz <[email protected]> Added LUKS file import/export
Andreas Sliwka <[email protected]> Applet option to show/hide search entry
Wade Berrier <[email protected]> Don't crash on missing theme icons
Arjuna Del Toso <[email protected]> Bitwarden Web Vault export
Miquel Garriga <[email protected]> Migrate to Python3 and GTK3
Miquel Garriga <[email protected]> Migrate to Python3 and GTK3 & Multiple fixes
Germán Poo-Caamaño <[email protected]> KSP, Meson port, Gtk.FileChooserNative and multiple fixes

Translations
============
Expand Down
34 changes: 34 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -20,6 +51,7 @@ Others:

2020-09-04: Revelation 0.5.2
============================
"Back to chaos"

Bugfixes:
- Fix #24 [Miquel Garriga]
Expand All @@ -33,6 +65,7 @@ Others:

2020-08-30: Revelation 0.5.1
============================
"Cadi Cadi"

Bugfixes:
- Fix #21 [Miquel Garriga]
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
5 changes: 5 additions & 0 deletions data/info.olasagasti.revelation.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
<image width="954" height="812">https://revelation.olasagasti.info/screenshots/revelation-search.png</image>
<caption>Search entries by multiple criteria</caption>
</screenshot>
<screenshot>
<image width="957" height="812">https://revelation.olasagasti.info/screenshots/revelation-shortcuts.png</image>
<caption>Shortcuts window</caption>
</screenshot>
<screenshot>
<image width="957" height="813">https://revelation.olasagasti.info/screenshots/revelation-preferences.png</image>
<caption>Adjust the application to give you pace of mind</caption>
Expand Down Expand Up @@ -79,6 +83,7 @@
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
<releases>
<release version="0.5.4" date="2020-10-04" />
<release version="0.5.3" date="2020-09-13" />
<release version="0.5.2" date="2020-09-04" />
<release version="0.5.1" date="2020-08-30" />
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('revelation',
version : '0.5.3',
version : '0.5.4',
meson_version: '>= 0.51.0'
)

Expand Down
2 changes: 1 addition & 1 deletion src/lib/config.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>","Mikel Olasagasti Uranga <[email protected]>" ]
ARTISTS = [ "Erik Grinaker <[email protected]>" ]
Expand Down

0 comments on commit 2a0b422

Please sign in to comment.