Skip to content

Commit

Permalink
Release v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cimbali committed Nov 22, 2021
1 parent 8ff6a7a commit 9cfab3e
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pympress/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# DON'T IMPORT ANYTHING HERE (OR YOU WILL BREAK setup.py)
#

__version__ = '1.7.0b4'
__version__ = '1.7.0'
__author__ = """2009, 2010 Thomas Jost <thomas.jost@gmail.com>
2015-2020 Cimbali <me@cimba.li>
2016 Christoph Rath <christof.rath@iaik.tugraz.at>
Expand Down
2 changes: 1 addition & 1 deletion pympress/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def uncaught_handler(*exc_info):


try:
# python 2.7 does not have this
# python <3.6 does not have this
ModuleNotFoundError
except NameError:
ModuleNotFoundError = ImportError
Expand Down
12 changes: 12 additions & 0 deletions pympress/share/locale/cs/LC_MESSAGES/pympress.po
Original file line number Diff line number Diff line change
Expand Up @@ -1017,3 +1017,15 @@ msgstr ""
msgid "notes"
msgstr ""

#:
msgid "Highlighting"
msgstr ""

#:
msgid "Layout to draw on the current slide"
msgstr ""

#:
msgid "highlighting"
msgstr ""

12 changes: 12 additions & 0 deletions pympress/share/locale/de/LC_MESSAGES/pympress.po
Original file line number Diff line number Diff line change
Expand Up @@ -1017,3 +1017,15 @@ msgstr ""
msgid "notes"
msgstr ""

#:
msgid "Highlighting"
msgstr ""

#:
msgid "Layout to draw on the current slide"
msgstr ""

#:
msgid "highlighting"
msgstr ""

12 changes: 12 additions & 0 deletions pympress/share/locale/es/LC_MESSAGES/pympress.po
Original file line number Diff line number Diff line change
Expand Up @@ -1017,3 +1017,15 @@ msgstr ""
msgid "notes"
msgstr ""

#:
msgid "Highlighting"
msgstr ""

#:
msgid "Layout to draw on the current slide"
msgstr ""

#:
msgid "highlighting"
msgstr ""

12 changes: 12 additions & 0 deletions pympress/share/locale/fr/LC_MESSAGES/pympress.po
Original file line number Diff line number Diff line change
Expand Up @@ -1017,3 +1017,15 @@ msgstr "Sans notes"
msgid "notes"
msgstr ""

#:
msgid "Highlighting"
msgstr ""

#:
msgid "Layout to draw on the current slide"
msgstr ""

#:
msgid "highlighting"
msgstr ""

12 changes: 12 additions & 0 deletions pympress/share/locale/pl/LC_MESSAGES/pympress.po
Original file line number Diff line number Diff line change
Expand Up @@ -1022,3 +1022,15 @@ msgstr ""
msgid "notes"
msgstr ""

#:
msgid "Highlighting"
msgstr ""

#:
msgid "Layout to draw on the current slide"
msgstr ""

#:
msgid "highlighting"
msgstr ""

19 changes: 12 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -121,19 +121,24 @@ statistics = true
[pysrpm]
flavour = pympress
requires =
%%{py3_dist watchdog}
%%{!?typelib_deps:gtk3 gdk-pixbuf2 poppler-glib gobject-introspection}
%%{?typelib_deps:typelib(cairo) typelib(GLib) typelib(DBus) typelib(DBusGLib) typelib(GObject) typelib(Gdk) typelib(GdkPixbuf) typelib(Gio) typelib(Gtk) typelib(Poppler)}
%%{!?suse_version:python%%%%{python3_version}dist(pygobject)}
gtk3 gdk-pixbuf2 poppler-glib gobject-introspection gstreamer gstreamer-plugins-base gstreamer-plugins-good
%%{?typelib_deps:typelib(cairo) typelib(GLib) typelib(DBus) typelib(DBusGLib) typelib(GObject) typelib(Gdk) typelib(GdkPixbuf) typelib(Gio) typelib(Gtk) typelib(Poppler) typelib(Gst)}
%%{!?suse_version:python%%{python3_version}dist(pygobject)}
%%{!?mga_version:python3-gobject}
%%{py3_dist watchdog}

recommends = gstreamer-plugins-ugly gstreamer-plugins-bad

[pysrpm.pympress]
preamble =
%%define normalize() %%(echo %%* | tr "[:upper:]_ " "[:lower:]--")
%%{?!py3_dist:%%define py3_dist() (python%%{{python3_version}}dist(%%{{normalize %%1}}) or python3-%%1)}
%%{?suse_version:%%define typelib_deps 1}
%%{?mga_version:%%define typelib_deps 1}
%%{{?!py3_dist:%%define py3_dist() (python%%{{python3_version}}dist(%%{{normalize %%1}}) or python3-%%1)}}
%%{{?suse_version:%%define typelib_deps 1}}
%%{{?mga_version:%%define typelib_deps 1}}
${base:preamble}
%%if %%{{?!rhel:8}}%%{{?rhel}} >= 8
Recommends: ${recommends}
%%endif

post = ${base:post}
if [ $$1 -gt 1 ]; then
Expand Down

0 comments on commit 9cfab3e

Please sign in to comment.