| 1 | package appidentity |
| 2 | |
| 3 | const ( |
| 4 | // AppUserModelID belongs to Desktop, independently of installed Studio versions. |
| 5 | // Keep it stable across upgrades and aligned with the Electron shell. |
| 6 | AppUserModelID = "io.reasonix.desktop" |
| 7 | DisplayName = "Reasonix" |
| 8 | |
| 9 | // Old Desktop and Wails Studio shared this ID; ownership must precede migration. |
| 10 | legacyAppUserModelID = "Reasonix" |
| 11 | studioAppUserModelID = "io.reasonix.studio" |
| 12 | legacyTauriAppUserModelID = "dev.reasonix.desktop" |
| 13 | ) |
| 14 |