From b42a361a91bb0ced36305165f2c2338ae4c44924 Mon Sep 17 00:00:00 2001 From: Jerome Flesch Date: Thu, 17 Nov 2016 23:58:28 +0100 Subject: [PATCH] 1.0.3 Signed-off-by: Jerome Flesch --- ChangeLog | 15 +++++++++++++++ README.markdown | 1 + setup.py | 4 ++-- .../frontend/aboutdialog/aboutdialog.glade | 2 +- src/paperwork/frontend/mainwindow/__init__.py | 7 +++---- 5 files changed, 22 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7e938a2a..d3995788 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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) diff --git a/README.markdown b/README.markdown index 067e0b97..a8935ad2 100644 --- a/README.markdown +++ b/README.markdown @@ -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) diff --git a/setup.py b/setup.py index d4b394c3..0a186a5e 100755 --- a/setup.py +++ b/setup.py @@ -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)" ), @@ -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 diff --git a/src/paperwork/frontend/aboutdialog/aboutdialog.glade b/src/paperwork/frontend/aboutdialog/aboutdialog.glade index 1a000687..d8c992fc 100644 --- a/src/paperwork/frontend/aboutdialog/aboutdialog.glade +++ b/src/paperwork/frontend/aboutdialog/aboutdialog.glade @@ -10,7 +10,7 @@ True dialog Paperwork - 1.0.2 + 1.0.3 Grep for Dead Trees diff --git a/src/paperwork/frontend/mainwindow/__init__.py b/src/paperwork/frontend/mainwindow/__init__.py index ee02f486..c97c45c8 100644 --- a/src/paperwork/frontend/mainwindow/__init__.py +++ b/src/paperwork/frontend/mainwindow/__init__.py @@ -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 @@ -1699,7 +1699,6 @@ def init_dialog(self): } connect_actions(self.main_win.export['actions']) - def open_dialog(self, to_export): SimpleAction.do(self) @@ -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 = "" @@ -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)