Streamlined timer modes with bug fixes and code cleanup: Bug Fixes: - Fixed "POMODORO COMPLETE" showing in stopwatch mode - Fixed break timer showing pomodoro notices in stopwatch mode - Fixed pause/resume resetting timer to 0 in stopwatch mode - Fixed "Continue Working" button appearing in stopwatch mode - Fixed "Skip Break" button changing to "Continue" incorrectly Improvements: - Stopwatch mode now completely independent from pomodoro workflow - Removed break functionality from stopwatch mode (only Pause, Complete, Stop buttons) - Stopwatch mode maintains "FOCUSING ON" label throughout session - Cleaned up dead code (wasStopwatchBeforeBreak flag and related logic) - Simplified break resume logic (always returns to pomodoro mode) Technical: - Added isStopwatchMode flag for proper mode tracking - Fixed toggleTimer to handle stopwatch count-up vs pomodoro countdown - Removed unnecessary break integration code from stopwatch workflow
38 lines
977 B
JSON
38 lines
977 B
JSON
{
|
|
"name": "immerse",
|
|
"version": "1.1.4",
|
|
"description": "A Blitzit-inspired task management and focus timer plugin for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"package": "npm run build && node package-release.mjs",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"productivity",
|
|
"pomodoro",
|
|
"tasks",
|
|
"timer",
|
|
"focus"
|
|
],
|
|
"author": "Crib",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cribdev.com/crib/immerse"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
"@typescript-eslint/parser": "^5.29.0",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|