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.

feat: center the About dialog on screen; bump package to 1.0.0.1

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

Marco Maroni (Jul 14, 2026, 4:01 PM +0200) 76404ecf 2345eb72

+8 -2
+7 -1
AboutDialog.cpp
··· 4 4 INT_PTR CALLBACK AboutDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) 5 5 { 6 6 switch (uMsg) { 7 - case WM_INITDIALOG: 7 + case WM_INITDIALOG: { 8 + RECT rc; GetWindowRect(hwndDlg, &rc); 9 + int w = rc.right - rc.left, h = rc.bottom - rc.top; 10 + int x = (GetSystemMetrics(SM_CXSCREEN) - w) / 2; 11 + int y = (GetSystemMetrics(SM_CYSCREEN) - h) / 2; 12 + SetWindowPos(hwndDlg, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER); 8 13 return TRUE; 14 + } 9 15 case WM_NOTIFY: 10 16 switch (((LPNMHDR)lParam)->code) { 11 17 case NM_CLICK:
+1 -1
Packaging/AppxManifest.xml
··· 7 7 8 8 <Identity Name="TaskbarCalculator" 9 9 Publisher="CN=TaskbarCalculatorDev" 10 - Version="1.0.0.0" 10 + Version="1.0.0.1" 11 11 ProcessorArchitecture="x64" /> 12 12 13 13 <Properties>