add changelog to updater
thanks, @LucasGGamerM!
This commit is contained in:
@@ -959,7 +959,7 @@ public class SettingsFragment extends MastodonToolbarFragment{
|
||||
|
||||
private class UpdateViewHolder extends BindableViewHolder<UpdateItem>{
|
||||
|
||||
private final TextView text;
|
||||
private final TextView text, changelog;
|
||||
private final Button button;
|
||||
private final ImageButton cancelBtn;
|
||||
private final ProgressBar progress;
|
||||
@@ -970,6 +970,7 @@ public class SettingsFragment extends MastodonToolbarFragment{
|
||||
public UpdateViewHolder(){
|
||||
super(getActivity(), R.layout.item_settings_update, list);
|
||||
text=findViewById(R.id.text);
|
||||
changelog=findViewById(R.id.changelog);
|
||||
button=findViewById(R.id.button);
|
||||
cancelBtn=findViewById(R.id.cancel_btn);
|
||||
progress=findViewById(R.id.progress);
|
||||
@@ -1013,6 +1014,7 @@ public class SettingsFragment extends MastodonToolbarFragment{
|
||||
progress.setVisibility(View.GONE);
|
||||
progress.removeCallbacks(progressUpdater);
|
||||
}
|
||||
changelog.setText(info.changelog);
|
||||
}
|
||||
|
||||
private void updateProgress(){
|
||||
|
||||
@@ -51,6 +51,7 @@ public abstract class GithubSelfUpdater{
|
||||
|
||||
public static class UpdateInfo{
|
||||
public String version;
|
||||
public String changelog;
|
||||
public long size;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user