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

Commit 6ff07dc

Browse files
committed
1.0.5
Signed-off-by: Jerome Flesch <[email protected]>
1 parent 55b72fb commit 6ff07dc

File tree

5 files changed

+10
-33
lines changed

5 files changed

+10
-33
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2016/11/22 - 1.0.5:
2+
- Setting the resolution on the scanner may not actually work. If it is not
3+
possible to set the resolution, fall back on the current one.
4+
- Improve tolerance to crappy scanner drivers: don't stop
5+
if pyinsane2.maximize_scan_area() fails
6+
17
2016/11/18 - 1.0.4:
28
- Windows: Fix import error dialog
39
- Windows: Fix GtkLinkButtons (didn't do anything when clicked)

README.markdown

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -128,34 +128,6 @@ they are stored in a separate Git repository:
128128
GPLv3 or later. See COPYING.
129129

130130

131-
## Archives
132-
133-
Github can automatically provide .tar.gz and .zip files if required. However,
134-
they are not required to install Paperwork. They are indicated here as a
135-
convenience for package maintainers.
136-
137-
* [Paperwork 1.0.4](https://github.com/jflesch/paperwork/archive/1.0.4.tar.gz)
138-
* [Paperwork 1.0.3](https://github.com/jflesch/paperwork/archive/1.0.3.tar.gz)
139-
* [Paperwork 1.0.2](https://github.com/jflesch/paperwork/archive/1.0.2.tar.gz)
140-
* [Paperwork 1.0.1](https://github.com/jflesch/paperwork/archive/1.0.1.tar.gz)
141-
* [Paperwork 1.0](https://github.com/jflesch/paperwork/archive/1.0.tar.gz)
142-
* [Paperwork 0.3.2](https://github.com/jflesch/paperwork/archive/0.3.2.tar.gz)
143-
* [Paperwork 0.3.1.1](https://github.com/jflesch/paperwork/archive/0.3.1.1.tar.gz)
144-
* [Paperwork 0.3.1](https://github.com/jflesch/paperwork/archive/0.3.1.tar.gz)
145-
* [Paperwork 0.3.0.1](https://github.com/jflesch/paperwork/archive/0.3.0.1.tar.gz)
146-
* [Paperwork 0.3.0](https://github.com/jflesch/paperwork/archive/0.3.0.tar.gz)
147-
* [Paperwork 0.2.5](https://github.com/jflesch/paperwork/archive/0.2.5.tar.gz)
148-
* [Paperwork 0.2.4](https://github.com/jflesch/paperwork/archive/0.2.4.tar.gz)
149-
* [Paperwork 0.2.3](https://github.com/jflesch/paperwork/archive/0.2.3.tar.gz)
150-
* [Paperwork 0.2.2](https://github.com/jflesch/paperwork/archive/0.2.2.tar.gz)
151-
* [Paperwork 0.2.1](https://github.com/jflesch/paperwork/archive/0.2.1.tar.gz)
152-
* [Paperwork 0.2](https://github.com/jflesch/paperwork/archive/0.2.tar.gz)
153-
* [Paperwork 0.1.3](https://github.com/jflesch/paperwork/archive/0.1.3.tar.gz)
154-
* [Paperwork 0.1.2](https://github.com/jflesch/paperwork/archive/0.1.2.tar.gz)
155-
* [Paperwork 0.1.1](https://github.com/jflesch/paperwork/archive/0.1.1.tar.gz)
156-
* [Paperwork 0.1](https://github.com/jflesch/paperwork/archive/0.1.tar.gz)
157-
158-
159131
## Development
160132

161133
All the information can be found on [the wiki](https://github.com/jflesch/paperwork/wiki#for-developers)

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@
2020
# src/paperwork/frontend/aboutdialog/aboutdialog.glade
2121
# * change it also in
2222
# src/paperwork/frontend/mainwindow/__init__.py:__version__
23-
# * update the archive list in the README
2423
# * update the dependency version on paperwork-backend
2524
# * update the public key in
2625
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
2726
# if required
28-
version="1.0.4",
27+
version="1.0.5",
2928
description=(
3029
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
3130
),
@@ -238,7 +237,7 @@
238237
"pyocr >= 0.3.0",
239238
"pypillowfight",
240239
"termcolor", # used by paperwork-chkdeps
241-
"paperwork-backend >= 1.0.4",
240+
"paperwork-backend >= 1.0.5",
242241
# paperwork-chkdeps take care of all the dependencies that can't be
243242
# handled here. For instance:
244243
# - 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.4</property>
13+
<property name="version">1.0.5</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.4'
82+
__version__ = '1.0.5'
8383

8484

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

0 commit comments

Comments
 (0)