Minimal Qt memo app for Windows.
Features:
- Single memo surface only
- No save/load behavior; each launch starts with a blank note
- Click
http://orhttps://URLs to open them in the browser - Click Windows paths to open them in Explorer
- Click Linux-style absolute paths to resolve them through WSL and open the result in Explorer
Local release build:
cmake -S . -B build -DCMAKE_PREFIX_PATH="C:\Qt\6.7.2\msvc2019_64"
cmake --build build --config Release
cpack --config build/CPackConfig.cmake -C ReleaseThe generated ZIP is written to the repository root and includes NullNote.exe, deployed Qt runtime files, README.md, LICENSE, and THIRD_PARTY_NOTICES.txt.
The app uses assets/icon.png for the in-app icon and assets/icon.ico for the Windows executable icon.
To regenerate the multi-size .ico in this environment, use uv instead of a bare python:
./scripts/generate_icon.ps1Pushing a tag matching v* (for example v1.0.0) triggers .github/workflows/release-zip.yml and publishes the ZIP as both a workflow artifact and a GitHub Release asset.