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

Commit 751eb0c

Browse files
committed
1.0.2
Signed-off-by: Jerome Flesch <[email protected]>
1 parent 6fe1c4f commit 751eb0c

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2016/11/13 - 1.0.2:
2+
* Fix export dialog:
3+
- Don't use GtkWidget.set_visible(False) / GtkWidget.set_visible(True)
4+
anymore to avoid weird GTK behavior when reopening
5+
- Fix endless loop that occured with some versions of the GLib
6+
* French translations: "Scanner" --> "Numeriser"
7+
* Windows support: Fix translations support
8+
* CSS: Add small padding to make sure the GtkEntry and GtkButton in the header
9+
bar all have the same heights on all environments.
10+
* Fix menu icon: Add PNG versions of the PAperwork icon.
11+
12+
113
2016/11/10 - 1.0.1:
214
* Config: Fix pycountry db lookup (prevent Paperwork's first start)
315
* Pyinstaller: Add .ico + .png in the package

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.2](https://github.com/jflesch/paperwork/archive/1.0.2.tar.gz)
137138
* [Paperwork 1.0.1](https://github.com/jflesch/paperwork/archive/1.0.1.tar.gz)
138139
* [Paperwork 1.0](https://github.com/jflesch/paperwork/archive/1.0.tar.gz)
139140
* [Paperwork 0.3.2](https://github.com/jflesch/paperwork/archive/0.3.2.tar.gz)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# src/paperwork/frontend/mainwindow/__init__.py:__version__
2323
# * update the archive list in the README
2424
# * update the dependency version on paperwork-backend
25-
version="1.0.1",
25+
version="1.0.2",
2626
description=(
2727
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
2828
),
@@ -235,7 +235,7 @@
235235
"pyocr >= 0.3.0",
236236
"pypillowfight",
237237
"termcolor", # used by paperwork-chkdeps
238-
"paperwork-backend >= 1.0.1",
238+
"paperwork-backend >= 1.0.1", # paperwork-backend-1.0.1 == 1.0.2
239239
# paperwork-chkdeps take care of all the dependencies that can't be
240240
# handled here. For instance:
241241
# - 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.1</property>
13+
<property name="version">1.0.2</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.1'
82+
__version__ = '1.0.2'
8383

8484

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

0 commit comments

Comments
 (0)