From 9eeebed8a9e19f1abf7d97c856e6fa1b75983e8f Mon Sep 17 00:00:00 2001 From: ishiko732 Date: Fri, 15 Dec 2023 23:24:50 +0800 Subject: [PATCH 1/2] chore/bump package.json --- package.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 162ddce..584102f 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,9 @@ { "name": "ts-fsrs", "version": "3.2.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", - "browser": "dist/ts-fsrs.umd.js", + "description": "ts-fsrs is a ES modules package based on TypeScript, used to implement the Free Spaced Repetition Scheduler (FSRS) algorithm. It helps developers apply FSRS to their flashcard applications, there by improving the user learning experience.", + "main": "dist/ts-fsrs.cjs.js", + "module": "dist/ts-fsrs.js", "types": "dist/index.d.ts", "type": "module", "keywords": [ @@ -59,8 +58,6 @@ "files": [ "dist", "README.md", - "README_CN.md", - "README_JP.md", "LICENSE" ], "repository": { From 7b1ce983fe0bc829bda56aeb772265e2e645b2cc Mon Sep 17 00:00:00 2001 From: ishiko732 Date: Fri, 15 Dec 2023 23:25:44 +0800 Subject: [PATCH 2/2] 3.2.2 --- example/example.html | 2 +- package.json | 2 +- src/fsrs/default.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/example.html b/example/example.html index 3af6f19..e5b4a7c 100644 --- a/example/example.html +++ b/example/example.html @@ -9,7 +9,7 @@ TS-FSRS example diff --git a/package.json b/package.json index 584102f..75444ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-fsrs", - "version": "3.2.1", + "version": "3.2.2", "description": "ts-fsrs is a ES modules package based on TypeScript, used to implement the Free Spaced Repetition Scheduler (FSRS) algorithm. It helps developers apply FSRS to their flashcard applications, there by improving the user learning experience.", "main": "dist/ts-fsrs.cjs.js", "module": "dist/ts-fsrs.js", diff --git a/src/fsrs/default.ts b/src/fsrs/default.ts index e82a041..c4924a1 100644 --- a/src/fsrs/default.ts +++ b/src/fsrs/default.ts @@ -9,7 +9,7 @@ export const default_w = [ ]; export const default_enable_fuzz = false; -export const FSRSVersion: string = "3.2.1"; +export const FSRSVersion: string = "3.2.2"; export const generatorParameters = ( props?: Partial,