Skip to content

Commit

Permalink
RELEASE 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Jan 21, 2023
1 parent 9b34a91 commit 60cab54
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PENDING: Gaupol 1.12
====================
2023-01-21: Gaupol 1.12
=======================

* Don't remember window position on screen (seems more common and better
left to the window manager)
* Fix cursor construction error (#202)
* Fix cursor construction error on Wayland (#202)

2022-04-03: Gaupol 1.11
=======================
Expand Down
2 changes: 1 addition & 1 deletion aeidon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
import re
import sys

__version__ = "1.11"
__version__ = "1.12"

RUNNING_SPHINX = (sys.argv[0].endswith("autogen.py") or
sys.argv[0].endswith("sphinx-build"))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- conf -*-

[Extension]
GaupolVersion=1.11
GaupolVersion=1.12
Module=custom-framerates
Name=Custom Framerates
Description=Allow use of non-standard framerates
Version=1.10
Version=1.12
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright © 2011 Osmo Salomaa;
Website=https://otsaloma.io/gaupol/
1 change: 1 addition & 0 deletions data/io.otsaloma.gaupol.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<url type="translate">https://www.transifex.com/otsaloma/gaupol/</url>
<launchable type="desktop-id">io.otsaloma.gaupol.desktop</launchable>
<releases>
<release version="1.12" date="2023-01-21"/>
<release version="1.11" date="2022-04-03"/>
<release version="1.10.1" date="2021-10-06"/>
<release version="1.10" date="2021-09-30"/>
Expand Down
2 changes: 1 addition & 1 deletion gaupol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""GTK user interface for the Gaupol subtitle editor."""

__version__ = "1.11"
__version__ = "1.12"
COMBO_SEPARATOR = "<separator/>"

import sys
Expand Down
2 changes: 1 addition & 1 deletion gaupol/dialogs/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, parent):
self.set_artists(("Osmo Salomaa <[email protected]>",))
self.set_authors(("Osmo Salomaa <[email protected]>",))
self.set_comments(_("Subtitle editor"))
self.set_copyright("Copyright © 2005–2022 Osmo Salomaa")
self.set_copyright("Copyright © 2005–2023 Osmo Salomaa")
self.set_license_type(Gtk.License.GPL_3_0)
self.set_logo_icon_name("io.otsaloma.gaupol")
self.set_program_name("Gaupol")
Expand Down

0 comments on commit 60cab54

Please sign in to comment.