1.3 KiB
1.3 KiB
Roadmap
This file tracks planned PySentry work that is larger than a single bug fix.
Delivery And Packaging
Keep a single portable binary as the baseline delivery format. It is simple to test, easy to copy between machines, and matches the current storage model where runtime YAML files live next to the executable by default.
Planned delivery variants:
- Windows portable
.zipwithpysentry.exe,README.md, andCHANGELOG.md. - Linux portable
.tar.gzarchives forlinux-amd64andlinux-arm64. - Debian/Ubuntu
.debpackage once the Linux runtime paths are settled. - Windows installer later, likely Inno Setup first and MSI/WiX only if needed.
- AppImage as a possible Linux GUI-friendly format after the core workflow is stable.
- Flatpak only after the desktop integration story is clearer.
- winget manifest after stable public Windows releases exist.
Packaging design note:
- Portable builds can keep settings and jobs next to the executable.
- Installer/package builds should move runtime data to per-user locations:
%APPDATA%\PySentryon Windows, and XDG directories such as~/.config/pysentryand~/.local/share/pysentryon Linux.
Initial priority:
- Windows portable
.zip. - Linux portable
.tar.gzfor amd64 and arm64. - Debian/Ubuntu
.deb. - Windows installer.