Skip to content

Commit

Permalink
RELEASE 0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed May 15, 2009
1 parent 119e18d commit 36a4627
Show file tree
Hide file tree
Showing 8 changed files with 249 additions and 164 deletions.
21 changes: 21 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
Gaupol 0.15
===========

* Add text correction task to split joined words or to join split
words using spell-check suggestions (#572667)
* Show duration in time mode as seconds
* Merge Latin and French common error text correction patterns from
subtitleeditor (kitone)
* Allow pasting times with comma as a decimal separator (#580339)
* Allow bookmarks to be added or removed by double-clicking or
pressing enter in the bookmark column (#580346)
* Add validation for character encoding given as an argument on the
command line using the '-e' option
* Fix handling of Unicode BOMs (#568906)
* Add UTF-8-SIG character encoding for opening and saving files
with a UTF-8 signature/BOM
* Fix incorrect handling of common error patterns that at worst
caused gaupol to hang due to an eternal loop (#581003)
* Abort installation if an intltool-merge or msgfmt call fails
* Add messages for raised exceptions

Gaupol 0.14
===========

Expand Down
20 changes: 0 additions & 20 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,23 +1,3 @@
Gaupol 0.15
===========

[D] Add text correction task to split joined words or to join split
words using spell-check suggestions (#572667)
[D] Show duration in time mode as seconds
[D] Merge Latin and French common error text correction patterns from
subtitleeditor (kitone)
[D] Allow pasting times with comma as a decimal separator (#580339)
[D] Allow bookmarks to be added or removed by double-clicking or
pressing enter in the bookmark column (#580346)
[D] Add validation for character encoding given as an argument on the
command line using the '-e' option
[D] Fix handling of Unicode BOMs (#568906)
[D] Add UTF-8-SIG character encoding for opening and saving files
with a UTF-8 signature/BOM
[D] Fix incorrect handling of common error patterns (#581003)
[D] Abort installation if an intltool-merge or msgfmt call fails
[D] Add messages for raised exceptions

Gaupol 1.0
==========

Expand Down
1 change: 1 addition & 0 deletions doc/RELEASING
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Releasing a New Version
$ $EDITOR NEWS TODO
$ git commit -a
$ git tag -s X.Y.Z
$ git push -a --tags

* Build tarballs and edit related files
$ ./setup.py clean sdist_gna --formats bztar,gztar
Expand Down
4 changes: 2 additions & 2 deletions extensions/bookmarks/bookmarks.gaupol-extension.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[Gaupol Extension]
GaupolVersion=0.14
GaupolVersion=0.15
Module=bookmarks
Requires=side-pane;
_Name=Bookmarks
_Description=Marking subtitles for easy navigation
Version=0.14
Version=0.15
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2008-2009 Osmo Salomaa;
Website=http://home.gna.org/gaupol
4 changes: 2 additions & 2 deletions extensions/side-pane/side-pane.gaupol-extension.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[Gaupol Extension]
GaupolVersion=0.14
GaupolVersion=0.15
Module=side-pane
_Name=Side Pane
_Description=A side pane that can be used by other extensions
Version=0.14
Version=0.15
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2008 Osmo Salomaa;
Website=http://home.gna.org/gaupol
Expand Down
2 changes: 1 addition & 1 deletion gaupol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import os
import re

__version__ = "0.14"
__version__ = "0.15"

debug = bool(os.environ.get("GAUPOL_DEBUG", ""))
re_any_tag = re.compile(r"(^[/\\_]+|<.*?>|\{.*?\})")
Expand Down
2 changes: 2 additions & 0 deletions po/POTFILES.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ data/glade/assistants/text/common-error.glade
data/glade/assistants/text/confirmation.glade
data/glade/assistants/text/hearing-impaired.glade
data/glade/assistants/text/introduction.glade
data/glade/assistants/text/join-split-words.glade
data/glade/assistants/text/line-break-options.glade
data/glade/assistants/text/line-break.glade
data/glade/assistants/text/progress.glade
Expand Down Expand Up @@ -74,6 +75,7 @@ gaupol/gtk/dialogs/debug.py
gaupol/gtk/dialogs/encoding.py
gaupol/gtk/dialogs/file.py
gaupol/gtk/dialogs/header.py
gaupol/gtk/dialogs/language.py
gaupol/gtk/dialogs/preferences.py
gaupol/gtk/dialogs/search.py
gaupol/gtk/dialogs/shift.py
Expand Down
Loading

0 comments on commit 36a4627

Please sign in to comment.