version 0.7.12

This commit is contained in:
Kovid Goyal 2010-07-30 19:03:37 -06:00
parent 9e7fbc20ff
commit af52d6eb68
3 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,14 @@
# for important features/bug fixes. # for important features/bug fixes.
# Also, each release can have new and improved recipes. # 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 - version: 0.7.11
date: 2010-07-30 date: 2010-07-30

View File

@ -2,7 +2,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'
__appname__ = 'calibre' __appname__ = 'calibre'
__version__ = '0.7.11' __version__ = '0.7.12'
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
import re import re

View File

@ -376,7 +376,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, # {{{
if self.content_server is not None: if self.content_server is not None:
self.content_server.state_callback = \ self.content_server.state_callback = \
Dispatcher(self.content_server_state_changed) 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: if d.result() == d.Accepted:
self.read_toolbar_settings() self.read_toolbar_settings()