Skip to content

Commit a48c7e1

Browse files
Merge pull request #28 from mProjectsCode/master
Fix #27 and release version 0.2.1
2 parents 85e9ad9 + d34f107 commit a48c7e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-media-db-plugin",
33
"name": "Media DB Plugin",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"minAppVersion": "0.14.0",
66
"description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault. ",
77
"author": "Moritz Jung",

src/modals/MediaDbIdSearchModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class MediaDbIdSearchModal extends Modal {
1515
super(app);
1616
this.plugin = plugin;
1717
this.onSubmit = onSubmit;
18-
this.selectedApi = '';
18+
this.selectedApi = plugin.apiManager.apis[0].apiName;
1919
}
2020

2121
submitCallback(event: KeyboardEvent) {

src/utils/Utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {MediaTypeModel} from '../models/MediaTypeModel';
44
export const pluginName: string = 'obsidian-media-db-plugin';
55
export const contactEmail: string = '[email protected]';
66
export const mediaDbTag: string = 'mediaDB';
7-
export const mediaDbVersion: string = '0.2.0';
7+
export const mediaDbVersion: string = '0.2.1';
88
export const debug: boolean = false;
99

1010
export function wrapAround(value: number, size: number): number {

0 commit comments

Comments
 (0)