diff --git a/Changelog.yaml b/Changelog.yaml index 4b4a3626a5..e0ddeb94fc 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -4,6 +4,14 @@ # for important features/bug fixes. # Also, each release can have new and improved recipes. +- version: 0.7.12 + date: 2010-07-30 + + bug fixes: + - title: "Fix a typo that caused a harmless error message after setting preferences" + + - title: "Linux build system: No longer search for poppler-qt4 libraries as they are not needed" + - version: 0.7.11 date: 2010-07-30 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index dc687cb2f6..0af364910c 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -2,7 +2,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = 'calibre' -__version__ = '0.7.11' +__version__ = '0.7.12' __author__ = "Kovid Goyal " import re diff --git a/src/calibre/gui2/ui.py b/src/calibre/gui2/ui.py index 1109a001c8..0b1091f848 100644 --- a/src/calibre/gui2/ui.py +++ b/src/calibre/gui2/ui.py @@ -376,7 +376,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, # {{{ if self.content_server is not None: self.content_server.state_callback = \ Dispatcher(self.content_server_state_changed) - self.content_server.state_callback(self.content_server.is_running) + self.content_server.state_callback(self.content_server.is_running) if d.result() == d.Accepted: self.read_toolbar_settings()