Show info about whether a dictionary supports wildcard searches
This commit is contained in:
parent
1a0a345ae7
commit
b862035fbc
@ -503,7 +503,8 @@ class Database {
|
||||
termMetaDataLoaded,
|
||||
kanjiDataLoaded,
|
||||
kanjiMetaDataLoaded,
|
||||
tagDataLoaded
|
||||
tagDataLoaded,
|
||||
details
|
||||
);
|
||||
}
|
||||
|
||||
@ -520,7 +521,8 @@ class Database {
|
||||
termMetaDataLoaded,
|
||||
kanjiDataLoaded,
|
||||
kanjiMetaDataLoaded,
|
||||
tagDataLoaded
|
||||
tagDataLoaded,
|
||||
details
|
||||
) {
|
||||
const zip = await JSZip.loadAsync(archive);
|
||||
|
||||
@ -538,7 +540,8 @@ class Database {
|
||||
title: index.title,
|
||||
revision: index.revision,
|
||||
sequenced: index.sequenced,
|
||||
version: index.format || index.version
|
||||
version: index.format || index.version,
|
||||
prefixWildcardsSupported: !!details.prefixWildcardsSupported
|
||||
};
|
||||
|
||||
await indexDataLoaded(summary);
|
||||
|
@ -189,6 +189,7 @@ class SettingsDictionaryEntryUI {
|
||||
|
||||
this.content.querySelector('.dict-title').textContent = this.dictionaryInfo.title;
|
||||
this.content.querySelector('.dict-revision').textContent = `rev.${this.dictionaryInfo.revision}`;
|
||||
this.content.querySelector('.dict-prefix-wildcard-searches-supported').checked = !!this.dictionaryInfo.prefixWildcardsSupported;
|
||||
|
||||
this.applyValues();
|
||||
|
||||
|
@ -550,6 +550,9 @@
|
||||
<div class="checkbox options-advanced">
|
||||
<label><input type="checkbox" class="dict-allow-secondary-searches"> Allow secondary searches</label>
|
||||
</div>
|
||||
<div class="checkbox dict-prefix-wildcard-searches-supported-container">
|
||||
<label><input type="checkbox" class="dict-prefix-wildcard-searches-supported" disabled> Prefix wildcard searches supported</label>
|
||||
</div>
|
||||
<div class="form-group options-advanced">
|
||||
<label class="dict-result-priority-label">Result priority</label>
|
||||
<input type="number" class="form-control dict-priority">
|
||||
|
Loading…
Reference in New Issue
Block a user