Skip to content
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.

Commit

Permalink
1.2.3
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Flesch <[email protected]>
  • Loading branch information
jflesch committed Feb 1, 2018
1 parent bc281e0 commit 6427df6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2018/02/01 - 1.2.3:
- Flatpak: Fix support of other GTK themes (Dark Adwaita, etc)
- French translations: shorten the translation of "Matching papers" because
otherwise it messes with the UI
- Export dialog: Clicking on export->{document|page} a second time will first
close the first export dialog.

2017/11/14 - 1.2.2:
- DnD: Fix double-delete: when moving the last page of a document
to another, don't delete the source document (it's up to the
Expand Down
1 change: 1 addition & 0 deletions data/work.openpaper.Paperwork.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<launchable type="desktop-id">work.openpaper.Paperwork.desktop</launchable>

<releases>
<release version="1.2.3" date="2018-02-01" urgency="medium" />
<release version="1.2.2" date="2017-11-14" urgency="medium" />
<release version="1.2.1" date="2017-08-26" urgency="medium" />
</releases>
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,6 @@
# * update src/paperwork/frontend/mainwindow/__init__.py:__version__
# * update the dependency version on paperwork-backend
# * update data/work.openpaper.Paperwork.appdata.xml:<releases>
# * update the public key in
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
# if required
#
# Release:
# * commit
Expand All @@ -101,7 +98,7 @@
# After the release:
# * add a file flatpak/<version>.json
# * update flatpak/release.json
version="1.2.2",
version="1.2.3",
description=(
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
),
Expand All @@ -127,7 +124,7 @@
keywords="scanner ocr gui",
url="https://github.com/openpaperwork/paperwork",
download_url=("https://github.com/openpaperwork/paperwork"
"/archive/1.2.2.tar.gz"),
"/archive/1.2.3.tar.gz"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
Expand Down Expand Up @@ -166,7 +163,7 @@
"pypillowfight",
"pyxdg >= 0.25",
"termcolor", # used by paperwork-chkdeps
"paperwork-backend>=1.2.2,<1.3",
"paperwork-backend>=1.2.3,<1.3",
# paperwork-chkdeps take care of all the dependencies that can't be
# handled here. For instance:
# - Dependencies using gobject introspection
Expand Down
2 changes: 1 addition & 1 deletion src/paperwork/frontend/aboutdialog/aboutdialog.glade
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<property name="destroy_with_parent">True</property>
<property name="type_hint">dialog</property>
<property name="program_name">Paperwork</property>
<property name="version">1.2.2</property>
<property name="version">1.2.3</property>
<property name="copyright" translatable="yes">
</property>
<property name="comments" translatable="yes">Grep for Dead Trees</property>
Expand Down
2 changes: 1 addition & 1 deletion src/paperwork/frontend/mainwindow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
logger = logging.getLogger(__name__)


__version__ = '1.2.2'
__version__ = '1.2.3'


# during tests, we have multiple instatiations of MainWindow(), but we must
Expand Down

0 comments on commit 6427df6

Please sign in to comment.