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

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Flesch <[email protected]>
  • Loading branch information
jflesch committed Feb 5, 2017
1 parent dc28316 commit 625ad84
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2017/02/05 - 1.1.1:
- Fix document list refresh problem (mostly visible on Ubuntu)

2017/01/30 - 1.1.0:
- Windows: Activation mechanism has been disabled for now
- Workarounds for Gtk-3.20.x / GLib 2.50 (Ubuntu):
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
setup(
name="paperwork",
# if you change the version, don't forget to
# * update the download_url in this file
# * update the ChangeLog file
# * update AUTHORS
# * change it also in
Expand All @@ -25,7 +26,7 @@
# * update the public key in
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
# if required
version="1.1",
version="1.1.1",
description=(
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
),
Expand All @@ -51,7 +52,7 @@
keywords="scanner ocr gui",
url="https://github.com/jflesch/paperwork",
download_url=("https://github.com/jflesch/paperwork"
"/archive/unstable.tar.gz"),
"/archive/1.1.1.tar.gz"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
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.1</property>
<property name="version">1.1.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 @@ -79,7 +79,7 @@
logger = logging.getLogger(__name__)


__version__ = '1.1'
__version__ = '1.1.1'


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

0 comments on commit 625ad84

Please sign in to comment.