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

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Flesch <[email protected]>
  • Loading branch information
jflesch committed Nov 17, 2016
1 parent f997e09 commit b42a361
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
2016/11/17 - 1.0.3:
- Windows: Fix opening of export dialog
- Application menu button: Make its style consistent with the other buttons in
the header bar
- Label list: Add a button to delete labels
- Label editor: Fix the reloading of the label list when a label has been
changed
- Label editor/Color picker: Fix the switch of the mouse cursor to a pipette
- Small Paperwork icons: add a discrete blue background to make the icon more
visible
- Main window: When on "new document", disable the page number entry field +
the view settings button
- Fix icons (application icon, main window, about dialog)


2016/11/13 - 1.0.2:
* Fix export dialog:
- Don't use GtkWidget.set_visible(False) / GtkWidget.set_visible(True)
Expand Down
1 change: 1 addition & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ 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.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)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# * update the public key in
# src/paperwork/frontend/activation/__init__.py:check_activation_key()
# if required
version="1.0.2",
version="1.0.3",
description=(
"Using scanner and OCR to grep dead trees the easy way (Linux only)"
),
Expand Down Expand Up @@ -238,7 +238,7 @@
"pyocr >= 0.3.0",
"pypillowfight",
"termcolor", # used by paperwork-chkdeps
"paperwork-backend >= 1.0.1", # paperwork-backend-1.0.1 == 1.0.2
"paperwork-backend >= 1.0.3", # paperwork-backend-1.0.1 == 1.0.2
# 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.2</property>
<property name="version">1.0.3</property>
<property name="copyright" translatable="yes">
</property>
<property name="comments" translatable="yes">Grep for Dead Trees</property>
Expand Down
7 changes: 3 additions & 4 deletions 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.2'
__version__ = '1.0.3'


# during tests, we have multiple instatiations of MainWindow(), but we must
Expand Down Expand Up @@ -1699,7 +1699,6 @@ def init_dialog(self):
}
connect_actions(self.main_win.export['actions'])


def open_dialog(self, to_export):
SimpleAction.do(self)

Expand Down Expand Up @@ -2606,7 +2605,6 @@ def __fix_css(self):
"""
settings = Gtk.Settings.get_default()
theme = settings.get_property("gtk-theme-name")
dark = settings.get_property("gtk-application-prefer-dark-theme")

css_fix = ""

Expand Down Expand Up @@ -2696,7 +2694,8 @@ def __init_window(self, widget_tree, config):

logo_path = os.path.join(
sys.prefix,
'share', 'icons', 'hicolor', 'scalable', 'apps', 'paperwork_halo.svg'
'share', 'icons', 'hicolor', 'scalable', 'apps',
'paperwork_halo.svg'
)
if os.access(logo_path, os.F_OK):
logo = GdkPixbuf.Pixbuf.new_from_file(logo_path)
Expand Down

0 comments on commit b42a361

Please sign in to comment.