1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-17 15:37:42 +02:00

feat(mobile): compatibility message warning (#10065)

* feat(mobile): compatibility message warning

* refactor and better signature
This commit is contained in:
Alex
2024-06-10 12:43:54 -05:00
committed by GitHub
parent 19e35d8d3f
commit 46df165ef2
10 changed files with 350 additions and 217 deletions

View File

@ -0,0 +1,17 @@
String? getVersionCompatibilityMessage(
int appMajor,
int appMinor,
int serverMajor,
int serverMinor,
) {
if (serverMajor != appMajor) {
return 'Your app major version is not compatible with the server!';
}
// Add latest compat info up top
if (serverMinor < 106 && appMinor >= 106) {
return 'Your app minor version is not compatible with the server! Please update your server to version v1.106.0 or newer to login';
}
return null;
}