You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/vscode-extension/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "mooncode",
3
3
"displayName": "MoonCode",
4
4
"description": "MoonCode is an extension that tracks your coding time (like WakaTime) and gives you a detailed summary about all your coding statistics. With MoonCode, developers get the full history of their coding activity.",
Copy file name to clipboardExpand all lines: apps/vscode-extension/src/types-schemas.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,10 @@ import { IsoDateStringSchema } from "@repo/common/types-schemas";
5
5
/**
6
6
* A file is marked as frozen when it is no longer the active file or if it is the active file but the user is inactive in the file for more than `MAX_IDLE_TIME` seconds
7
7
* - `frozenTime` is an accumulator of time to track the elapsedTime on a file when the language is frozen
8
-
* - `freezeStartTime` is the time when the file is marked as frozen
8
+
* - `freezeStartTime` is the moment when the file is marked as frozen
9
9
* - `startTime` is the moment we start counting the time for that file
10
10
* - `lastActivityTime` is the moment when the file is no longer focused, i.e no longer the active file
11
-
* - `elapsedTime` is the time elapsed in total and what we send to the server/save in the global state
11
+
* - `elapsedTime` is the time elapsed in total and what we send to the server/save in the global state
12
12
* - `isFrozen` is a boolean to freeze/unfreeze the file
0 commit comments