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

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Flesch <[email protected]>
  • Loading branch information
jflesch committed Aug 26, 2017
1 parent e734733 commit 54659cb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2017/08/26 - 1.2.1:
- Add source code of Windows installer (NSIS installer) generator
- Scanner support / Multi-scan: Cancel also successful scan session. Otherwise
some scanner won't allow new scan sessions later.
- Remove gi version warnings when starting (thanks to Matthieu Coudron)
- Documentation: Add missing stdeb dependencies (thanks to Notkea)
- paperwork-shell: Fix command 'scan'
- paperwork-shell install: add docstring
- Fix dialog 'about'

2017/07/11 - 1.2.0:
- Installation: A new command has been added: "paperwork-shell install".
This command installs icons and shortcut in the desktop menus.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
# * update the public key in
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
# if required
version="1.2.post3",
version="1.2.1",
description=(
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
),
Expand All @@ -118,7 +118,7 @@
keywords="scanner ocr gui",
url="https://github.com/jflesch/paperwork",
download_url=("https://github.com/jflesch/paperwork"
"/archive/1.2.tar.gz"),
"/archive/1.2.1.tar.gz"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
Expand Down Expand Up @@ -156,7 +156,7 @@
"pypillowfight",
"pyxdg >= 0.25",
"termcolor", # used by paperwork-chkdeps
"paperwork-backend>=1.2,<1.3",
"paperwork-backend>=1.2.1,<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</property>
<property name="version">1.2.1</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'
__version__ = '1.2.1'


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

0 comments on commit 54659cb

Please sign in to comment.