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

Commit 042bb03

Browse files
committed
1.0.4
Signed-off-by: Jerome Flesch <[email protected]>
1 parent 2919177 commit 042bb03

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2016/11/18 - 1.0.4:
2+
- Windows: Fix import error dialog
3+
- Windows: Fix GtkLinkButtons (didn't do anything when clicked)
4+
15
2016/11/17 - 1.0.3:
26
- Windows: Fix opening of export dialog
37
- Application menu button: Make its style consistent with the other buttons in

README.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ Github can automatically provide .tar.gz and .zip files if required. However,
134134
they are not required to install Paperwork. They are indicated here as a
135135
convenience for package maintainers.
136136

137+
* [Paperwork 1.0.4](https://github.com/jflesch/paperwork/archive/1.0.4.tar.gz)
137138
* [Paperwork 1.0.3](https://github.com/jflesch/paperwork/archive/1.0.3.tar.gz)
138139
* [Paperwork 1.0.2](https://github.com/jflesch/paperwork/archive/1.0.2.tar.gz)
139140
* [Paperwork 1.0.1](https://github.com/jflesch/paperwork/archive/1.0.1.tar.gz)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# * update the public key in
2626
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
2727
# if required
28-
version="1.0.3.1",
28+
version="1.0.4",
2929
description=(
3030
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
3131
),
@@ -238,7 +238,7 @@
238238
"pyocr >= 0.3.0",
239239
"pypillowfight",
240240
"termcolor", # used by paperwork-chkdeps
241-
"paperwork-backend >= 1.0.3", # paperwork-backend-1.0.1 == 1.0.2
241+
"paperwork-backend >= 1.0.4",
242242
# paperwork-chkdeps take care of all the dependencies that can't be
243243
# handled here. For instance:
244244
# - Dependencies using gobject introspection

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.0.3</property>
13+
<property name="version">1.0.4</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.0.3'
82+
__version__ = '1.0.4'
8383

8484

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

0 commit comments

Comments
 (0)