mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-21 10:13:56 +00:00
feat: Show changelogs from the latest to the last used patches version (#2219)
This commit is contained in:
@@ -105,9 +105,7 @@ class UpdateConfirmationSheet extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
FutureBuilder<String?>(
|
||||
future: !isPatches
|
||||
? model.getManagerChangelogs()
|
||||
: model.getLatestPatchesChangelog(),
|
||||
future: model.getChangelogs(isPatches),
|
||||
builder: (_, snapshot) {
|
||||
if (!snapshot.hasData) {
|
||||
return Padding(
|
||||
@@ -117,7 +115,6 @@ class UpdateConfirmationSheet extends StatelessWidget {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
return Container(
|
||||
margin: const EdgeInsets.symmetric(horizontal: 24.0),
|
||||
decoration: BoxDecoration(
|
||||
|
||||
Reference in New Issue
Block a user