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

Commit

Permalink
1.0.5
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Flesch <[email protected]>
  • Loading branch information
jflesch committed Nov 22, 2016
1 parent 55b72fb commit 6ff07dc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 33 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2016/11/22 - 1.0.5:
- Setting the resolution on the scanner may not actually work. If it is not
possible to set the resolution, fall back on the current one.
- Improve tolerance to crappy scanner drivers: don't stop
if pyinsane2.maximize_scan_area() fails

2016/11/18 - 1.0.4:
- Windows: Fix import error dialog
- Windows: Fix GtkLinkButtons (didn't do anything when clicked)
Expand Down
28 changes: 0 additions & 28 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -128,34 +128,6 @@ they are stored in a separate Git repository:
GPLv3 or later. See COPYING.


## Archives

Github can automatically provide .tar.gz and .zip files if required. However,
they are not required to install Paperwork. They are indicated here as a
convenience for package maintainers.

* [Paperwork 1.0.4](https://github.com/jflesch/paperwork/archive/1.0.4.tar.gz)
* [Paperwork 1.0.3](https://github.com/jflesch/paperwork/archive/1.0.3.tar.gz)
* [Paperwork 1.0.2](https://github.com/jflesch/paperwork/archive/1.0.2.tar.gz)
* [Paperwork 1.0.1](https://github.com/jflesch/paperwork/archive/1.0.1.tar.gz)
* [Paperwork 1.0](https://github.com/jflesch/paperwork/archive/1.0.tar.gz)
* [Paperwork 0.3.2](https://github.com/jflesch/paperwork/archive/0.3.2.tar.gz)
* [Paperwork 0.3.1.1](https://github.com/jflesch/paperwork/archive/0.3.1.1.tar.gz)
* [Paperwork 0.3.1](https://github.com/jflesch/paperwork/archive/0.3.1.tar.gz)
* [Paperwork 0.3.0.1](https://github.com/jflesch/paperwork/archive/0.3.0.1.tar.gz)
* [Paperwork 0.3.0](https://github.com/jflesch/paperwork/archive/0.3.0.tar.gz)
* [Paperwork 0.2.5](https://github.com/jflesch/paperwork/archive/0.2.5.tar.gz)
* [Paperwork 0.2.4](https://github.com/jflesch/paperwork/archive/0.2.4.tar.gz)
* [Paperwork 0.2.3](https://github.com/jflesch/paperwork/archive/0.2.3.tar.gz)
* [Paperwork 0.2.2](https://github.com/jflesch/paperwork/archive/0.2.2.tar.gz)
* [Paperwork 0.2.1](https://github.com/jflesch/paperwork/archive/0.2.1.tar.gz)
* [Paperwork 0.2](https://github.com/jflesch/paperwork/archive/0.2.tar.gz)
* [Paperwork 0.1.3](https://github.com/jflesch/paperwork/archive/0.1.3.tar.gz)
* [Paperwork 0.1.2](https://github.com/jflesch/paperwork/archive/0.1.2.tar.gz)
* [Paperwork 0.1.1](https://github.com/jflesch/paperwork/archive/0.1.1.tar.gz)
* [Paperwork 0.1](https://github.com/jflesch/paperwork/archive/0.1.tar.gz)


## Development

All the information can be found on [the wiki](https://github.com/jflesch/paperwork/wiki#for-developers)
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@
# src/paperwork/frontend/aboutdialog/aboutdialog.glade
# * change it also in
# src/paperwork/frontend/mainwindow/__init__.py:__version__
# * update the archive list in the README
# * update the dependency version on paperwork-backend
# * update the public key in
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
# if required
version="1.0.4",
version="1.0.5",
description=(
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
),
Expand Down Expand Up @@ -238,7 +237,7 @@
"pyocr >= 0.3.0",
"pypillowfight",
"termcolor", # used by paperwork-chkdeps
"paperwork-backend >= 1.0.4",
"paperwork-backend >= 1.0.5",
# paperwork-chkdeps take care of all the dependencies that can't be
# handled here. For instance:
# - Dependencies using gobject introspection
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.0.4</property>
<property name="version">1.0.5</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.0.4'
__version__ = '1.0.5'


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

0 comments on commit 6ff07dc

Please sign in to comment.