Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ishiko732 authored Nov 20, 2023
2 parents d78196b + 55c7ab5 commit 899e7f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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-beta8",
"version": "3.1.0",
"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-beta8";
export const FSRSVersion: string = "3.1.0";

export const generatorParameters = (
props?: Partial<FSRSParameters>,
Expand Down
1 change: 1 addition & 0 deletions src/fsrs/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,5 @@ export function fixRating(value: unknown): Rating {
throw new Error(`Invalid rating:[${value}]`);
}


export const Grades: Grade[] = [Rating.Again, Rating.Hard, Rating.Good, Rating.Easy];

0 comments on commit 899e7f6

Please sign in to comment.