├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── check-console-log.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __mocks__ ├── js-logger.ts └── obsidian.ts ├── bun.lockb ├── esbuild.config.mjs ├── jest.config.js ├── manifest.json ├── package.json ├── readme ├── cover.png ├── custom-filter-options-1.png ├── custom-filter-options-2.png ├── custom-filter.png ├── feed-view.png ├── grid-view.png ├── list-view.png ├── search-filter.png ├── sort-filter.png └── table-view.png ├── src ├── constants.ts ├── event │ ├── event-manager.ts │ └── types.ts ├── focus-utils.ts ├── logger │ ├── constants.ts │ ├── index.ts │ └── types.ts ├── main.ts ├── migrations │ ├── index.ts │ ├── migrate_0_4_0.ts │ ├── migrate_1_0_0.ts │ ├── migrate_1_10_0.ts │ ├── migrate_1_13_0.ts │ ├── migrate_1_14_0.ts │ ├── migrate_1_15_0.ts │ ├── migrate_1_17_0.ts │ ├── migrate_1_1_0.ts │ ├── migrate_1_21_0.ts │ ├── migrate_1_22_0.ts │ ├── migrate_1_23_0.ts │ ├── migrate_1_23_1.ts │ ├── migrate_1_24_0.ts │ ├── migrate_1_25_0.ts │ ├── migrate_1_26_0.ts │ ├── migrate_1_27_0.ts │ ├── migrate_1_29_0.ts │ ├── migrate_1_2_1.ts │ ├── migrate_1_30_5.ts │ ├── migrate_1_31_0.ts │ ├── migrate_1_33_0.ts │ ├── migrate_1_37_0.ts │ ├── migrate_1_38_0.ts │ ├── migrate_1_39_0.ts │ ├── migrate_1_3_0.ts │ ├── migrate_1_40_0.ts │ ├── migrate_1_41_0.ts │ ├── migrate_1_42_0.ts │ ├── migrate_1_45_0.ts │ ├── migrate_1_46_0.ts │ ├── migrate_1_6_0.ts │ ├── migrate_1_6_1.ts │ ├── migrate_1_9_0.ts │ ├── migration_interface.ts │ └── types.ts ├── obsidian │ ├── custom-filter-modal.ts │ ├── types.ts │ ├── utils.ts │ ├── vault-explorer-settings-tab.ts │ └── vault-explorer-view.ts ├── styles.css ├── svelte │ ├── app │ │ ├── components │ │ │ ├── feed-card.svelte │ │ │ ├── feed-view.svelte │ │ │ ├── filter-group-list.svelte │ │ │ ├── filter-group.svelte │ │ │ ├── grid-card.svelte │ │ │ ├── grid-view.svelte │ │ │ ├── list-item.svelte │ │ │ ├── list-view.svelte │ │ │ ├── pagination-indicator.svelte │ │ │ ├── search-filter.svelte │ │ │ ├── sort-filter.svelte │ │ │ └── table-view.svelte │ │ ├── constants.ts │ │ ├── index.svelte │ │ ├── services │ │ │ ├── context-menu.ts │ │ │ ├── display-name.ts │ │ │ ├── favorites-store.ts │ │ │ ├── fetch-social-media-image.ts │ │ │ ├── file-content-store.ts │ │ │ ├── file-icon.ts │ │ │ ├── file-store.ts │ │ │ ├── filters │ │ │ │ ├── custom │ │ │ │ │ ├── filter-by-groups.ts │ │ │ │ │ ├── match-checkbox-property-filter.ts │ │ │ │ │ ├── match-content-filter.ts │ │ │ │ │ ├── match-date-property-filter.ts │ │ │ │ │ ├── match-file-name-filter.ts │ │ │ │ │ ├── match-folder-filter.ts │ │ │ │ │ ├── match-list-property-filter.ts │ │ │ │ │ ├── match-number-property-filter.ts │ │ │ │ │ └── match-text-property-filter.ts │ │ │ │ └── search-filter.ts │ │ │ ├── link-utils │ │ │ │ ├── constants.ts │ │ │ │ ├── link-getters.ts │ │ │ │ ├── link-target-getters.ts │ │ │ │ └── link-validators.ts │ │ │ ├── open-file.ts │ │ │ ├── random-file-sort-store.ts │ │ │ ├── render-data.ts │ │ │ ├── smi-cache.ts │ │ │ ├── time-string.ts │ │ │ └── utils │ │ │ │ ├── content-utils.ts │ │ │ │ ├── image-utils.ts │ │ │ │ ├── json-utils.ts │ │ │ │ ├── url-utils.ts │ │ │ │ └── wiki-link-utils.ts │ │ └── types.ts │ ├── custom-filter-app │ │ ├── components │ │ │ ├── content-filter.svelte │ │ │ ├── file-name-filter.svelte │ │ │ ├── filter-rule-list.svelte │ │ │ ├── filter-rule.svelte │ │ │ ├── folder-filter.svelte │ │ │ ├── group-list-item.svelte │ │ │ ├── group-list.svelte │ │ │ └── property-filter.svelte │ │ ├── index.svelte │ │ └── services │ │ │ ├── display-name-utils.ts │ │ │ └── utils.ts │ ├── image-source-app │ │ ├── display-name.ts │ │ └── index.svelte │ └── shared │ │ ├── components │ │ ├── checkbox.svelte │ │ ├── divider.svelte │ │ ├── flex.svelte │ │ ├── icon-button.svelte │ │ ├── icon.svelte │ │ ├── property.svelte │ │ ├── search-select.svelte │ │ ├── spacer.svelte │ │ ├── stack.svelte │ │ ├── switch.svelte │ │ ├── tab-list.svelte │ │ ├── tab.svelte │ │ ├── tag.svelte │ │ └── wrap.svelte │ │ └── services │ │ ├── get-svg-data.ts │ │ ├── load-property-value.ts │ │ ├── random.ts │ │ ├── store.ts │ │ └── time-utils.ts ├── types │ ├── index.guard.ts │ ├── index.ts │ ├── types-0.3.3.ts │ ├── types-0.5.5.ts │ ├── types-1-37-0.ts │ ├── types-1.0.1.ts │ ├── types-1.12.1.ts │ ├── types-1.13.1.ts │ ├── types-1.14.2.ts │ ├── types-1.16.0.ts │ ├── types-1.2.0.ts │ ├── types-1.2.1.ts │ ├── types-1.20.0.ts │ ├── types-1.21.2.ts │ ├── types-1.22.0.ts │ ├── types-1.23.0.ts │ ├── types-1.23.2.ts │ ├── types-1.24.2.ts │ ├── types-1.25.2.ts │ ├── types-1.26.3.ts │ ├── types-1.28.0.ts │ ├── types-1.29.0.ts │ ├── types-1.30.5.ts │ ├── types-1.32.2.ts │ ├── types-1.36.3.ts │ ├── types-1.38.0.ts │ ├── types-1.39.0.ts │ ├── types-1.40.2.ts │ ├── types-1.41.1.ts │ ├── types-1.44.6.ts │ ├── types-1.45.0.ts │ ├── types-1.5.0.ts │ ├── types-1.6.0.ts │ ├── types-1.8.1.ts │ └── types-1.9.1.ts └── utils.ts ├── test-vault ├── .obsidian │ ├── app.json │ ├── appearance.json │ ├── community-plugins.json │ ├── core-plugins-migration.json │ ├── core-plugins.json │ ├── graph.json │ ├── plugins │ │ └── vault-explorer │ │ │ └── data.json │ └── types.json ├── .vaultexplorer │ └── favorites.json ├── Complex content.md ├── Content with external embed.md ├── Content with internal embed.md ├── Creation property with date.md ├── Creation property with datetime.md ├── Favorite property.md ├── Frontmatter tags with body tags.md ├── Frontmatter with embed image.md ├── Frontmatter with image (url).md ├── Frontmatter with image (wiki link).md ├── Frontmatter with url (no social media image).md ├── Frontmatter with url.md ├── Long content with tags.md ├── Long title and url - aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.md ├── Modification property with date.md ├── Modification property with datetime.md ├── Properties and tags.md ├── Short content.md ├── Tags and custom properties.md ├── Tags and url.md └── attachments │ ├── file.canvas │ ├── file.doc │ ├── file.docx │ ├── file.mp3 │ ├── file.pdf │ ├── file.xls │ ├── file.xlsx │ ├── file.zip │ ├── pexels-kelly-1179532-23732393.jpg │ └── pexels-tomfisk-1653823.jpg ├── tests ├── integration │ └── preform-migration.test.ts └── unit │ ├── image-utils.test.ts │ ├── link-target-getters.test.ts │ ├── link-validators.test.ts │ ├── load-property-value.test.ts │ ├── match-checkbox-property-filter.test.ts │ ├── match-date-property-filter.test.ts │ ├── match-list-property-filter.test.ts │ ├── match-number-property-filter.test.ts │ └── match-text-property-filter.test.ts ├── tsconfig.json └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://ko-fi.com/decaf_dev 2 | -------------------------------------------------------------------------------- /.github/workflows/check-console-log.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.github/workflows/check-console-log.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/js-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/__mocks__/js-logger.ts -------------------------------------------------------------------------------- /__mocks__/obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/__mocks__/obsidian.ts -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/bun.lockb -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/package.json -------------------------------------------------------------------------------- /readme/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/cover.png -------------------------------------------------------------------------------- /readme/custom-filter-options-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/custom-filter-options-1.png -------------------------------------------------------------------------------- /readme/custom-filter-options-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/custom-filter-options-2.png -------------------------------------------------------------------------------- /readme/custom-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/custom-filter.png -------------------------------------------------------------------------------- /readme/feed-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/feed-view.png -------------------------------------------------------------------------------- /readme/grid-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/grid-view.png -------------------------------------------------------------------------------- /readme/list-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/list-view.png -------------------------------------------------------------------------------- /readme/search-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/search-filter.png -------------------------------------------------------------------------------- /readme/sort-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/sort-filter.png -------------------------------------------------------------------------------- /readme/table-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/readme/table-view.png -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/event/event-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/event/event-manager.ts -------------------------------------------------------------------------------- /src/event/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/event/types.ts -------------------------------------------------------------------------------- /src/focus-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/focus-utils.ts -------------------------------------------------------------------------------- /src/logger/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/logger/constants.ts -------------------------------------------------------------------------------- /src/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/logger/index.ts -------------------------------------------------------------------------------- /src/logger/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/logger/types.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/migrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/index.ts -------------------------------------------------------------------------------- /src/migrations/migrate_0_4_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_0_4_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_0_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_0_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_10_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_10_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_13_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_13_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_14_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_14_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_15_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_15_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_17_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_17_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_1_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_1_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_21_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_21_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_22_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_22_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_23_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_23_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_23_1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_23_1.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_24_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_24_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_25_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_25_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_26_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_26_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_27_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_27_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_29_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_29_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_2_1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_2_1.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_30_5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_30_5.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_31_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_31_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_33_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_33_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_37_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_37_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_38_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_38_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_39_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_39_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_3_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_3_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_40_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_40_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_41_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_41_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_42_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_42_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_45_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_45_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_46_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_46_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_6_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_6_0.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_6_1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_6_1.ts -------------------------------------------------------------------------------- /src/migrations/migrate_1_9_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migrate_1_9_0.ts -------------------------------------------------------------------------------- /src/migrations/migration_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/migration_interface.ts -------------------------------------------------------------------------------- /src/migrations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/migrations/types.ts -------------------------------------------------------------------------------- /src/obsidian/custom-filter-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/obsidian/custom-filter-modal.ts -------------------------------------------------------------------------------- /src/obsidian/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/obsidian/types.ts -------------------------------------------------------------------------------- /src/obsidian/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/obsidian/utils.ts -------------------------------------------------------------------------------- /src/obsidian/vault-explorer-settings-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/obsidian/vault-explorer-settings-tab.ts -------------------------------------------------------------------------------- /src/obsidian/vault-explorer-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/obsidian/vault-explorer-view.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | .vault-explorer-status-bar { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/svelte/app/components/feed-card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/feed-card.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/feed-view.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/feed-view.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/filter-group-list.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/filter-group-list.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/filter-group.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/filter-group.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/grid-card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/grid-card.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/grid-view.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/grid-view.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/list-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/list-item.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/list-view.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/list-view.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/pagination-indicator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/pagination-indicator.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/search-filter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/search-filter.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/sort-filter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/sort-filter.svelte -------------------------------------------------------------------------------- /src/svelte/app/components/table-view.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/components/table-view.svelte -------------------------------------------------------------------------------- /src/svelte/app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/constants.ts -------------------------------------------------------------------------------- /src/svelte/app/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/index.svelte -------------------------------------------------------------------------------- /src/svelte/app/services/context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/context-menu.ts -------------------------------------------------------------------------------- /src/svelte/app/services/display-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/display-name.ts -------------------------------------------------------------------------------- /src/svelte/app/services/favorites-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/favorites-store.ts -------------------------------------------------------------------------------- /src/svelte/app/services/fetch-social-media-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/fetch-social-media-image.ts -------------------------------------------------------------------------------- /src/svelte/app/services/file-content-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/file-content-store.ts -------------------------------------------------------------------------------- /src/svelte/app/services/file-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/file-icon.ts -------------------------------------------------------------------------------- /src/svelte/app/services/file-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/file-store.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/filter-by-groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/filter-by-groups.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-checkbox-property-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-checkbox-property-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-content-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-content-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-date-property-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-date-property-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-file-name-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-file-name-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-folder-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-folder-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-list-property-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-list-property-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-number-property-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-number-property-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/custom/match-text-property-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/custom/match-text-property-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/filters/search-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/filters/search-filter.ts -------------------------------------------------------------------------------- /src/svelte/app/services/link-utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/link-utils/constants.ts -------------------------------------------------------------------------------- /src/svelte/app/services/link-utils/link-getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/link-utils/link-getters.ts -------------------------------------------------------------------------------- /src/svelte/app/services/link-utils/link-target-getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/link-utils/link-target-getters.ts -------------------------------------------------------------------------------- /src/svelte/app/services/link-utils/link-validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/link-utils/link-validators.ts -------------------------------------------------------------------------------- /src/svelte/app/services/open-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/open-file.ts -------------------------------------------------------------------------------- /src/svelte/app/services/random-file-sort-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/random-file-sort-store.ts -------------------------------------------------------------------------------- /src/svelte/app/services/render-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/render-data.ts -------------------------------------------------------------------------------- /src/svelte/app/services/smi-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/smi-cache.ts -------------------------------------------------------------------------------- /src/svelte/app/services/time-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/time-string.ts -------------------------------------------------------------------------------- /src/svelte/app/services/utils/content-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/utils/content-utils.ts -------------------------------------------------------------------------------- /src/svelte/app/services/utils/image-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/utils/image-utils.ts -------------------------------------------------------------------------------- /src/svelte/app/services/utils/json-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/utils/json-utils.ts -------------------------------------------------------------------------------- /src/svelte/app/services/utils/url-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/utils/url-utils.ts -------------------------------------------------------------------------------- /src/svelte/app/services/utils/wiki-link-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/services/utils/wiki-link-utils.ts -------------------------------------------------------------------------------- /src/svelte/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/app/types.ts -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/content-filter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/content-filter.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/file-name-filter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/file-name-filter.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/filter-rule-list.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/filter-rule-list.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/filter-rule.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/filter-rule.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/folder-filter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/folder-filter.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/group-list-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/group-list-item.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/group-list.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/group-list.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/components/property-filter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/components/property-filter.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/index.svelte -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/services/display-name-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/services/display-name-utils.ts -------------------------------------------------------------------------------- /src/svelte/custom-filter-app/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/custom-filter-app/services/utils.ts -------------------------------------------------------------------------------- /src/svelte/image-source-app/display-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/image-source-app/display-name.ts -------------------------------------------------------------------------------- /src/svelte/image-source-app/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/image-source-app/index.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/checkbox.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/divider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/divider.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/flex.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/flex.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/icon-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/icon-button.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/icon.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/property.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/property.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/search-select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/search-select.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/spacer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/spacer.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/stack.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/stack.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/switch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/switch.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/tab-list.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/tab-list.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/tab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/tab.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/tag.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/tag.svelte -------------------------------------------------------------------------------- /src/svelte/shared/components/wrap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/components/wrap.svelte -------------------------------------------------------------------------------- /src/svelte/shared/services/get-svg-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/services/get-svg-data.ts -------------------------------------------------------------------------------- /src/svelte/shared/services/load-property-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/services/load-property-value.ts -------------------------------------------------------------------------------- /src/svelte/shared/services/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/services/random.ts -------------------------------------------------------------------------------- /src/svelte/shared/services/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/services/store.ts -------------------------------------------------------------------------------- /src/svelte/shared/services/time-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/svelte/shared/services/time-utils.ts -------------------------------------------------------------------------------- /src/types/index.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/index.guard.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/types-0.3.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-0.3.3.ts -------------------------------------------------------------------------------- /src/types/types-0.5.5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-0.5.5.ts -------------------------------------------------------------------------------- /src/types/types-1-37-0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1-37-0.ts -------------------------------------------------------------------------------- /src/types/types-1.0.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.0.1.ts -------------------------------------------------------------------------------- /src/types/types-1.12.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.12.1.ts -------------------------------------------------------------------------------- /src/types/types-1.13.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.13.1.ts -------------------------------------------------------------------------------- /src/types/types-1.14.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.14.2.ts -------------------------------------------------------------------------------- /src/types/types-1.16.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.16.0.ts -------------------------------------------------------------------------------- /src/types/types-1.2.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.2.0.ts -------------------------------------------------------------------------------- /src/types/types-1.2.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.2.1.ts -------------------------------------------------------------------------------- /src/types/types-1.20.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.20.0.ts -------------------------------------------------------------------------------- /src/types/types-1.21.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.21.2.ts -------------------------------------------------------------------------------- /src/types/types-1.22.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.22.0.ts -------------------------------------------------------------------------------- /src/types/types-1.23.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.23.0.ts -------------------------------------------------------------------------------- /src/types/types-1.23.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.23.2.ts -------------------------------------------------------------------------------- /src/types/types-1.24.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.24.2.ts -------------------------------------------------------------------------------- /src/types/types-1.25.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.25.2.ts -------------------------------------------------------------------------------- /src/types/types-1.26.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.26.3.ts -------------------------------------------------------------------------------- /src/types/types-1.28.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.28.0.ts -------------------------------------------------------------------------------- /src/types/types-1.29.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.29.0.ts -------------------------------------------------------------------------------- /src/types/types-1.30.5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.30.5.ts -------------------------------------------------------------------------------- /src/types/types-1.32.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.32.2.ts -------------------------------------------------------------------------------- /src/types/types-1.36.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.36.3.ts -------------------------------------------------------------------------------- /src/types/types-1.38.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.38.0.ts -------------------------------------------------------------------------------- /src/types/types-1.39.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.39.0.ts -------------------------------------------------------------------------------- /src/types/types-1.40.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.40.2.ts -------------------------------------------------------------------------------- /src/types/types-1.41.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.41.1.ts -------------------------------------------------------------------------------- /src/types/types-1.44.6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.44.6.ts -------------------------------------------------------------------------------- /src/types/types-1.45.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.45.0.ts -------------------------------------------------------------------------------- /src/types/types-1.5.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.5.0.ts -------------------------------------------------------------------------------- /src/types/types-1.6.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.6.0.ts -------------------------------------------------------------------------------- /src/types/types-1.8.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.8.1.ts -------------------------------------------------------------------------------- /src/types/types-1.9.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/types/types-1.9.1.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test-vault/.obsidian/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/.obsidian/app.json -------------------------------------------------------------------------------- /test-vault/.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test-vault/.obsidian/community-plugins.json: -------------------------------------------------------------------------------- 1 | ["vault-explorer"] 2 | -------------------------------------------------------------------------------- /test-vault/.obsidian/core-plugins-migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/.obsidian/core-plugins-migration.json -------------------------------------------------------------------------------- /test-vault/.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /test-vault/.obsidian/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/.obsidian/graph.json -------------------------------------------------------------------------------- /test-vault/.obsidian/plugins/vault-explorer/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/.obsidian/plugins/vault-explorer/data.json -------------------------------------------------------------------------------- /test-vault/.obsidian/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/.obsidian/types.json -------------------------------------------------------------------------------- /test-vault/.vaultexplorer/favorites.json: -------------------------------------------------------------------------------- 1 | { 2 | "items": [] 3 | } 4 | -------------------------------------------------------------------------------- /test-vault/Complex content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Complex content.md -------------------------------------------------------------------------------- /test-vault/Content with external embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Content with external embed.md -------------------------------------------------------------------------------- /test-vault/Content with internal embed.md: -------------------------------------------------------------------------------- 1 | --- 2 | favorite: false 3 | --- 4 | ![[pexels-kelly-1179532-23732393.jpg]] 5 | -------------------------------------------------------------------------------- /test-vault/Creation property with date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Creation property with date.md -------------------------------------------------------------------------------- /test-vault/Creation property with datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Creation property with datetime.md -------------------------------------------------------------------------------- /test-vault/Favorite property.md: -------------------------------------------------------------------------------- 1 | --- 2 | favorite: true 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Frontmatter tags with body tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Frontmatter tags with body tags.md -------------------------------------------------------------------------------- /test-vault/Frontmatter with embed image.md: -------------------------------------------------------------------------------- 1 | --- 2 | image: "![[pexels-tomfisk-1653823.jpg]]" 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Frontmatter with image (url).md: -------------------------------------------------------------------------------- 1 | --- 2 | image: https://vaultexplorer.com 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Frontmatter with image (wiki link).md: -------------------------------------------------------------------------------- 1 | --- 2 | image: "[[pexels-tomfisk-1653823.jpg]]" 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Frontmatter with url (no social media image).md: -------------------------------------------------------------------------------- 1 | --- 2 | url: https://x.com/decaf_dev 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Frontmatter with url.md: -------------------------------------------------------------------------------- 1 | --- 2 | url: https://vaultexplorer.com 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Long content with tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Long content with tags.md -------------------------------------------------------------------------------- /test-vault/Long title and url - aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.md: -------------------------------------------------------------------------------- 1 | --- 2 | url: https://vaultexplorer.com 3 | --- 4 | -------------------------------------------------------------------------------- /test-vault/Modification property with date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Modification property with date.md -------------------------------------------------------------------------------- /test-vault/Modification property with datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Modification property with datetime.md -------------------------------------------------------------------------------- /test-vault/Properties and tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Properties and tags.md -------------------------------------------------------------------------------- /test-vault/Short content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Short content.md -------------------------------------------------------------------------------- /test-vault/Tags and custom properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Tags and custom properties.md -------------------------------------------------------------------------------- /test-vault/Tags and url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/Tags and url.md -------------------------------------------------------------------------------- /test-vault/attachments/file.canvas: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test-vault/attachments/file.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/attachments/file.doc -------------------------------------------------------------------------------- /test-vault/attachments/file.docx: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-vault/attachments/file.mp3: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test-vault/attachments/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/attachments/file.pdf -------------------------------------------------------------------------------- /test-vault/attachments/file.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/attachments/file.xls -------------------------------------------------------------------------------- /test-vault/attachments/file.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/attachments/file.xlsx -------------------------------------------------------------------------------- /test-vault/attachments/file.zip: -------------------------------------------------------------------------------- 1 | j -------------------------------------------------------------------------------- /test-vault/attachments/pexels-kelly-1179532-23732393.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/attachments/pexels-kelly-1179532-23732393.jpg -------------------------------------------------------------------------------- /test-vault/attachments/pexels-tomfisk-1653823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/test-vault/attachments/pexels-tomfisk-1653823.jpg -------------------------------------------------------------------------------- /tests/integration/preform-migration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/integration/preform-migration.test.ts -------------------------------------------------------------------------------- /tests/unit/image-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/image-utils.test.ts -------------------------------------------------------------------------------- /tests/unit/link-target-getters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/link-target-getters.test.ts -------------------------------------------------------------------------------- /tests/unit/link-validators.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/link-validators.test.ts -------------------------------------------------------------------------------- /tests/unit/load-property-value.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/load-property-value.test.ts -------------------------------------------------------------------------------- /tests/unit/match-checkbox-property-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/match-checkbox-property-filter.test.ts -------------------------------------------------------------------------------- /tests/unit/match-date-property-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/match-date-property-filter.test.ts -------------------------------------------------------------------------------- /tests/unit/match-list-property-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/match-list-property-filter.test.ts -------------------------------------------------------------------------------- /tests/unit/match-number-property-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/match-number-property-filter.test.ts -------------------------------------------------------------------------------- /tests/unit/match-text-property-filter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tests/unit/match-text-property-filter.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decaf-dev/obsidian-vault-explorer/HEAD/versions.json --------------------------------------------------------------------------------