@bobfrankston/rmfmail 1.1.58 → 1.1.62
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/client/app.bundle.js +2 -0
- package/client/app.bundle.js.map +2 -2
- package/client/components/alarms.js +7 -0
- package/client/components/alarms.js.map +1 -1
- package/client/components/alarms.ts +8 -1
- package/client/compose/compose.bundle.js +11 -1
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.css +25 -0
- package/client/compose/compose.js +19 -7
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +19 -7
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-20936 → node_modules.npmglobalize-stash-45932}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -4857,6 +4857,7 @@ async function collectDueAlarms(now) {
|
|
|
4857
4857
|
}
|
|
4858
4858
|
}
|
|
4859
4859
|
if (pick) {
|
|
4860
|
+
console.log(`[alarm] fire decision key=${pick.key} title="${ev.title || ""}" startMs=${startMs}`);
|
|
4860
4861
|
items.push({
|
|
4861
4862
|
uuid: pick.key,
|
|
4862
4863
|
kind: "calendar",
|
|
@@ -5129,6 +5130,7 @@ async function firePopupForItem(item) {
|
|
|
5129
5130
|
const m = loadDismissed();
|
|
5130
5131
|
m[item.uuid] = true;
|
|
5131
5132
|
saveDismissed(m);
|
|
5133
|
+
console.log(`[alarm] dismiss saved key=${item.uuid}`);
|
|
5132
5134
|
}
|
|
5133
5135
|
break;
|
|
5134
5136
|
case "Delete":
|