Skip to content

Commit 699c963

Browse files
committed
Update configuration descriptions and default values: Clarify save interval, inactivity timeout, and focus timeout settings in package.json for better user understanding.
1 parent 01ffb79 commit 699c963

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,19 @@
1919
"contributes": {
2020
"configuration": {
2121
"title": "Simple Coding Time Tracker",
22-
"properties": {
23-
"simpleCodingTimeTracker.saveInterval": {
22+
"properties": { "simpleCodingTimeTracker.saveInterval": {
2423
"type": "number",
2524
"default": 5,
26-
"description": "Interval in seconds to save the current coding session"
25+
"description": "How often to save coding time data (in seconds)"
2726
}, "simpleCodingTimeTracker.inactivityTimeout": {
2827
"type": "number",
29-
"default": 300,
30-
"description": "Time in seconds of inactivity before tracking stops (default: 300 seconds = 5 minutes)"
28+
"default": 150,
29+
"description": "Stop tracking after no keyboard/mouse activity (in seconds)"
3130
},
3231
"simpleCodingTimeTracker.focusTimeout": {
3332
"type": "number",
34-
"default": 60,
35-
"description": "Time in seconds to continue tracking after VS Code loses focus (default: 60 seconds)"
33+
"default": 180,
34+
"description": "Continue tracking when switching apps (in seconds)"
3635
}
3736
}
3837
},

0 commit comments

Comments
 (0)