mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
7fe41ee7d0
commit
e4f2a2fa0c
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
new features:
|
new features:
|
||||||
- title: "When searching, allow use of un-accented characters to match accented characters in all fields and all languages (not just authors and English as before)"
|
- title: "When searching, allow use of un-accented characters to match accented characters in all fields and all languages (not just authors and English as before)"
|
||||||
description: "The rules for matching un-accented characters are done in a language dependent way. So if your calibre interface language is set to English, n will match both n and ñ, but if it is set to Spanish, it will match only n, as in Spanish ñ is a separate alphabet in Spanish."
|
description: "The rules for matching un-accented characters are done in a language dependent way. So if your calibre interface language is set to English, n will match both n and ñ, but if it is set to Spanish, it will match only n, as in Spanish ñ is a separate alphabet in Spanish. This makes searching a little slower, so if you have a very large library you can turn it off via Preferences->Searching."
|
||||||
type: major
|
type: major
|
||||||
|
|
||||||
- title: "Content server: Show a best guess for the IP address the content server is currently listening at in the connect/share menu."
|
- title: "Content server: Show a best guess for the IP address the content server is currently listening at in the connect/share menu."
|
||||||
|
@ -184,7 +184,6 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
|
|||||||
self.opt_grouped_search_make_user_categories.update_items_cache(terms)
|
self.opt_grouped_search_make_user_categories.update_items_cache(terms)
|
||||||
self.gst_names.blockSignals(True)
|
self.gst_names.blockSignals(True)
|
||||||
self.gst_names.clear()
|
self.gst_names.clear()
|
||||||
print (1111, self.gst_names)
|
|
||||||
self.gst_names.addItem('', '')
|
self.gst_names.addItem('', '')
|
||||||
for t in terms:
|
for t in terms:
|
||||||
self.gst_names.addItem(t, t)
|
self.gst_names.addItem(t, t)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user