diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c5c4b86..6feb6574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: run: npm install -g pnpm && pnpm install - name: Lint - run: pnpm lint + run: pnpm lint || (echo && echo "Run 'pnpm format' to fix." && exit 1) - name: Test run: pnpm test diff --git a/README.md b/README.md index 81227fac..150cb563 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Fight the forgetting curve & note aging by reviewing flashcards & notes using sp 1. FSRS -- [ ] Store scheduling info in a dedicated file +- [ ] Store scheduling info in a dedicated file (`.yaml`) - [ ] Migrate from one storage system to another - [ ] Implement FSRS - [ ] Update documentation diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 28a4aba0..5abdf9d4 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -4,8 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.12.9](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.8...1.12.9) + +- chore: add linting for camelcase variables [`#1098`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1098) +- refactor: move the statistics to the plugin's settings [`#1096`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1096) +- fix: remove caret from package manager definition [`#1095`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1095) +- refactor: update settings [`#1094`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1094) +- fix: sidebar note display [`#1093`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1093) + #### [1.12.8](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.7...1.12.8) +> 25 September 2024 + +- chore: bump version to v1.12.8 [`#1092`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1092) - feat: added delay option for the review buttons [`#1049`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1049) - fix: ignore \*_/_.excalidraw.md files by default [`#1090`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1090) - fix: Only consider filtered notes for next note [`#1089`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1089) diff --git a/manifest.json b/manifest.json index 1c326e50..1b868ded 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-spaced-repetition", "name": "Spaced Repetition", - "version": "1.12.8", + "version": "1.12.9", "minAppVersion": "1.2.8", "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", "author": "Stephen Mwangi", diff --git a/package.json b/package.json index 5b30fc93..baf201f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-spaced-repetition", - "version": "1.12.8", + "version": "1.12.9", "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", "main": "main.js", "scripts": {