Skip to content

Commit

Permalink
RELEASE 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed May 1, 2018
1 parent 66eab0c commit bee446a
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 19 deletions.
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2018-05-01: Gaupol 1.4
======================

* Update the `--video-file` argument to not just select the video
file, but also load it in the internal video player (#75)
* Fix subtitles with special characters not being displayed by
the internal video player (#74)
* Fix seeking to selection start if at less than one second (#76)
* Fix pasting texts from outside Gaupol, e.g. from a text editor
* Update checks for required GStreamer elements (#73)
* Update translations

2017-11-12: Gaupol 1.3.1
========================

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

* [x] Update the `--video-file` argument to not just select the video
file, but also load it in the internal video player (#75)
* [x] Fix subtitles with special characters not being displayed by
the internal video player (#74)
* [x] Fix seeking to selection start if at less than one second (#76)
* [x] Fix pasting texts from outside Gaupol, e.g. from a text editor
* [x] Mark gst-plugins-bad as required for using the built-in video
player, due to the switch from autovideosink to gtksink that
happened in Gaupol 1.3 (#73)
* [ ] 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.3.1"
__version__ = "1.4"

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.3.1
GaupolVersion=1.4
Module=custom-framerates
Name=Custom Framerates
Description=Allow use of non-standard framerates
Version=1.3.1
Version=1.4
Authors=Osmo Salomaa <[email protected]>;
Copyright=Copyright © 2011 Osmo Salomaa;
Website=https://otsaloma.io/gaupol/
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.3.1"
__version__ = "1.4"
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.3.1
AppVerName=Gaupol 1.4
AppPublisher=Osmo Salomaa
AppPublisherURL=https://otsaloma.io/gaupol/
DefaultDirName={pf}\Gaupol
DefaultGroupName=Gaupol
AllowNoIcons=yes
OutputDir=".."
OutputBaseFilename=gaupol-1.3.1-win32
OutputBaseFilename=gaupol-1.4-win32
Compression=lzma
SolidCompression=yes

Expand Down

0 comments on commit bee446a

Please sign in to comment.