├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── docs └── images │ ├── buy_me_coffee.png │ └── screenshot.png ├── esbuild.config.mjs ├── eslint.config.js ├── manifest.json ├── obsidian-import-attachments-plus.sublime-project ├── package.json ├── src ├── ImportAttachmentsModal.ts ├── default.ts ├── main.ts ├── patchConsole.ts ├── patchFileExplorer.ts ├── patchFileManager.ts ├── patchImportFunctions.ts ├── patchOpenFile.ts ├── settings.ts ├── types.ts ├── types │ ├── global.d.ts │ └── obsidian-augment.d.ts └── utils.ts ├── styles └── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/buy_me_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/docs/images/buy_me_coffee.png -------------------------------------------------------------------------------- /docs/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/docs/images/screenshot.png -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/eslint.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/manifest.json -------------------------------------------------------------------------------- /obsidian-import-attachments-plus.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/obsidian-import-attachments-plus.sublime-project -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/package.json -------------------------------------------------------------------------------- /src/ImportAttachmentsModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/ImportAttachmentsModal.ts -------------------------------------------------------------------------------- /src/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/default.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/patchConsole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/patchConsole.ts -------------------------------------------------------------------------------- /src/patchFileExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/patchFileExplorer.ts -------------------------------------------------------------------------------- /src/patchFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/patchFileManager.ts -------------------------------------------------------------------------------- /src/patchImportFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/patchImportFunctions.ts -------------------------------------------------------------------------------- /src/patchOpenFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/patchOpenFile.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/obsidian-augment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/types/obsidian-augment.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/src/utils.ts -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/styles/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alberti42/obsidian-import-attachments-plus/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------