diff --git a/.gitignore b/.gitignore index 79c0350..f6a58ca 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,15 @@ data.json .DS_Store src/**/*.js -__mocks__/*.js \ No newline at end of file +__mocks__/*.js + +obsidian.css + +!exampleVault/.obsidian + +exampleVault/.obsidian/* +!exampleVault/.obsidian/plugins + +exampleVault/.obsidian/plugins/* +exampleVault/.obsidian/plugins/obsidian-media-db-plugin/* +!exampleVault/.obsidian/plugins/obsidian-media-db-plugin/.hotreload diff --git a/exampleVault/.obsidian/app.json b/exampleVault/.obsidian/app.json deleted file mode 100644 index 0967ef4..0000000 --- a/exampleVault/.obsidian/app.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/exampleVault/.obsidian/appearance.json b/exampleVault/.obsidian/appearance.json deleted file mode 100644 index af4da16..0000000 --- a/exampleVault/.obsidian/appearance.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "accentColor": "", - "theme": "obsidian" -} diff --git a/exampleVault/.obsidian/community-plugins.json b/exampleVault/.obsidian/community-plugins.json deleted file mode 100644 index 35fa2d8..0000000 --- a/exampleVault/.obsidian/community-plugins.json +++ /dev/null @@ -1 +0,0 @@ -["obsidian-media-db-plugin"] diff --git a/exampleVault/.obsidian/core-plugins-migration.json b/exampleVault/.obsidian/core-plugins-migration.json deleted file mode 100644 index ba79b99..0000000 --- a/exampleVault/.obsidian/core-plugins-migration.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "file-explorer": true, - "global-search": true, - "switcher": true, - "graph": true, - "backlink": true, - "canvas": true, - "outgoing-link": true, - "tag-pane": true, - "properties": false, - "page-preview": true, - "daily-notes": true, - "templates": true, - "note-composer": true, - "command-palette": true, - "slash-command": false, - "editor-status": true, - "bookmarks": true, - "markdown-importer": false, - "zk-prefixer": false, - "random-note": false, - "outline": true, - "word-count": true, - "slides": false, - "audio-recorder": false, - "workspaces": false, - "file-recovery": true, - "publish": false, - "sync": false, - "browser": false -} diff --git a/exampleVault/.obsidian/core-plugins.json b/exampleVault/.obsidian/core-plugins.json deleted file mode 100644 index abcf2ca..0000000 --- a/exampleVault/.obsidian/core-plugins.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - "file-explorer", - "global-search", - "switcher", - "graph", - "backlink", - "canvas", - "outgoing-link", - "tag-pane", - "page-preview", - "daily-notes", - "templates", - "note-composer", - "command-palette", - "editor-status", - "bookmarks", - "outline", - "word-count", - "file-recovery" -] diff --git a/exampleVault/.obsidian/hotkeys.json b/exampleVault/.obsidian/hotkeys.json deleted file mode 100644 index 94c3be5..0000000 --- a/exampleVault/.obsidian/hotkeys.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "app:reload": [ - { - "modifiers": ["Mod"], - "key": "R" - } - ] -} diff --git a/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/.hotreload b/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/.hotreload deleted file mode 100644 index e69de29..0000000 diff --git a/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/manifest.json b/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/manifest.json deleted file mode 100644 index 2535f1e..0000000 --- a/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/manifest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "id": "obsidian-media-db-plugin", - "name": "Media DB", - "version": "0.6.0", - "minAppVersion": "1.5.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://www.moritzjung.dev", - "isDesktopOnly": false -} diff --git a/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/styles.css b/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/styles.css deleted file mode 100644 index 6d4bb8d..0000000 --- a/exampleVault/.obsidian/plugins/obsidian-media-db-plugin/styles.css +++ /dev/null @@ -1,126 +0,0 @@ -.media-db-plugin-list-wrapper { - display: flex; - align-content: center; - margin-bottom: 5px; - margin-top: 5px; -} - -.media-db-plugin-list-toggle { -} - -.media-db-plugin-list-text-wrapper { - flex: 1; -} - -.media-db-plugin-list-text { - display: block; -} - -small.media-db-plugin-list-text { - color: var(--text-muted); -} - -.media-db-plugin-select-modal { - display: contents; -} - -.media-db-plugin-select-wrapper { - display: flex; - flex-direction: column; - margin: 5px; - overflow-y: auto; -} - -.media-db-plugin-select-element { - cursor: pointer; - border-left: 5px solid transparent; - padding: 5px; - margin: 5px 0 5px 0; - border-radius: 5px; - white-space: pre-wrap; - font-size: 16px; -} - -.media-db-plugin-select-element-selected { - border-left: 5px solid var(--interactive-accent) !important; - background: var(--background-secondary-alt); -} - -.media-db-plugin-select-element-hover { - background: var(--background-secondary-alt); -} - -.media-db-plugin-preview-modal { - display: contents; -} - -.media-db-plugin-preview-wrapper { - display: flex; - flex-direction: column; - overflow-y: auto; -} - -.media-db-plugin-spacer { - margin-bottom: 10px; -} - -/* region property mappings */ -.media-db-plugin-property-mappings-model-container { - border: 1px solid var(--background-modifier-border); - border-radius: 5px; - padding: 10px; - width: 100%; -} - -.media-db-plugin-property-mappings-container { - margin: 10px 0; - display: flex; - flex-direction: column; - gap: 5px; -} - -.media-db-plugin-property-mapping-element { - display: flex; - flex-direction: row; - gap: 10px; -} - -.media-db-plugin-property-mapping-element-property-name-wrapper { - min-width: 160px; - background: var(--background-modifier-form-field); - padding: 2px 5px; - border-radius: 5px; - - display: flex; - align-items: center; -} - -.media-db-plugin-property-mapping-element-property-name { - margin: 0; -} - -.media-db-plugin-property-mappings-save-button { - margin: 0; -} - -.media-db-plugin-property-mapping-to { - display: flex; - align-items: center; -} - -.media-db-plugin-property-mapping-validation { - color: var(--text-error); - margin-bottom: 5px; -} - -.media-db-plugin-button:focus { - /*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 */ diff --git a/exampleVault/.obsidian/workspace.json b/exampleVault/.obsidian/workspace.json deleted file mode 100644 index 83c106a..0000000 --- a/exampleVault/.obsidian/workspace.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "main": { - "id": "9618d22a4d8c511c", - "type": "split", - "children": [ - { - "id": "982b4a04c4a0e996", - "type": "tabs", - "children": [ - { - "id": "b912b847e62b0980", - "type": "leaf", - "state": { - "type": "empty", - "state": {} - } - } - ] - } - ], - "direction": "vertical" - }, - "left": { - "id": "a448fa9a0495e7a4", - "type": "split", - "children": [ - { - "id": "0148e129668970ae", - "type": "tabs", - "children": [ - { - "id": "5f549c8ae9af971e", - "type": "leaf", - "state": { - "type": "file-explorer", - "state": { - "sortOrder": "alphabetical" - } - } - }, - { - "id": "b782c94865111b8f", - "type": "leaf", - "state": { - "type": "search", - "state": { - "query": "", - "matchingCase": false, - "explainSearch": false, - "collapseAll": false, - "extraContext": false, - "sortOrder": "alphabetical" - } - } - }, - { - "id": "942c8e2bba79177d", - "type": "leaf", - "state": { - "type": "bookmarks", - "state": {} - } - } - ] - } - ], - "direction": "horizontal", - "width": 300 - }, - "right": { - "id": "8a6d32cd2e32c39d", - "type": "split", - "children": [ - { - "id": "b712a27a0deec50f", - "type": "tabs", - "children": [ - { - "id": "81240f6821eb54dc", - "type": "leaf", - "state": { - "type": "backlink", - "state": { - "collapseAll": false, - "extraContext": false, - "sortOrder": "alphabetical", - "showSearch": false, - "searchQuery": "", - "backlinkCollapsed": false, - "unlinkedCollapsed": true - } - } - }, - { - "id": "2dda1a67c07f367d", - "type": "leaf", - "state": { - "type": "outgoing-link", - "state": { - "linksCollapsed": false, - "unlinkedCollapsed": true - } - } - }, - { - "id": "cb0aecbffefcb594", - "type": "leaf", - "state": { - "type": "tag", - "state": { - "sortOrder": "frequency", - "useHierarchy": true - } - } - }, - { - "id": "1be09685a129aa6e", - "type": "leaf", - "state": { - "type": "outline", - "state": {} - } - } - ] - } - ], - "direction": "horizontal", - "width": 300, - "collapsed": true - }, - "left-ribbon": { - "hiddenItems": { - "obsidian-media-db-plugin:Add new Media DB entry": false, - "switcher:Open quick switcher": false, - "graph:Open graph view": false, - "canvas:Create new canvas": false, - "daily-notes:Open today's daily note": false, - "templates:Insert template": false, - "command-palette:Open command palette": false - } - }, - "active": "b912b847e62b0980", - "lastOpenFiles": [ - "Media DB/games/Limbo (2010).md", - "Media DB/games/Hollow Knight (2017).md", - "Media DB/movies/2001 - A Space Odyssey (1968).md", - "Media DB/games", - "Media DB/movies", - "Media DB" - ] -} \ No newline at end of file