mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-13 04:57:37 +02:00
feat: Show changelogs from the latest to the last used patches version (#2219)
This commit is contained in:
@ -478,14 +478,8 @@ class HomeViewModel extends BaseViewModel {
|
||||
);
|
||||
}
|
||||
|
||||
Future<String?> getManagerChangelogs() {
|
||||
return _githubAPI.getManagerChangelogs();
|
||||
}
|
||||
|
||||
Future<String?> getLatestPatchesChangelog() async {
|
||||
final release =
|
||||
await _githubAPI.getLatestRelease(_managerAPI.getPatchesRepo());
|
||||
return release?['body'];
|
||||
Future<String?> getChangelogs(bool isPatches) {
|
||||
return _githubAPI.getChangelogs(isPatches);
|
||||
}
|
||||
|
||||
Future<String?> getLatestPatchesReleaseTime() {
|
||||
|
Reference in New Issue
Block a user