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

Commit 625ad84

Browse files
committed
1.1.1
Signed-off-by: Jerome Flesch <[email protected]>
1 parent dc28316 commit 625ad84

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2017/02/05 - 1.1.1:
2+
- Fix document list refresh problem (mostly visible on Ubuntu)
3+
14
2017/01/30 - 1.1.0:
25
- Windows: Activation mechanism has been disabled for now
36
- Workarounds for Gtk-3.20.x / GLib 2.50 (Ubuntu):

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
setup(
1616
name="paperwork",
1717
# if you change the version, don't forget to
18+
# * update the download_url in this file
1819
# * update the ChangeLog file
1920
# * update AUTHORS
2021
# * change it also in
@@ -25,7 +26,7 @@
2526
# * update the public key in
2627
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
2728
# if required
28-
version="1.1",
29+
version="1.1.1",
2930
description=(
3031
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
3132
),
@@ -51,7 +52,7 @@
5152
keywords="scanner ocr gui",
5253
url="https://github.com/jflesch/paperwork",
5354
download_url=("https://github.com/jflesch/paperwork"
54-
"/archive/unstable.tar.gz"),
55+
"/archive/1.1.1.tar.gz"),
5556
classifiers=[
5657
"Development Status :: 5 - Production/Stable",
5758
"Environment :: X11 Applications :: GTK",

src/paperwork/frontend/aboutdialog/aboutdialog.glade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<property name="destroy_with_parent">True</property>
1111
<property name="type_hint">dialog</property>
1212
<property name="program_name">Paperwork</property>
13-
<property name="version">1.1</property>
13+
<property name="version">1.1.1</property>
1414
<property name="copyright" translatable="yes">
1515
</property>
1616
<property name="comments" translatable="yes">Grep for Dead Trees</property>

src/paperwork/frontend/mainwindow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
logger = logging.getLogger(__name__)
8080

8181

82-
__version__ = '1.1'
82+
__version__ = '1.1.1'
8383

8484

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

0 commit comments

Comments
 (0)