fix: show open button to non-updatable apps

This commit is contained in:
Alberto Ponces
2022-08-22 00:55:54 +01:00
parent 9317714651
commit af8e753ea6
4 changed files with 18 additions and 17 deletions

View File

@ -37,11 +37,11 @@ class ManagerAPI {
Future<bool> hasAppUpdates(String packageName) async {
// TODO: get status based on last update time on the folder of this app?
return true;
return false;
}
Future<String> getAppChangelog(String packageName) async {
// TODO: get changelog based on last commits on the folder of this app?
return 'to be implemented';
return 'To be implemented';
}
}