generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 260
feat(flashcards): Added option to exclude tags from being considered for Decks #1244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Hugo-Persson
wants to merge
6
commits into
st3v3nmw:master
Choose a base branch
from
Hugo-Persson:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
97f88a2
fix: card context is undefined when showContextInCards false but acce…
Hugo-Persson 4b3aa37
feat: added option to exclude tags from flashcards review. Useful if …
Hugo-Persson ffd34f0
fix: linting issues
Hugo-Persson 5216176
fixed tests
Hugo-Persson 14a6c4b
Merge branch 'st3v3nmw:master' into master
Hugo-Persson b5d0e84
release 1.13.4
Hugo-Persson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| { | ||
| "id": "obsidian-spaced-repetition", | ||
| "name": "Spaced Repetition", | ||
| "version": "1.13.3", | ||
| "minAppVersion": "1.2.8", | ||
| "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", | ||
| "author": "Stephen Mwangi", | ||
| "authorUrl": "https://github.com/st3v3nmw", | ||
| "helpUrl": "https://www.stephenmwangi.com/obsidian-spaced-repetition/", | ||
| "isDesktopOnly": false, | ||
| "fundingUrl": "https://ko-fi.com/M4M44DEN6" | ||
| "id": "obsidian-spaced-repetition", | ||
| "name": "Spaced Repetition", | ||
| "version": "1.13.4", | ||
| "minAppVersion": "1.2.8", | ||
| "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", | ||
| "author": "Stephen Mwangi", | ||
| "authorUrl": "https://github.com/st3v3nmw", | ||
| "helpUrl": "https://www.stephenmwangi.com/obsidian-spaced-repetition/", | ||
| "isDesktopOnly": false, | ||
| "fundingUrl": "https://ko-fi.com/M4M44DEN6" | ||
| } |
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And this too. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,69 +1,69 @@ | ||
| { | ||
| "name": "obsidian-spaced-repetition", | ||
| "version": "1.13.3", | ||
| "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", | ||
| "main": "main.js", | ||
| "scripts": { | ||
| "build": "node esbuild.config.mjs production", | ||
| "dev": "node esbuild.config.mjs", | ||
| "format": "pnpm prettier --write . && pnpm eslint src/ tests/ --fix", | ||
| "lint": "pnpm prettier --check . && pnpm eslint src/ tests/", | ||
| "test": "pnpm jest", | ||
| "validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"format,lint,test\" \"pnpm:format\" \"pnpm:lint\" \"pnpm:test\"", | ||
| "precommit-msg": "echo 'Pre-commit checks...'", | ||
| "changelog": "pnpm auto-changelog --template=compact --package && pnpm prettier --write docs/docs/changelog.md" | ||
| }, | ||
| "keywords": [ | ||
| "obsidian", | ||
| "spaced repetition", | ||
| "flashcard", | ||
| "flashcards" | ||
| ], | ||
| "author": "Stephen Mwangi", | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "@eslint/js": "^9.23.0", | ||
| "@types/eslint__js": "^8.42.3", | ||
| "@types/jest": "^29.5.14", | ||
| "@types/node": "^22.13.11", | ||
| "@types/vhtml": "^2.2.9", | ||
| "@typescript-eslint/eslint-plugin": "^8.27.0", | ||
| "@typescript-eslint/parser": "^8.27.0", | ||
| "auto-changelog": "^2.5.0", | ||
| "builtin-modules": "^4.0.0", | ||
| "concurrently": "^9.1.2", | ||
| "esbuild": "^0.23.1", | ||
| "eslint": "^9.23.0", | ||
| "eslint-plugin-simple-import-sort": "^12.1.1", | ||
| "eslint-plugin-unicorn": "^55.0.0", | ||
| "jest": "^29.7.0", | ||
| "jest-environment-jsdom": "^29.7.0", | ||
| "jest-expect-message": "^1.1.3", | ||
| "moment": "^2.30.1", | ||
| "obsidian": "^1.8.7", | ||
| "pre-commit": "^1.2.2", | ||
| "prettier": "^3.5.3", | ||
| "ts-jest": "^29.2.6", | ||
| "tslib": "^2.8.1", | ||
| "typescript": "~5.5.4", | ||
| "typescript-eslint": "^8.27.0", | ||
| "vhtml": "^2.2.0" | ||
| }, | ||
| "dependencies": { | ||
| "chart.js": "^4.4.8", | ||
| "clozecraft": "^0.4.0", | ||
| "gridjs": "^6.2.0", | ||
| "minimatch": "^10.0.1", | ||
| "pagerank.js": "^1.0.2", | ||
| "short-uuid": "^5.2.0" | ||
| }, | ||
| "pre-commit": [ | ||
| "precommit-msg", | ||
| "validate" | ||
| ], | ||
| "packageManager": "pnpm@9.10.0", | ||
| "engines": { | ||
| "pnpm": ">=9.10.0" | ||
| }, | ||
| "engineStrict": true | ||
| "name": "obsidian-spaced-repetition", | ||
| "version": "1.13.4", | ||
| "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", | ||
| "main": "main.js", | ||
| "scripts": { | ||
| "build": "node esbuild.config.mjs production", | ||
| "dev": "node esbuild.config.mjs", | ||
| "format": "pnpm prettier --write . && pnpm eslint src/ tests/ --fix", | ||
| "lint": "pnpm prettier --check . && pnpm eslint src/ tests/", | ||
| "test": "pnpm jest", | ||
| "validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"format,lint,test\" \"pnpm:format\" \"pnpm:lint\" \"pnpm:test\"", | ||
| "precommit-msg": "echo 'Pre-commit checks...'", | ||
| "changelog": "pnpm auto-changelog --template=compact --package && pnpm prettier --write docs/docs/changelog.md" | ||
| }, | ||
| "keywords": [ | ||
| "obsidian", | ||
| "spaced repetition", | ||
| "flashcard", | ||
| "flashcards" | ||
| ], | ||
| "author": "Stephen Mwangi", | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "@eslint/js": "^9.23.0", | ||
| "@types/eslint__js": "^8.42.3", | ||
| "@types/jest": "^29.5.14", | ||
| "@types/node": "^22.13.11", | ||
| "@types/vhtml": "^2.2.9", | ||
| "@typescript-eslint/eslint-plugin": "^8.27.0", | ||
| "@typescript-eslint/parser": "^8.27.0", | ||
| "auto-changelog": "^2.5.0", | ||
| "builtin-modules": "^4.0.0", | ||
| "concurrently": "^9.1.2", | ||
| "esbuild": "^0.23.1", | ||
| "eslint": "^9.23.0", | ||
| "eslint-plugin-simple-import-sort": "^12.1.1", | ||
| "eslint-plugin-unicorn": "^55.0.0", | ||
| "jest": "^29.7.0", | ||
| "jest-environment-jsdom": "^29.7.0", | ||
| "jest-expect-message": "^1.1.3", | ||
| "moment": "^2.30.1", | ||
| "obsidian": "^1.8.7", | ||
| "pre-commit": "^1.2.2", | ||
| "prettier": "^3.5.3", | ||
| "ts-jest": "^29.2.6", | ||
| "tslib": "^2.8.1", | ||
| "typescript": "~5.5.4", | ||
| "typescript-eslint": "^8.27.0", | ||
| "vhtml": "^2.2.0" | ||
| }, | ||
| "dependencies": { | ||
| "chart.js": "^4.4.8", | ||
| "clozecraft": "^0.4.0", | ||
| "gridjs": "^6.2.0", | ||
| "minimatch": "^10.0.1", | ||
| "pagerank.js": "^1.0.2", | ||
| "short-uuid": "^5.2.0" | ||
| }, | ||
| "pre-commit": [ | ||
| "precommit-msg", | ||
| "validate" | ||
| ], | ||
| "packageManager": "pnpm@9.10.0", | ||
| "engines": { | ||
| "pnpm": ">=9.10.0" | ||
| }, | ||
| "engineStrict": true | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you drop changes to this so we're left with only the implementation/code changes only?