A simple, small calculator placed discreetly near the Windows Taskbar or anywhere on the screen
0

Configure Feed

Select the types of activity you want to include in your feed.

docs: document classic installer path and start-at-login fallback in CLAUDE.md

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

authored by

Marco Maroni
Claude Opus 4.8 (1M context)
and committed by
Tangled
(Jul 15, 2026, 1:16 PM +0300) 3aab2ccc 88a20d93

+12 -4
+12 -4
CLAUDE.md
··· 49 49 toggles the window, right-click opens the menu (Show/Hide, Start at login, About, Exit). 50 50 - **Start-at-login** uses the MSIX `windows.startupTask` API, so it only works when the app 51 51 is **packaged/installed**; unpackaged it reports `Unavailable` and the menu item is grayed. 52 - - **Package:** from `Packaging\`, run `MakeAssets.ps1` (once), `MakeCert.ps1` (once), then 53 - `BuildMsix.ps1` → `Packaging\TaskbarCalculator.msix`. Install steps (trust the dev cert + 54 - `Add-AppxPackage`) are documented in `docs/superpowers/VERIFICATION.md` and require an 55 - elevated shell. 52 + - **Package (two distribution paths):** 53 + - *Classic installer (current public channel):* compile `Packaging\TaskbarCalculatorSetup.iss` 54 + with Inno Setup's `ISCC.exe` → `Packaging\TaskbarCalculatorSetup.exe` — a per-user, 55 + unsigned, self-installing setup hosted on the project site. Requires a Release x64 build 56 + first. 57 + - *MSIX (kept for a future Microsoft Store submission):* from `Packaging\`, run 58 + `MakeAssets.ps1` (once), `MakeCert.ps1` (once), then `BuildMsix.ps1` → 59 + `Packaging\TaskbarCalculator.msix` (self-signed; trust + `Add-AppxPackage` need an 60 + elevated shell — see `docs/superpowers/VERIFICATION.md`). 61 + - **Start-at-login** works in both: `StartupManager` uses the MSIX `StartupTask` API when 62 + packaged, and falls back to the `HKCU\...\Run` registry value when unpackaged (classic 63 + install). The version is **3.0.0** (continuing from the last public release, 2.2). 56 64 57 65 ## Architecture 58 66