├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE.MD ├── README.md ├── README_ZH.md ├── esbuild.config.mjs ├── images ├── en │ ├── command.png │ ├── settings.png │ └── toggle-hide-ribbon.png ├── overview.png └── zh │ ├── command.png │ ├── settings.png │ └── toggle-hide-ribbon.png ├── main.ts ├── manifest.json ├── package.json ├── src ├── Plugin.ts ├── SettingTab.ts ├── Settings.ts ├── components │ ├── HideFolder.ts │ ├── LocalizationAttachments.ts │ └── VaultAttachmentConfiguration.ts ├── handler │ ├── CreateHandler.ts │ ├── DeleteHandler.ts │ ├── FileOpenHandler.ts │ └── RenameHandler.ts └── lang │ ├── en.ts │ ├── index.ts │ └── zh.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/README_ZH.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /images/en/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/en/command.png -------------------------------------------------------------------------------- /images/en/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/en/settings.png -------------------------------------------------------------------------------- /images/en/toggle-hide-ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/en/toggle-hide-ribbon.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/zh/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/zh/command.png -------------------------------------------------------------------------------- /images/zh/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/zh/settings.png -------------------------------------------------------------------------------- /images/zh/toggle-hide-ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/images/zh/toggle-hide-ribbon.png -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/package.json -------------------------------------------------------------------------------- /src/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/Plugin.ts -------------------------------------------------------------------------------- /src/SettingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/SettingTab.ts -------------------------------------------------------------------------------- /src/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/Settings.ts -------------------------------------------------------------------------------- /src/components/HideFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/components/HideFolder.ts -------------------------------------------------------------------------------- /src/components/LocalizationAttachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/components/LocalizationAttachments.ts -------------------------------------------------------------------------------- /src/components/VaultAttachmentConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/components/VaultAttachmentConfiguration.ts -------------------------------------------------------------------------------- /src/handler/CreateHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/handler/CreateHandler.ts -------------------------------------------------------------------------------- /src/handler/DeleteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/handler/DeleteHandler.ts -------------------------------------------------------------------------------- /src/handler/FileOpenHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/handler/FileOpenHandler.ts -------------------------------------------------------------------------------- /src/handler/RenameHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/handler/RenameHandler.ts -------------------------------------------------------------------------------- /src/lang/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/lang/en.ts -------------------------------------------------------------------------------- /src/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/lang/index.ts -------------------------------------------------------------------------------- /src/lang/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/src/lang/zh.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenfeicqq/obsidian-attachment-manager/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.12.17" 3 | } --------------------------------------------------------------------------------