Skip to content

Commit a4b88dc

Browse files
authored
refactor: move the statistics to the plugin's settings (#1096)
1 parent 81b7e67 commit a4b88dc

File tree

29 files changed

+1250
-1254
lines changed

29 files changed

+1250
-1254
lines changed

docs/docs/en/flashcards/statistics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Statistics
22

3-
The statistics section can be accessed using the `View Statistics` command.
3+
The statistics section can be accessed in the `Statistics` section in the plugin's settings.
44

55
### Forecast
66

jest.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ module.exports = {
1616
"node_modules/",
1717

1818
// GUI & Obsidian coupled code
19-
"src/app-core.ts",
19+
"src/core.ts",
2020
"src/sr-file.ts",
2121
"src/gui/",
2222
"src/icons/",
2323
"src/main.ts",
2424
"src/next-note-review-handler.ts",
2525
"src/plugin-data.ts",
26-
"src/settings.ts",
2726
"src/utils/renderers.ts",
2827

2928
// debugging utils

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
"author": "Stephen Mwangi",
2121
"license": "MIT",
2222
"devDependencies": {
23-
"@eslint/js": "^9.11.0",
23+
"@eslint/js": "^9.11.1",
2424
"@types/eslint__js": "^8.42.3",
2525
"@types/jest": "^29.5.13",
26-
"@types/node": "^22.5.5",
26+
"@types/node": "^22.7.1",
2727
"@types/vhtml": "^2.2.9",
28-
"@typescript-eslint/eslint-plugin": "^8.6.0",
29-
"@typescript-eslint/parser": "^8.6.0",
28+
"@typescript-eslint/eslint-plugin": "^8.7.0",
29+
"@typescript-eslint/parser": "^8.7.0",
3030
"auto-changelog": "^2.5.0",
3131
"builtin-modules": "^4.0.0",
3232
"esbuild": "^0.23.1",
33-
"eslint": "^9.11.0",
33+
"eslint": "^9.11.1",
3434
"eslint-plugin-simple-import-sort": "^12.1.1",
3535
"eslint-plugin-unicorn": "^55.0.0",
3636
"jest": "^29.7.0",
@@ -42,7 +42,7 @@
4242
"ts-jest": "^29.2.5",
4343
"tslib": "^2.7.0",
4444
"typescript": "~5.5.4",
45-
"typescript-eslint": "^8.6.0",
45+
"typescript-eslint": "^8.7.0",
4646
"vhtml": "^2.2.0"
4747
},
4848
"dependencies": {

0 commit comments

Comments
 (0)