Mark updated feature more clear

This commit is contained in:
Imran Remtulla
2023-02-04 19:30:41 -05:00
parent 6e0f6b528e
commit ea68b97ff7
7 changed files with 11 additions and 15 deletions

View File

@@ -662,7 +662,7 @@ class AppsPageState extends State<AppsPage> {
])),
content:
Text(
tr('onlyWorksWithNonEVDApps'),
tr('onlyWorksWithNonVersionDetectApps'),
style: const TextStyle(fontWeight: FontWeight.bold, fontStyle: FontStyle.italic),
),
actions: [
@@ -675,7 +675,7 @@ class AppsPageState extends State<AppsPage> {
onPressed: () {
HapticFeedback.selectionClick();
appsProvider.saveApps(selectedApps.map((a) {
if (a.installedVersion != null) {
if (a.installedVersion != null && a.additionalSettings['noVersionDetection'] == true) {
a.installedVersion = a.latestVersion;
}
return a;