@bobfrankston/rmfmail 1.2.322 → 1.2.323
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/.commitmsg +15 -25
- package/.llm/trusted-lists.md +1 -0
- package/client/app.bundle.js +6 -2
- package/client/app.bundle.js.map +2 -2
- package/client/components/calendar-sidebar.js +14 -2
- package/client/components/calendar-sidebar.js.map +1 -1
- package/client/components/calendar-sidebar.ts +17 -2
- package/npmchanges.md +30 -0
- package/package.json +7 -7
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +8 -2
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +8 -2
- package/packages/mailx-service/package.json +1 -1
- package/packages/mailx-types/mailx-api.d.ts +1 -0
- package/packages/mailx-types/mailx-api.d.ts.map +1 -1
- package/packages/mailx-types/mailx-api.ts +1 -1
package/.commitmsg
CHANGED
|
@@ -1,27 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
New event: the calendar picker is always there, and lists every calendar you can write to
|
|
2
2
|
|
|
3
|
-
Bob 2026-09-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
was ignored, correctly, with no way forward. Trusting amazonses.com as an
|
|
9
|
-
intermediary was not offered (no Sender: header) and would be too broad.
|
|
3
|
+
Bob 2026-09-11: "the add appointment box should give me a choice of
|
|
4
|
+
calendars." v1.2.318 hid the picker whenever Google reported fewer than
|
|
5
|
+
two writable calendars — and his four are one owned calendar plus two
|
|
6
|
+
holiday feeds and a shared one, so the row never appeared and read as a
|
|
7
|
+
missing feature.
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
key for desktop and Android; getAllowlist returns it.
|
|
21
|
-
|
|
22
|
-
Tests: Ground News headers; pair silences only with that relay's
|
|
23
|
-
signature (not unsigned, not another relay, not another From through the
|
|
24
|
-
same relay); a phishing listing stays red. Verified on the live message:
|
|
25
|
-
caution with the offer before, silent after. mailx-types 0.1.97,
|
|
26
|
-
mailx-settings 0.1.89, mailx-store 0.1.124, mailx-service 0.1.38,
|
|
27
|
-
mailx-store-web 0.1.117.
|
|
9
|
+
The row is now always shown. With one writable calendar the dropdown is
|
|
10
|
+
disabled and its tooltip says that this is the only calendar Google lets
|
|
11
|
+
you add events to, that the others are read-only, and where to change
|
|
12
|
+
that (Google Calendar, then Refresh). getCalendars returns EVERY
|
|
13
|
+
calendar with `selected` as a flag instead of a filter: the sidebar
|
|
14
|
+
still lists the selected ones, but a calendar the reader owns and has
|
|
15
|
+
unticked in Google is still one a new event can go to. The daemon logs
|
|
16
|
+
each calendar's role and selection at enumeration so "why only one" can
|
|
17
|
+
be answered from the log. mailx-types 0.1.98, mailx-service 0.1.39.
|
package/.llm/trusted-lists.md
CHANGED
|
@@ -68,3 +68,4 @@ tests/trust.test.ts, .commitmsg, TODO.md C165, root version 1.2.311. Then rebuil
|
|
|
68
68
|
- v1.2.321: signature block uses a 3cm <hr> instead of '-- ' (compose.ts sigBlock).
|
|
69
69
|
- Bob confirmed 2026-09-10: 'quill worked' (v1.2.320 placeCaretAfterLink).
|
|
70
70
|
- v1.2.322: trustedSendersVia ('sender via relay' pairs) — Ground News via amazonses.com. Banner offers 'Trust ‹sender› via ‹relay›' on the trusted-but-unproved caution; counts only when the relay DKIM-signed. 45/45 trust tests.
|
|
71
|
+
- v1.2.323: New event picker always shown (disabled + explanatory tooltip when only one writable calendar); getCalendars returns all calendars with selected flag; daemon logs roles.
|
package/client/app.bundle.js
CHANGED
|
@@ -6791,7 +6791,7 @@ async function renderCalendarList() {
|
|
|
6791
6791
|
if (list.length === 0) {
|
|
6792
6792
|
host.innerHTML = "";
|
|
6793
6793
|
} else {
|
|
6794
|
-
const sorted =
|
|
6794
|
+
const sorted = list.filter((c) => c.selected !== false).sort((a, b) => (a.primary ? 0 : 1) - (b.primary ? 0 : 1) || a.name.localeCompare(b.name));
|
|
6795
6795
|
host.innerHTML = sorted.map((c) => `<label class="cal-side-cal-row" title="${escapeHtml6(c.name)} \u2014 untick to hide its events in this list. Which calendars are listed is set in Google Calendar: the ones selected there appear; use Refresh after changing it.">
|
|
6796
6796
|
<input type="checkbox" class="cal-side-cal-check" data-cal-id="${escapeHtml6(c.id)}" ${hiddenCalendars.has(c.id) ? "" : "checked"}>
|
|
6797
6797
|
${calIconHtml(c)}
|
|
@@ -7245,7 +7245,11 @@ function openNewEventDialog() {
|
|
|
7245
7245
|
opt.selected = true;
|
|
7246
7246
|
calSelect.append(opt);
|
|
7247
7247
|
}
|
|
7248
|
-
calRow.hidden =
|
|
7248
|
+
calRow.hidden = false;
|
|
7249
|
+
calSelect.disabled = writable.length < 2;
|
|
7250
|
+
if (writable.length < 2) {
|
|
7251
|
+
calRow.title = writable.length ? `${writable[0].name} is the only calendar Google says you can add events to. The others are read-only (holidays, or shared without edit rights). To add or share a calendar, do that in Google Calendar and press Refresh.` : "Google reported no calendar you can add events to.";
|
|
7252
|
+
}
|
|
7249
7253
|
};
|
|
7250
7254
|
if (calendarList.length)
|
|
7251
7255
|
fillCalendars(calendarList);
|