├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── esbuild.config.mjs ├── main.ts ├── manifest.json ├── noteset-info.png ├── noteset-select-modal.png ├── noteset-settings.png ├── package.json ├── settings.png ├── src ├── UI │ ├── icon.ts │ ├── noteset │ │ ├── noteSetDeleteModal.ts │ │ ├── noteSetEditModal.ts │ │ └── noteSetInfoModal.ts │ ├── selectNoteSetModal.ts │ ├── settingsTab.ts │ └── sidebar │ │ └── sidebarView.ts ├── dataview │ ├── dataviewFacade.ts │ └── dataviewService.ts ├── noteSet │ ├── INoteSet.ts │ ├── INoteSetStats.ts │ ├── noteReviewPriorityHelpers.ts │ ├── noteSetInfoService.ts │ ├── noteSetService.ts │ ├── notesetValidationErrors.ts │ └── reviewFrequency.ts ├── notes │ └── fileService.ts ├── queues │ ├── noteQueue.ts │ └── reviewService.ts ├── settings │ ├── joinLogicOperators.ts │ ├── pluginSettings.ts │ └── reviewAlgorightms.ts └── utils │ ├── dateUtils.ts │ └── metadataService.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/manifest.json -------------------------------------------------------------------------------- /noteset-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/noteset-info.png -------------------------------------------------------------------------------- /noteset-select-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/noteset-select-modal.png -------------------------------------------------------------------------------- /noteset-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/noteset-settings.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/package.json -------------------------------------------------------------------------------- /settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/settings.png -------------------------------------------------------------------------------- /src/UI/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/icon.ts -------------------------------------------------------------------------------- /src/UI/noteset/noteSetDeleteModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/noteset/noteSetDeleteModal.ts -------------------------------------------------------------------------------- /src/UI/noteset/noteSetEditModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/noteset/noteSetEditModal.ts -------------------------------------------------------------------------------- /src/UI/noteset/noteSetInfoModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/noteset/noteSetInfoModal.ts -------------------------------------------------------------------------------- /src/UI/selectNoteSetModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/selectNoteSetModal.ts -------------------------------------------------------------------------------- /src/UI/settingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/settingsTab.ts -------------------------------------------------------------------------------- /src/UI/sidebar/sidebarView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/UI/sidebar/sidebarView.ts -------------------------------------------------------------------------------- /src/dataview/dataviewFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/dataview/dataviewFacade.ts -------------------------------------------------------------------------------- /src/dataview/dataviewService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/dataview/dataviewService.ts -------------------------------------------------------------------------------- /src/noteSet/INoteSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/INoteSet.ts -------------------------------------------------------------------------------- /src/noteSet/INoteSetStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/INoteSetStats.ts -------------------------------------------------------------------------------- /src/noteSet/noteReviewPriorityHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/noteReviewPriorityHelpers.ts -------------------------------------------------------------------------------- /src/noteSet/noteSetInfoService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/noteSetInfoService.ts -------------------------------------------------------------------------------- /src/noteSet/noteSetService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/noteSetService.ts -------------------------------------------------------------------------------- /src/noteSet/notesetValidationErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/notesetValidationErrors.ts -------------------------------------------------------------------------------- /src/noteSet/reviewFrequency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/noteSet/reviewFrequency.ts -------------------------------------------------------------------------------- /src/notes/fileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/notes/fileService.ts -------------------------------------------------------------------------------- /src/queues/noteQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/queues/noteQueue.ts -------------------------------------------------------------------------------- /src/queues/reviewService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/queues/reviewService.ts -------------------------------------------------------------------------------- /src/settings/joinLogicOperators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/settings/joinLogicOperators.ts -------------------------------------------------------------------------------- /src/settings/pluginSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/settings/pluginSettings.ts -------------------------------------------------------------------------------- /src/settings/reviewAlgorightms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/settings/reviewAlgorightms.ts -------------------------------------------------------------------------------- /src/utils/dateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/utils/dateUtils.ts -------------------------------------------------------------------------------- /src/utils/metadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/src/utils/metadataService.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartungar/obsidian-simple-note-review/HEAD/versions.json --------------------------------------------------------------------------------