Skip to content

Commit

Permalink
RELEASE 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Jun 3, 2010
1 parent d9af34a commit 4acf15c
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 56 deletions.
50 changes: 50 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
Gaupol 0.16
===========

* Split general-purpose, user-interface-independent subtitle editing
code to a separate Python package called 'aeidon' while keeping the
GTK+ user interface code under the package 'gaupol'. Allow
installation of these two packages separate of one another.
Developers and packagers are encouraged to read './setup.py --help'
message and the file 'README.aeidon'. (Fixes #595809 and should
allow fixing the likes of Debian bug #569983.)
* Save menu item keybindings to a GtkAccelMap rc-file in the user's
configuration directory
* Have the interactive search look for times instead of subtitle
numbers if the search string contains a colon (fixes #609176)
* Add miscellaneous Latin common error corrections patterns
* Add help menu item to browse wiki documentation at
http://live.gnome.org/Gaupol
* Increase size of line length superscripts shown in list cells
* Fix focus changing when pasting subtitles
* Use gtk.RecentAction for recent file menus (fixes #615372 and
probably #608951)
* Work around a subprocess error launching video player on Windows
systems, which resulted in "TypeError: environment can only contain
strings" (fixes #605805)
* Fix handling of Unicode BOMs that broke as a result of a hasty fix
for subtitle file reading functions for 0.15.1
* Fix hearing impaired text removal pattern "Speaker before a colon"
to not remove too much (fixes #618529)
* Apply GNOME Goal: Correct Desktop Files
* Migrate from Glade to GtkBuilder
* Use attributes instead of markup in GtkBuilder files
* Fix GtkBuilder constructed buttons to respect user preferences
regarding whether or not to show icons in buttons
* Use Python's JSON module instead of ConfigObj and Validate for
reading and writing configuration files
* Use enchant's user spell-check dictionaries (usually stored in
$HOME/.config/enchant) instead gaupol-specific ones
* Use copies of iso-codes XML files shipped with gaupol only as a
fallback if they are not found under /usr/share/xml/iso-codes
* Add global options --with-iso-codes and --without-iso-codes to
setup.py to control whether or not to install iso-codes XML files
(This means that packagers can use --without-iso-codes and mark the
iso-codes package as a hard dependency to avoid duplicate files)
* Probably fix i18n issues with Unicode ellipses of menu items
* Fix i18n issues with locale codes and their fallbacks used in
pattern files for 'Name' and 'Description' fields
* Raise Python dependency to 2.6
* Raise PyGTK dependency to 2.16
* Raise PyEnchant dependency to 1.4.0

Gaupol 0.15.1
=============

Expand Down
52 changes: 1 addition & 51 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,57 +1,7 @@
Gaupol 0.16
===========

* Split general-purpose, user interface independent subtitle editing
code to a separate Python package called 'aeidon' while keeping the
GTK+ user interface code under the package 'gaupol'. Allow
installation of these two packages separate of one another.
Developers and packagers are encouraged to read './setup.py --help'
message and the file 'README.aeidon'. (Fixes #595809 and should
allow fixing the likes of Debian bug #569983.)
* Save menu item keybindings to a GtkAccelMap rc-file in the user's
configuration directory
* Have the interactive search look for times instead of subtitle
numbers if the search string contains a colon (fixes #609176)
* Add miscellaneous Latin common error corrections patterns
* Add help menu item to browse wiki documentation at
http://live.gnome.org/Gaupol
* Increase size of line length superscripts shown in list cells
* Fix focus changing when pasting subtitles
* Use gtk.RecentAction for recent file menus (fixes #615372 and
probably #608951)
* Work around a subprocess error launching video player on Windows
systems, which resulted in "TypeError: environment can only contain
strings" (fixes #605805)
* Fix handling of Unicode BOMs that broke as a result of a hasty fix
for subtitle file reading functions for 0.15.1
* Fix hearing impaired text removal pattern "Speaker before a colon"
to not remove too much (fixes #618529)
* Apply GNOME Goal: Correct Desktop Files
* Migrate from Glade to GtkBuilder
* Use attributes instead of markup in GtkBuilder files
* Fix GtkBuilder constructed buttons to respect user preferences
regarding whether or not to show icons in buttons
* Use Python's JSON module instead of ConfigObj and Validate for
reading and writing configuration files
* Use enchant's user spell-check dictionaries (usually stored in
$HOME/.config/enchant) instead gaupol-specific ones
* Use copies of iso-codes XML files shipped with gaupol only as a
fallback if they are not found under /usr/share/xml/iso-codes
* Add global options --with-iso-codes and --without-iso-codes to
setup.py to control whether or not to install iso-codes XML files
(This means that packagers can use --without-iso-codes and mark the
iso-codes package as a hard dependency to avoid duplicate files)
* Probably fix i18n issues with Unicode ellipses of menu items
* Fix i18n issues with locale codes and their fallbacks used in
pattern files for 'Name' and 'Description' fields
* Raise Python dependency to 2.6
* Raise PyGTK dependency to 2.16
* Raise PyEnchant dependency to 1.4.0

Gaupol 0.17
===========

* Add gaupol.View.add_column, which creates a new model
* Add gaupol.View.add_column, which creates a new model?
* Copy key-event hack from gedit for sidepane?
- http://mail.gnome.org/archives/desktop-devel-list/2009-November/msg00263.html
* Use decorator module to preserve signatures in API documentation?
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.15.99"
__version__ = "0.16"

debug = (bool(os.environ.get("AEIDON_DEBUG", "")) or
bool(os.environ.get("GAUPOL_DEBUG", "")))
Expand Down
2 changes: 1 addition & 1 deletion data/extensions/bookmarks/bookmarks.gaupol-extension.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Gaupol Extension]
GaupolVersion=0.15.99
GaupolVersion=0.16
Module=bookmarks
Requires=side-pane;
_Name=Bookmarks
Expand Down
2 changes: 1 addition & 1 deletion data/extensions/side-pane/side-pane.gaupol-extension.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Gaupol Extension]
GaupolVersion=0.15.99
GaupolVersion=0.16
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 @@ -43,7 +43,7 @@
import gtk
import os

__version__ = "0.15.99"
__version__ = "0.16"

COMBO_SEPARATOR = "<separator/>"

Expand Down
2 changes: 1 addition & 1 deletion po/gaupol.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-05-23 19:45+0300\n"
"POT-Creation-Date: 2010-06-03 03:31+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down

0 comments on commit 4acf15c

Please sign in to comment.