diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..c271d4a --- /dev/null +++ b/NEWS.md @@ -0,0 +1,27 @@ +gTranscribe 0.7 Release Notes +============================= + +New features +------------ + + * Use Gspell if available and fallback to GtkSpell. Gspell is faster and much + more reliable. + [[b856011](https://github.com/innir/gtranscribe/commit/b8560119670be36b93c074ddc4a843e7cdda33b1)] + + * Pressing CTRL+J will move the audio file and the cursor to the beginning of + the current paragraph. + [[de322d2](https://github.com/innir/gtranscribe/commit/de322d2a2eef0a13dd596468a21c9e13c551ff3f)] + [[fb81c24](https://github.com/innir/gtranscribe/commit/fb81c24995285cbdb13b1eba9a44eee3da6395ca)] + + +Bug fixes +--------- + + * Always show application icon and logo in AboutDialog. + [[c9e8686](https://github.com/innir/gtranscribe/commit/c9e8686b3efeda3a04d0c411f1b2044568b5ca75)] + + * Scroll Text to bottom after loading a text file. + [[f9d9cb9](https://github.com/innir/gtranscribe/commit/f9d9cb91e0eebcb16fe343b8cd38117548082084)] + + * Don't freeze when opening a text file and no audio file is loaded. + [[f8319b8](https://github.com/innir/gtranscribe/commit/f8319b867738579e83e13bb9c23f4464df0f1c4f)] diff --git a/bin/gtranscribe b/bin/gtranscribe index 8ef8ebc..25fad70 100755 --- a/bin/gtranscribe +++ b/bin/gtranscribe @@ -181,9 +181,9 @@ class gTranscribeWindow: about_dialog.set_transient_for(self.window) about_dialog.set_modal(True) about_dialog.set_name("gTranscribe") - about_dialog.set_version("0.6") - about_dialog.set_copyright("Copyright 2013-2016 Philip Rinn\n" - "Copyright 2010 Frederik Elwert") + about_dialog.set_version("0.7") + about_dialog.set_copyright("Copyright \u00A9 2013-2016 Philip Rinn\n" + "Copyright \u00A9 2010 Frederik Elwert") about_dialog.set_comments(_("gTranscribe is a software focussed " "on easy transcription of spoken words.")) about_dialog.set_website("https://github.com/innir/gtranscribe") diff --git a/gtranscribe.appdata.xml b/gtranscribe.appdata.xml index 3158e40..3444922 100644 --- a/gtranscribe.appdata.xml +++ b/gtranscribe.appdata.xml @@ -38,6 +38,7 @@ + https://github.com/innir/gtranscribe https://github.com/innir/gtranscribe/issues diff --git a/po/de.po b/po/de.po index 2f6832a..1424e42 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: gTranscribe 0.6\n" +"Project-Id-Version: gTranscribe 0.7\n" "Report-Msgid-Bugs-To: rinni@inventati.org\n" "POT-Creation-Date: 2016-12-28 15:24+0100\n" "PO-Revision-Date: 2016-12-28 17:59+0100\n" diff --git a/setup.py b/setup.py index b6e78b0..c8a7dbc 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ DistUtilsExtra.auto.setup( name='gTranscribe', - version='0.6', + version='0.7', license='GPL-3', author='Philip Rinn', author_email='rinni@inventati.org',