Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Mikel Olasagasti Uranga <mikel@olasagasti.info>
  • Loading branch information
mikelolasagasti committed Aug 10, 2020
1 parent 6149683 commit fb3e297
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 10 deletions.
5 changes: 2 additions & 3 deletions HACKING
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ RELEASE

- update version number in configure.ac
- set release name in src/lib/config.py.in
- update data/revelation.appdata.xml.in
- set release date in NEWS
- create mercurial release tag
- create git release tag
- make dist

- upload to ftp server
- add release on web-site
- announce on web-site
- announce on revelation-announce, revelation-list, and gnome-announce-list
- announce on freshmeat and gnomefiles

2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ SUBDIRS = data po src
EXTRA_DIST = autogen.sh

dist-hook:
hg log --style changelog > $(top_distdir)/ChangeLog
git log > $(top_distdir)/ChangeLog
21 changes: 21 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
2020-08-10: Revelation 0.5.0
============================

New features:
- Code migrated to Python3 and GTK3 #11 [Miquel Garriga]
- Bitwarden CSV exporter #8 [Arjuna Del Toso]
- Migrate from Intltool to Gettext [Mikel Olasagasti Uranga]

Bugfixes:
- Fix 256x256 icon #5 [Matthias Mailänder]
- Fix autoload when file has special characters #3 #11 [Pieter Ennes]

Translation:
- Update translations

Others:
- Remove applet code
- Use Makefile macros when using sed [Germán Poo-Caamaño]
- Remove unused code [Miquel Garriga]


2012-07-01: Revelation 0.4.14
=============================

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.0],[https://bitbucket.org/erikg/revelation/issues/new],[revelation],[https://revelation.olasagasti.info/])
AC_INIT([revelation],[0.5.0],[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])

AM_GNU_GETTEXT_VERSION([0.19.8])
Expand Down
2 changes: 1 addition & 1 deletion data/revelation.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
<updatecontact>mikel@olasagasti.info</updatecontact>
<content_rating type="oars-1.1" />
<releases>
<release version="0.5.0" date="2020-08-10" />
<release version="0.4.14" date="2012-07-01" />
<release version="0.4.13" date="2012-05-27" />
<release version="0.4.12" date="2011-11-12" />
</releases>

</component>
8 changes: 4 additions & 4 deletions src/lib/config.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#

from . import util
import gettext, os
import gettext

_ = gettext.gettext

Expand All @@ -37,11 +37,11 @@ APPNAME = "Revelation"
PACKAGE = "@PACKAGE@"
VERSION = "@VERSION@"
DATAVERSION = 2
RELNAME = "One Toke Over the Line"
URL = "http://revelation.olasagasti.info/"
RELNAME = "No estaba muerto, estaba de parranda"
URL = "https://revelation.olasagasti.info/"
AUTHORS = [ "Erik Grinaker <erikg@codepoet.no>","Mikel Olasagasti Uranga <mikel@olasagasti.info>" ]
ARTISTS = [ "Erik Grinaker <erikg@codepoet.no>" ]
COPYRIGHT = _('Copyright') + " \302\251 2003-2007 Erik Grinaker\n2010-2012 Mikel Olasagasti Uranga"
COPYRIGHT = _('Copyright') + " \302\251 2003-2007 Erik Grinaker\n2010-2020 Mikel Olasagasti Uranga"
LICENSE = _("""Revelation is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
Expand Down

0 comments on commit fb3e297

Please sign in to comment.