-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
54 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,19 +127,21 @@ | |
setup(name='pympress', | ||
version=pkg_meta.__version__, | ||
description='A simple dual-screen PDF reader designed for presentations', | ||
author='Thomas Jost, Cimbali, Christof Rath, Epithumia', | ||
author='Cimbali, Thomas Jost, Christof Rath, Epithumia', | ||
author_email='[email protected]', | ||
url='https://github.com/Cimbali/pympress/', | ||
download_url='https://github.com/Cimbali/pympress/releases/latest', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: X11 Applications :: GTK', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Information Technology', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License (GPL)', | ||
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX', | ||
'Natural Language :: French', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Multimedia :: Graphics :: Presentation', | ||
'Topic :: Multimedia :: Graphics :: Viewers', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ cd `dirname $p` | |
pot=pympress/share/locale/pympress.pot | ||
translated=`ls pympress/share/locale/*/*.po` | ||
opts="--no-location --no-wrap --sort-output" | ||
pkg="--package-name=Pympress --package-version=`git describe --abbrev=0` [email protected]" | ||
pkg="--package-name=Pympress --package-version=`git describe --tags --abbrev=0` [email protected]" | ||
|
||
xgettext -d python $opts $pkg -L Python --from-code utf-8 --keyword=_ pympress/*.py | ||
xgettext -d glade $opts $pkg -L glade --keyword=translatable pympress/share/*.glade | ||
xgettext -d glade $opts $pkg -L glade --keyword=translatable pympress/share/xml/*.glade | ||
|
||
sed -i 's/CHARSET/UTF-8/g' python.po glade.po | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
# DON'T IMPORT ANYTHING HERE (OR YOU WILL BREAK setup.py) | ||
# | ||
|
||
__version__ = '0.6' | ||
__version__ = '1.0' | ||
__copyright__= """2009, 2010 Thomas Jost <[email protected]> | ||
2015-2017 Cimbali <[email protected]> | ||
2016 Christoph Rath <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,19 +29,21 @@ | |
setup(name='pympress', | ||
version=pkg_meta.__version__, | ||
description='A simple dual-screen PDF reader designed for presentations', | ||
author='Thomas Jost, Cimbali, Christof Rath, Epithumia', | ||
author='Cimbali, Thomas Jost, Christof Rath, Epithumia', | ||
author_email='[email protected]', | ||
url='https://github.com/Cimbali/pympress/', | ||
download_url='https://github.com/Cimbali/pympress/releases/latest', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: X11 Applications :: GTK', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Information Technology', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License (GPL)', | ||
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX', | ||
'Natural Language :: French', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Multimedia :: Graphics :: Presentation', | ||
'Topic :: Multimedia :: Graphics :: Viewers', | ||
|