Skip to content

Commit

Permalink
RELEASE 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Sep 30, 2021
1 parent 02ec543 commit eb54974
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 13 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2021-09-30: Gaupol 1.10
=======================

* Fix subtitle display when seeking to selection start (#181)
* Fix search dialog result sometimes not being selected
* Fix rare RecursionError with spell-check

2020-12-31: Gaupol 1.9
======================

Expand Down
6 changes: 0 additions & 6 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
Gaupol 1.10
===========

* [x] Fix subtitle display when seeking to selection start (#181)
* [x] Fix search dialog result sometimes not being selected
* [x] Fix rare RecursionError with spell-check
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.9"
__version__ = "1.10"

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.9
GaupolVersion=1.10
Module=custom-framerates
Name=Custom Framerates
Description=Allow use of non-standard framerates
Version=1.9
Version=1.10
Authors=Osmo Salomaa <otsaloma@iki.fi>;
Copyright=Copyright © 2011 Osmo Salomaa;
Website=https://otsaloma.io/gaupol/
3 changes: 2 additions & 1 deletion data/io.otsaloma.gaupol.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
<url type="translate">https://www.transifex.com/otsaloma/gaupol/</url>
<launchable type="desktop-id">io.otsaloma.gaupol.desktop</launchable>
<releases>
<release version="1.9" date="2020-12-31"/>
<release version="1.10" date="2021-09-30"/>
<release version="1.9" date="2020-12-31"/>
</releases>
<provides>
<mediatype>application/x-subrip</mediatype>
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.9"
__version__ = "1.10"
COMBO_SEPARATOR = "<separator/>"

import sys
Expand Down
4 changes: 2 additions & 2 deletions win32/gaupol.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

[Setup]
AppName=Gaupol
AppVerName=Gaupol 1.9
AppVerName=Gaupol 1.10
AppPublisher=Osmo Salomaa
AppPublisherURL=https://otsaloma.io/gaupol/
DefaultDirName={pf}\Gaupol
DefaultGroupName=Gaupol
AllowNoIcons=yes
OutputDir=".."
OutputBaseFilename=gaupol-1.9-win32
OutputBaseFilename=gaupol-1.10-win32
Compression=lzma
SolidCompression=yes

Expand Down

0 comments on commit eb54974

Please sign in to comment.