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

Commit 21b9a80

Browse files
committed
Prepare 1.0
Signed-off-by: Jerome Flesch <[email protected]>
1 parent bf0043d commit 21b9a80

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
2016/11/09 - 1.0:
12
* Export: generated PDF now includes the text from the OCR
23
* New command 'paperwork-shell scan' that starts Paperwork and immediately
34
tries to scan a page
@@ -24,6 +25,7 @@
2425
* Switch from Pyinsane to Pyinsane2
2526
* Fix file descriptor leak related to PDFs
2627
* Add a dialog to help bug diagnostics
28+
* Replace gnome spinner by a custom spinner
2729

2830

2931
2016/04/06 - 0.3.2:

README.markdown

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

118+
* [Paperwork 1.0](https://github.com/jflesch/paperwork/archive/1.0.tar.gz)
118119
* [Paperwork 0.3.2](https://github.com/jflesch/paperwork/archive/0.3.2.tar.gz)
119120
* [Paperwork 0.3.1.1](https://github.com/jflesch/paperwork/archive/0.3.1.1.tar.gz)
120121
* [Paperwork 0.3.1](https://github.com/jflesch/paperwork/archive/0.3.1.tar.gz)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
"pyocr >= 0.3.0",
203203
"pypillowfight",
204204
"termcolor", # used by paperwork-chkdeps
205-
"paperwork-backend >= 0.4",
205+
"paperwork-backend >= 1.0",
206206
# paperwork-chkdeps take care of all the dependencies that can't be
207207
# handled here. For instance:
208208
# - 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-git</property>
13+
<property name="version">1.0</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-git'
82+
__version__ = '1.0'
8383

8484

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

0 commit comments

Comments
 (0)