This commit is contained in:
Bendt
2025-12-20 16:30:39 -05:00
parent d6e10e3dc5
commit 2b76458de1
3 changed files with 12 additions and 0 deletions

BIN
.coverage

Binary file not shown.

View File

@@ -519,6 +519,16 @@ class IPCClient:
- IPC should gracefully handle missing socket (apps work standalone)
- Search should be responsive and not block UI
---
## Polish for release and Auth
- Authentication isn't working if the user is in a different directory than expected. Store the auth token in a ~/.local directory so it's consistently availabe in every dir.
- Setup scripts, look at popular modern python CLI or TUI projects and create an install or first run script that works for most scenarios, using `uv` or `pip` to install globally for users, or maybe get a homebrew installation to work? Get users to set up himalaya and khal and dstask but ask them for their choice once we have other backends available.
- Documentation files in the repo, and documentation site to publish.
---
## Library Updates & Python Version Review

View File

@@ -304,6 +304,8 @@ class CalendarApp(App):
try:
panel = self.query_one("#sidebar-invites", InvitesPanel)
panel.set_invites(self._invites)
if self._invites:
self.notify(f"Loaded {len(self._invites)} pending invite(s)")
except Exception:
pass