Skip to content

Commit

Permalink
Chore/update readme.md (#54)
Browse files Browse the repository at this point in the history
* Fix/deploy GitHub Pages Action

* 3.1.1
  • Loading branch information
ishiko732 authored Nov 20, 2023
1 parent f53f68d commit 776e528
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Build docs
run: pnpm run docs
- name: Copy example folder
run: cp -R example docs/example
run: cp -R example docs/

- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ Grades.forEach(grade => { // [Rating.Again, Rating.Hard, Rating.Good, Rating.Eas
});
```

More examples refer:
More refer:
- [Docs - Github Pages](https://ishiko732.github.io/ts-fsrs/)
- [Example.html - Github Pages](https://ishiko732.github.io/example.html)
- [Browser](https://github.com/ishiko732/ts-fsrs/blob/master/example/example.html) (ts-fsrs package using CDN)
- [Next.js+Prisma](https://github.com/ishiko732/ts-fsrs-demo)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-fsrs",
"version": "3.1.0",
"version": "3.1.1",
"description": "ts-fsrs is a TypeScript package used to implement the Free Spaced Repetition Scheduler (FSRS) algorithm. It helps developers apply FSRS to their flashcard applications, thereby improving the user learning experience.",
"main": "dist/ts-fsrs.js",
"module": "dist/ts-fsrs.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/fsrs/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const default_w = [
];
export const default_enable_fuzz = false;

export const FSRSVersion: string = "3.1.0";
export const FSRSVersion: string = "3.1.1";

export const generatorParameters = (
props?: Partial<FSRSParameters>,
Expand Down

0 comments on commit 776e528

Please sign in to comment.