mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 18:13:04 +02:00
version 0.7.12
This commit is contained in:
parent
9e7fbc20ff
commit
af52d6eb68
3 changed files with 10 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
__appname__ = 'calibre'
|
||||
__version__ = '0.7.11'
|
||||
__version__ = '0.7.12'
|
||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
||||
import re
|
||||
|
|
|
|||
|
|
@ -376,7 +376,7 @@ def do_config(self, checked=False, initial_category='general'):
|
|||
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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue