Merge pull request #28 from mProjectsCode/master
Fix #27 and release version 0.2.1
This commit is contained in:
commit
a48c7e147f
3 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-media-db-plugin",
|
||||
"name": "Media DB Plugin",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.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",
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ export class MediaDbIdSearchModal extends Modal {
|
|||
super(app);
|
||||
this.plugin = plugin;
|
||||
this.onSubmit = onSubmit;
|
||||
this.selectedApi = '';
|
||||
this.selectedApi = plugin.apiManager.apis[0].apiName;
|
||||
}
|
||||
|
||||
submitCallback(event: KeyboardEvent) {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import {MediaTypeModel} from '../models/MediaTypeModel';
|
|||
export const pluginName: string = 'obsidian-media-db-plugin';
|
||||
export const contactEmail: string = 'm.projects.code@gmail.com';
|
||||
export const mediaDbTag: string = 'mediaDB';
|
||||
export const mediaDbVersion: string = '0.2.0';
|
||||
export const mediaDbVersion: string = '0.2.1';
|
||||
export const debug: boolean = false;
|
||||
|
||||
export function wrapAround(value: number, size: number): number {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue