Skip to content

Commit

Permalink
RELEASE 0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Apr 9, 2013
1 parent 82eed2c commit c13f99a
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 19 deletions.
12 changes: 12 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Gaupol 0.22
===========

* Restore drop-down arrows on undo and redo toolbar buttons for those
using PyGObject 3.7.90 or greater (#686608)
* Restore almost proper keeping track of recent files for those using
PyGObject 3.7.4 or greater (#678401, #695970)
* Restore zebra-stripes, which were previously discarded by some
GTK+ themes
* Mostly fix cell rendering speed issues with GTK+ 3.6 and later
* Add Czech translation (Pavel Fric)

Gaupol 0.21.1
=============

Expand Down
13 changes: 0 additions & 13 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
Gaupol 0.22
===========

[X] Restore drop-down arrows on undo and redo toolbar buttons for those
using PyGObject 3.7.90 or greater (#686608)
[X] Restore almost proper keeping track of recent files for those using
PyGObject 3.7.4 or greater (#678401, #695970)
[X] Restore zebra-stripes, which were previously discarded by some GTK+
themes (this is a hidden preference, which can be enabled/disabled
by editing gaupol's configuration file)
[X] Partially fix cell rendering speed issues with GTK+ 3.6 and later
[X] Add Czech translation (Pavel Fric)

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 @@ -87,7 +87,7 @@
import re
import sys

__version__ = "0.21.1"
__version__ = "0.22"

RUNNING_SPHINX = (sys.argv[0].endswith("autogen.py") or
sys.argv[0].endswith("sphinx-build"))
Expand Down
2 changes: 1 addition & 1 deletion data/extensions/bookmarks/bookmarks.extension.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Extension]
GaupolVersion=0.21.1
GaupolVersion=0.22
Module=bookmarks
Requires=side-pane;
_Name=Bookmarks
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Extension]
GaupolVersion=0.21.1
GaupolVersion=0.22
Module=custom-framerates
_Name=Custom Framerates
_Description=Allow use of non-standard framerates
Expand Down
2 changes: 1 addition & 1 deletion data/extensions/side-pane/side-pane.extension.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Extension]
GaupolVersion=0.21.1
GaupolVersion=0.22
Module=side-pane
_Name=Side Pane
_Description=A side pane that can be used by other extensions
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.1"
__version__ = "0.22"
COMBO_SEPARATOR = "<separator/>"

try:
Expand Down
2 changes: 1 addition & 1 deletion gaupol/dialogs/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(self, parent):
self.set_title(_("About Gaupol"))
self.set_program_name("Gaupol")
self.set_version(gaupol.__version__)
self.set_copyright("Copyright © 2005-2012 Osmo Salomaa")
self.set_copyright("Copyright © 2005-2013 Osmo Salomaa")
self.set_comments(_("Subtitle editor"))
self.set_license(_license)
self.set_wrap_license(True)
Expand Down

0 comments on commit c13f99a

Please sign in to comment.