This repository hosts OTA (Over-The-Air) update packages for FAgram Desktop.
ota/
├── current4 # JSON manifest with latest versions per platform
├── tx64upd<version> # Windows x64 update package
├── tlinuxupd<version> # Linux update package
└── README.md
The FAgram Desktop client periodically checks current4 for new versions. If an update is available, it downloads the signed package and installs it automatically.
| Platform | Key | File prefix |
|---|---|---|
| Windows x64 | win64 |
tx64upd |
| Linux | linux |
tlinuxupd |
Use the publish script from the main repo:
python Telegram/build/publish_update.py \
--version <version_int> \
--platform win64 \
--file path/to/tx64upd<version>See docs/ota-updates.md for full documentation.