@shaankhosla/repeater 0.0.25 โ†’ 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,49 +1,28 @@
1
- ## [0.0.25] - 2026-01-06
1
+ ## [0.0.26] - 2026-01-09
2
2
 
3
3
  ### ๐Ÿš€ Features
4
4
 
5
- - Make hashing more robust by ignoring whitespace, punctuation, etc (#36)
5
+ - Autogenerate Clozes with LLMs (#28)
6
+ - Utilize ansci defined colors rather than custom colors for TUI theme (#44)
6
7
 
7
8
  ### ๐Ÿ› Bug Fixes
8
9
 
9
- - Improve error display for card parsing errors (#5) (#29)
10
- - Change tool name to repeater due to zsh reserved name
10
+ - Update naming from repeat to repeater in LLM module (#46)
11
+ - Control characters cause panic in openai headers (#48)
11
12
 
12
13
  ### ๐Ÿ’ผ Other
13
14
 
14
- - Bump tokio from 1.48.0 to 1.49.0 (#35)
15
-
16
- Signed-off-by: dependabot[bot] <support@github.com>
17
- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
18
- - Bump clap from 4.5.53 to 4.5.54 (#32)
19
-
20
- Signed-off-by: dependabot[bot] <support@github.com>
21
- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22
- - Bump reqwest from 0.11.27 to 0.13.1 (#33)
23
-
24
- Signed-off-by: dependabot[bot] <support@github.com>
25
- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26
- Co-authored-by: Shaan Khosla <35707672+shaankhosla@users.noreply.github.com>
15
+ - *(deps)* Bump rsa from 0.9.9 to 0.9.10 (#41)
16
+ - Rename repeat->repeater
17
+ - *(deps)* Bump lru from 0.16.2 to 0.16.3 (#43)
27
18
 
28
19
  ### ๐Ÿšœ Refactor
29
20
 
30
- - Slight change to verion check
31
- - Crud (#37)
32
- - Theme
21
+ - Change keys used in drill (#42)
33
22
 
34
23
  ### ๐Ÿ“š Documentation
35
24
 
36
- - Add page on fsrs
37
- - Fix check description
38
- - Faq section
39
- - Update readme
40
- - Update readme
41
- - Updated examples for card parsing
42
-
43
- ### ๐Ÿงช Testing
44
-
45
- - Use property testing to make sure testing doesn't fail
46
-
47
- ### โš™๏ธ Miscellaneous Tasks
48
-
49
- - Lint
25
+ - Make brew install cleaner
26
+ - Alias for install
27
+ - Add github icon
28
+ - Minor rewrite
package/README.md CHANGED
@@ -25,12 +25,12 @@
25
25
 
26
26
  ## Features
27
27
 
28
- - Cards live in `.md` files, so edit them using your favorite markdown editor, back them up with version control, and let them live alongside regular notes.
29
- - Progress is tracked with a hash of the meaningful words, so real text changes reset progress while punctuation or casing tweaks do not.
30
- - Free Spaced Repetition Scheduler (FSRS), a state-of-the-art algorithm targeting 90% recall, automatically schedules reviews for you.
31
- - Terminal UX: `repeater drill` renders cards with ratatui; `repeater create` launches an editor dedicated to card capture; `repeater check` displays progress at a glance.
32
- - Inline media support: reference local images/audio/video inside your decks and open them from a drill session without leaving the terminal.
33
- - Import from Anki: convert `.apkg` exports into Markdown decks with `repeater import` so you can bring your existing collection along.
28
+ - **Markdown-first decks**: write basic Q/A + cloze cards in plain `.md` alongside your notes.
29
+ - **Stable card identity**: โ€œmeaning-onlyโ€ hashing; formatting tweaks donโ€™t reset progress.
30
+ - **FSRS scheduling**: automatic reviews targeting ~90% recall (simple Pass/Fail).
31
+ - **Terminal workflow**: drill TUI, capture editor, and progress dashboard (`drill`, `create`, `check`).
32
+ - **Media + migration**: open linked images/audio/video; import Anki `.apkg` to Markdown.
33
+ - **Optional LLM helper**: add an OpenAI key once and missing Cloze brackets are auto-suggested before drills.
34
34
 
35
35
 
36
36
  ## Installation
@@ -44,8 +44,7 @@ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/shaankhosla/repeater/re
44
44
  ### Homebrew (macOS)
45
45
 
46
46
  ```
47
- brew tap shaankhosla/homebrew-tap
48
- brew install repeater
47
+ brew install shaankhosla/tap/repeater
49
48
  ```
50
49
 
51
50
  ### Windows (PowerShell)
@@ -88,5 +87,6 @@ npm install @shaankhosla/repeater
88
87
 
89
88
  - `Space`/`Enter`: reveal the answer or cloze.
90
89
  - `O`: open the first media file (image/audio/video) referenced in the current card before revealing the answer.
91
- - `1`: mark as `Fail`, `2`: mark as `Pass`.
90
+ - `F`: mark as `Fail`, `Space`/`Enter`: mark as `Pass`.
92
91
  - `Esc` or `Ctrl+C`: end the session early (progress so far is saved).
92
+
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "hasInstallScript": true,
24
24
  "name": "@shaankhosla/repeater",
25
- "version": "0.0.25"
25
+ "version": "0.0.26"
26
26
  },
27
27
  "node_modules/@isaacs/balanced-match": {
28
28
  "engines": {
@@ -514,5 +514,5 @@
514
514
  }
515
515
  },
516
516
  "requires": true,
517
- "version": "0.0.25"
517
+ "version": "0.0.26"
518
518
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/shaankhosla/repeater/releases/download/v0.0.25",
2
+ "artifactDownloadUrl": "https://github.com/shaankhosla/repeater/releases/download/v0.0.26",
3
3
  "author": "shaankhosla",
4
4
  "bin": {
5
5
  "repeater": "run-repeater.js"
@@ -83,7 +83,7 @@
83
83
  "zipExt": ".tar.xz"
84
84
  }
85
85
  },
86
- "version": "0.0.25",
86
+ "version": "0.0.26",
87
87
  "volta": {
88
88
  "node": "18.14.1",
89
89
  "npm": "9.5.0"