Skip to content

Commit

Permalink
RELEASE 0.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Nov 26, 2011
1 parent a5a8486 commit b5f821c
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 21 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ include doc/MODULES
include doc/RELEASING
include doc/RELEASING.win32
include doc/wiki/*
include manifest/*
include po/*
include setup-files/*
include tools/*
recursive-include aeidon *.py
recursive-include data *
Expand Down
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Gaupol 0.19.2
=============

* Allow preview of unsaved documents (#661242)
* Use subtitles from selected range if applicable in the Transform
Positions dialog (#663158)
* Fix mplayer preview command to work if gaupol was started as a
background process (with &) from a terminal window (#660035)
* Fix TypeError when speech recognition stopped in the middle of a
subtitle
* Fix IndexError when speech recognition finished with no speech
detected (#659411)
* Fix UnicodeDecodeError when reading configuration file (#661123)
* Rename manifest directory in source tarball to avoid clashes with
MANIFEST file on case-insensitive filesystems

Gaupol 0.19.1
=============

Expand Down
12 changes: 0 additions & 12 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,6 @@ Gaupol 0.20
- http://live.gnome.org/GnomeGoals/PythonIntrospectionPorting
[ ] Use Libpeas for extensions?
- http://live.gnome.org/Libpeas
[X] Fix IndexError when speech recognition finished with no speech
detected (#659411)
[X] Fix TypeError when speech recognition stopped in the middle of a
subtitle
[X] Fix UnicodeDecodeError when reading configuration file (#661123)
[X] Allow preview of unsaved documents (#661242)
[X] Fix mplayer preview command to work if gaupol was started as a
background process (&) from a terminal window (#660035)
[X] Use subtitles from selected range if applicable in the Transform
Positions dialog (#663158)
[X] Rename manifest directory in source tarball to avoid clashes with
MANIFEST file on case-insensitive filesystems

Gaupol 1.0
==========
Expand Down
2 changes: 1 addition & 1 deletion aeidon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
import os
import re

__version__ = "0.19.1"
__version__ = "0.19.2"

debug = (bool(os.environ.get("AEIDON_DEBUG", "")) or
bool(os.environ.get("GAUPOL_DEBUG", "")))
Expand Down
4 changes: 2 additions & 2 deletions data/extensions/bookmarks/bookmarks.gaupol-extension.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[Gaupol Extension]
GaupolVersion=0.19.1
GaupolVersion=0.19.2
Module=bookmarks
Requires=side-pane;
_Name=Bookmarks
_Description=Marking subtitles for easy navigation
Version=0.19.1
Version=0.19.2
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2008-2010 Osmo Salomaa;
Website=http://home.gna.org/gaupol
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[Gaupol Extension]
GaupolVersion=0.19.1
GaupolVersion=0.19.2
Module=custom-framerates
_Name=Custom Framerates
_Description=Allow use of non-standard framerates
Version=0.19.1
Version=0.19.2
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2011 Osmo Salomaa;
Website=http://home.gna.org/gaupol
4 changes: 2 additions & 2 deletions data/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.19.1
GaupolVersion=0.19.2
Module=side-pane
_Name=Side Pane
_Description=A side pane that can be used by other extensions
Version=0.19.1
Version=0.19.2
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2008,2010 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 @@ -47,7 +47,7 @@
import gtk
import os

__version__ = "0.19.1"
__version__ = "0.19.2"
COMBO_SEPARATOR = "<separator/>"

glib.threads_init()
Expand Down

0 comments on commit b5f821c

Please sign in to comment.