pi-thinking-timer 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/thinking-timer.ts +1 -5
package/package.json
CHANGED
package/thinking-timer.ts
CHANGED
|
@@ -195,8 +195,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
pi.on("session_start", async (_event, ctx) => {
|
|
198
|
-
|
|
199
|
-
ctx.ui.setWorkingMessage();
|
|
198
|
+
resetAll(ctx);
|
|
200
199
|
});
|
|
201
200
|
|
|
202
201
|
pi.on("message_update", async (event, ctx) => {
|
|
@@ -244,9 +243,6 @@ export default function (pi: ExtensionAPI) {
|
|
|
244
243
|
if (store.starts.size === 0) stopTicker();
|
|
245
244
|
});
|
|
246
245
|
|
|
247
|
-
pi.on("session_switch", async (_event, ctx) => {
|
|
248
|
-
resetAll(ctx);
|
|
249
|
-
});
|
|
250
246
|
|
|
251
247
|
pi.on("session_shutdown", async (_event, ctx) => {
|
|
252
248
|
resetAll(ctx);
|