Skip to content

Commit

Permalink
RELEASE 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Feb 2, 2019
1 parent 1dd536e commit c11a3a6
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 21 deletions.
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
2019-02-03: Gaupol 1.5
======================

* Add support for building a Flatpak
* Highlight changed parts in "Correct Texts" (#34)
* Add keybinding Ctrl+I for toggling italic (#118)
* Add keybinding Ctrl+I for toggling italic while editing (#118)
* Change keybinding for Invert Selection to Ctrl+J
* When opening multiple files, skip ones already open
* Adapt to various GTK+ deprecations
* Add 64x64 and 128x128 icons
* Update AppData XML file
* Bump iso-codes dependency to >= 3.67
* Update translations

2018-07-07: Gaupol 1.4.1
========================

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

* [ ] Add support for building a Flatpak
* [x] Highlight changed parts in "Correct Texts" (#34)
* [x] Add keybinding Ctrl+I for toggling italic (#118)
* [x] Add keybinding Ctrl+I for toggling italic while editing (#118)
* [x] Change keybinding for Invert Selection to Ctrl+J
* [x] When opening multiple files, skip ones already open
* [x] Adapt to various GTK+ deprecations
* [x] Add 64x64 and 128x128 icons
* [x] Update AppData XML file
* [x] Bump iso-codes dependency to >= 3.67
* [ ] Update translations
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.4.1"
__version__ = "1.5"

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.4.1
GaupolVersion=1.5
Module=custom-framerates
Name=Custom Framerates
Description=Allow use of non-standard framerates
Version=1.4.1
Version=1.5
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright © 2011 Osmo Salomaa;
Website=https://otsaloma.io/gaupol/
2 changes: 1 addition & 1 deletion data/gaupol.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<url type="translate">https://www.transifex.com/otsaloma/gaupol/</url>
<launchable type="desktop-id">gaupol.desktop</launchable>
<releases>
<release version="1.4.1" date="2018-07-07"/>
<release version="1.5" date="2019-02-03"/>
</releases>
<mimetypes>
<mimetype>application/x-subrip</mimetype>
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.4.1"
__version__ = "1.5"
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.4.1
AppVerName=Gaupol 1.5
AppPublisher=Osmo Salomaa
AppPublisherURL=https://otsaloma.io/gaupol/
DefaultDirName={pf}\Gaupol
DefaultGroupName=Gaupol
AllowNoIcons=yes
OutputDir=".."
OutputBaseFilename=gaupol-1.4.1-win32
OutputBaseFilename=gaupol-1.5-win32
Compression=lzma
SolidCompression=yes

Expand Down

0 comments on commit c11a3a6

Please sign in to comment.