Added 'See Changes' button in app list (GitHub only)

This commit is contained in:
Imran Remtulla
2022-10-07 12:51:53 -04:00
parent a0968caa5c
commit 67f50ba776
9 changed files with 63 additions and 1 deletions

View File

@ -29,6 +29,11 @@ class GitHub implements AppSource {
return creds != null && creds.isNotEmpty ? '$creds@' : '';
}
@override
String? changeLogPageFromStandardUrl(String standardUrl) {
return '$standardUrl/releases';
}
@override
Future<APKDetails> getLatestAPKDetails(
String standardUrl, List<String> additionalData) async {