🔖 0.7.2

This commit is contained in:
GitHub 2025-11-22 02:41:52 +00:00
parent 1e10f70f57
commit 9e073e9610
5 changed files with 15 additions and 7 deletions

View file

@ -4,8 +4,16 @@ 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).
#### [0.7.2](https://github.com/ebullient/obsidian-deck-notes/compare/0.7.1...0.7.2)
- 🎨 Simpilify tracking last seen [`c7df00f`](https://github.com/ebullient/obsidian-deck-notes/commit/c7df00f53d5ab0a88b9293b6dd0e4cfa62cc9db1)
- 🐛 debounce over Timer [`68de05b`](https://github.com/ebullient/obsidian-deck-notes/commit/68de05b5d28f55789dfc85e76cd78182e09f7884)
- ☕️ coffee [`1e10f70`](https://github.com/ebullient/obsidian-deck-notes/commit/1e10f70f57d3944f4e34be26ed06f665f0048516)
#### 0.7.1
> 18 November 2025
- 🎨 Plugin lint [`cedca21`](https://github.com/ebullient/obsidian-deck-notes/commit/cedca2173da68711e43ca1ec2298721271ff9a89)
- ✨ Initial pass at simple flashcards [`2d5695e`](https://github.com/ebullient/obsidian-deck-notes/commit/2d5695e5b123e21c6a8df022b873569403cc7da8)
- 📝 human docs to README/CONTRIBUTING [`63c230a`](https://github.com/ebullient/obsidian-deck-notes/commit/63c230a198991e24f6589aacab60c7ba0bd9d69b)

View file

@ -1,7 +1,7 @@
{
"id": "deck-notes",
"name": "Deck Notes",
"version": "0.7.1",
"version": "0.7.2",
"minAppVersion": "1.9.0",
"description": "Define card decks for activities, strategies, or any content you want to rotate through. Embed cards in your notes or browse them in a modal. Filter by tag hierarchies to narrow your selection.",
"author": "ebullient",

View file

@ -1,7 +1,7 @@
{
"id": "deck-notes",
"name": "Deck Notes",
"version": "0.7.1",
"version": "0.7.2",
"minAppVersion": "1.9.0",
"description": "Define card decks for activities, strategies, or any content you want to rotate through. Embed cards in your notes or browse them in a modal. Filter by tag hierarchies to narrow your selection.",
"author": "ebullient",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "deck-notes",
"version": "0.7.1",
"version": "0.7.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "deck-notes",
"version": "0.7.1",
"version": "0.7.2",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.2.6",

View file

@ -1,6 +1,6 @@
{
"name": "deck-notes",
"version": "0.7.1",
"version": "0.7.2",
"private": true,
"description": "Define card decks for activities, strategies, or any content you want to rotate through. Embed cards in your notes or browse them in a modal. Filter by tag hierarchies to narrow your selection.",
"main": "main.js",
@ -46,8 +46,8 @@
"commitLimit": false,
"ignoreCommitPattern": "(🔖|🔨|🧹|changelog|release|Update README).*",
"replaceText": {
"([;.,] [rR]esolves) #\\d+\\.?\\s*$": "$1",
"([;.,] [Ff]ixes) #\\d+\\.?\\s*$": "$1"
"([;.,] [rR]esolves) #\\d+\\.?\\s*$": "$1",
"([;.,] [Ff]ixes) #\\d+\\.?\\s*$": "$1"
}
}
}