Skip to content

Commit

Permalink
RELEASE 0.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Jan 13, 2013
1 parent 6c976ee commit d228b05
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Gaupol 0.21.1
=============

* Fix error disconnecting text view's line length margin handler
(AttributeError: 'TextView' object has no attribute
'gaupol_ruler_handler_id')
* Fix atomic file writing in weird cases where the subtitle file to
be written and its backup in the same directory would be on
different filesystems (Florian Léger, Osmo Salomaa)
* Fix speed issues updating subtitle list selection (e.g. when doing
a search-and-replace-all with a alot of matches)
* Speed up action sensitivity updates

Gaupol 0.21
===========

Expand Down
17 changes: 2 additions & 15 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
Gaupol 0.21.1
=============

[X] Fix error disconnecting text view's line length margin handler
(AttributeError: 'TextView' object has no attribute
'gaupol_ruler_handler_id')
[X] Fix atomic file writing in weird cases where the subtitle file to
be written and its backup in the same directory would be on
different filesystems (Florian Léger, Osmo Salomaa)
[X] Fix speed issues updating subtitle list selection (e.g. when doing
a search-and-replace-all with a alot of matches)
[X] Speed up action sensitivity updates

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

* Restore proper keeping track of recent files
- Should be possible with PyGObject > 3.7.3?
- https://bugzilla.gnome.org/show_bug.cgi?id=678401
- Should be possible with PyGObject > 3.7.3:
https://bugzilla.gnome.org/show_bug.cgi?id=678401
* Add a built-in GStreamer-based video player
* Add a GStreamer-based audio waveform display
* https://live.gnome.org/GnomeGoals/PortToGtkApplication
Expand Down
2 changes: 1 addition & 1 deletion aeidon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
import re
import sys

__version__ = "0.21"
__version__ = "0.21.1"

RUNNING_SPHINX = (sys.argv[0].endswith("autogen.py") or
sys.argv[0].endswith("sphinx-build"))
Expand Down
4 changes: 2 additions & 2 deletions data/extensions/bookmarks/bookmarks.extension.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[Extension]
GaupolVersion=0.21
GaupolVersion=0.21.1
Module=bookmarks
Requires=side-pane;
_Name=Bookmarks
_Description=Marking subtitles for easy navigation
Version=0.21
Version=0.21.1
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2008-2010,2012 Osmo Salomaa;
Website=http://home.gna.org/gaupol
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[Extension]
GaupolVersion=0.21
GaupolVersion=0.21.1
Module=custom-framerates
_Name=Custom Framerates
_Description=Allow use of non-standard framerates
Version=0.21
Version=0.21.1
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2011-2012 Osmo Salomaa;
Website=http://home.gna.org/gaupol
4 changes: 2 additions & 2 deletions data/extensions/side-pane/side-pane.extension.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[Extension]
GaupolVersion=0.21
GaupolVersion=0.21.1
Module=side-pane
_Name=Side Pane
_Description=A side pane that can be used by other extensions
Version=0.21
Version=0.21.1
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright (C) 2008,2010,2012 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 @@ -44,7 +44,7 @@
:var conf: Instance of :class:`gaupol.ConfigurationStore` used
"""

__version__ = "0.21"
__version__ = "0.21.1"
COMBO_SEPARATOR = "<separator/>"

try:
Expand Down

0 comments on commit d228b05

Please sign in to comment.