fix 85
This commit is contained in:
parent
2caeeb0eb6
commit
9a59f62280
3 changed files with 455 additions and 458 deletions
|
|
@ -1,10 +1 @@
|
||||||
{
|
{"id":"obsidian-media-db-plugin","name":"Media DB Plugin","version":"0.5.2","minAppVersion":"0.14.0","description":"A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.","author":"Moritz Jung","authorUrl":"https://mprojectscode.github.io/","isDesktopOnly":false}
|
||||||
"id": "obsidian-media-db-plugin",
|
|
||||||
"name": "Media DB Plugin",
|
|
||||||
"version": "0.5.1",
|
|
||||||
"minAppVersion": "0.14.0",
|
|
||||||
"description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.",
|
|
||||||
"author": "Moritz Jung",
|
|
||||||
"authorUrl": "https://mprojectscode.github.io/",
|
|
||||||
"isDesktopOnly": false
|
|
||||||
}
|
|
||||||
|
|
@ -236,7 +236,7 @@ export class MediaDbSettingTab extends PluginSettingTab {
|
||||||
.setName('Board Game Folder')
|
.setName('Board Game Folder')
|
||||||
.setDesc('Where newly imported board games should be places.')
|
.setDesc('Where newly imported board games should be places.')
|
||||||
.addSearch(cb => {
|
.addSearch(cb => {
|
||||||
new FileSuggest(this.app, cb.inputEl);
|
new FolderSuggest(this.app, cb.inputEl);
|
||||||
cb.setPlaceholder(DEFAULT_SETTINGS.boardgameFolder)
|
cb.setPlaceholder(DEFAULT_SETTINGS.boardgameFolder)
|
||||||
.setValue(this.plugin.settings.boardgameFolder)
|
.setValue(this.plugin.settings.boardgameFolder)
|
||||||
.onChange(data => {
|
.onChange(data => {
|
||||||
|
|
|
||||||
|
|
@ -117,4 +117,10 @@ small.media-db-plugin-list-text {
|
||||||
/*outline: 1px solid white;*/
|
/*outline: 1px solid white;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.media-db-plugin-preview {
|
||||||
|
border-radius: var(--modal-radius);
|
||||||
|
border: var(--modal-border-width) solid var(--modal-border-color);
|
||||||
|
padding: var(--size-4-4);
|
||||||
|
}
|
||||||
|
|
||||||
/* endregion */
|
/* endregion */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue