mirror of
https://github.com/immich-app/immich.git
synced 2026-07-04 03:45:59 -07:00
18 lines
739 B
Dart
18 lines
739 B
Dart
import 'package:immich_mobile/utils/semver.dart';
|
|
|
|
String? getVersionCompatibilityMessage({required SemVer serverVersion, required SemVer appVersion}) {
|
|
// Add latest compat info up top
|
|
|
|
// ensure mobile app major version is not behind server major version
|
|
if (appVersion.major < serverVersion.major) {
|
|
return 'Your mobile app version is not compatible with the server! Please update your mobile app to the latest version.';
|
|
}
|
|
|
|
// ensure mobile app major version is not ahead of server major version by more than 1 major version
|
|
if (appVersion.major > serverVersion.major + 1) {
|
|
return 'Your server version is not compatible with the mobile app! Please update your server to the latest version.';
|
|
}
|
|
|
|
return null;
|
|
}
|