File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class BookFusionPlugin(InterfaceActionBase):
9
9
description = 'Provides synchronization of your eBooks and metadata from Calibre to your devices via the BookFusion iOS, Android & Web reader.'
10
10
supported_platforms = ['windows' , 'osx' , 'linux' ]
11
11
author = 'BookFusion'
12
- version = (0 , 6 , 0 )
12
+ version = (0 , 6 , 1 )
13
13
minimum_calibre_version = (3 , 16 , 0 )
14
14
15
15
actual_plugin = 'calibre_plugins.bookfusion.ui:InterfacePlugin'
Original file line number Diff line number Diff line change @@ -71,14 +71,11 @@ def __init__(self):
71
71
72
72
self .bookshelves_custom_column = QComboBox (self )
73
73
self .bookshelves_custom_column .addItem ('' )
74
- option_count = 0
75
74
for key , meta in get_current_db ().new_api .field_metadata .custom_iteritems ():
76
75
if meta ['datatype' ] == 'text' :
77
76
self .bookshelves_custom_column .addItem (key )
78
- option_count += 1
79
77
self .bookshelves_custom_column .setCurrentText (prefs ['bookshelves_custom_column' ])
80
- if option_count > 0 :
81
- self .form .addRow ('Bookshelves Column:' , self .bookshelves_custom_column )
78
+ self .form .addRow ('Bookshelves Column:' , self .bookshelves_custom_column )
82
79
83
80
def save_settings (self ):
84
81
prefs ['api_key' ] = unicode (self .api_key .text ())
You can’t perform that action at this time.
0 commit comments