Bump 4.5.7.7
This commit is contained in:
parent
5c0a688ee5
commit
de450c65d9
|
|
@ -34,8 +34,8 @@ android {
|
||||||
minSdkVersion 26
|
minSdkVersion 26
|
||||||
//noinspection OldTargetApi
|
//noinspection OldTargetApi
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode 457060
|
versionCode 457070
|
||||||
versionName "4.5.7.6"
|
versionName "4.5.7.7"
|
||||||
signingConfig signingConfigs.release
|
signingConfig signingConfigs.release
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
||||||
|
|
@ -111,9 +111,8 @@ public class DownloadDetailsVersionsFragment extends ListFragment {
|
||||||
private final String textInstalled;
|
private final String textInstalled;
|
||||||
private final String textUpdateAvailable;
|
private final String textUpdateAvailable;
|
||||||
private final long installedVersionCode;
|
private final long installedVersionCode;
|
||||||
//private View snackbar;
|
|
||||||
|
|
||||||
VersionsAdapter(Context context, InstalledModule installed/*, View snackbar*/) {
|
VersionsAdapter(Context context, InstalledModule installed) {
|
||||||
super(context, R.layout.item_version);
|
super(context, R.layout.item_version);
|
||||||
TypedValue typedValue = new TypedValue();
|
TypedValue typedValue = new TypedValue();
|
||||||
Resources.Theme theme = context.getTheme();
|
Resources.Theme theme = context.getTheme();
|
||||||
|
|
@ -126,7 +125,6 @@ public class DownloadDetailsVersionsFragment extends ListFragment {
|
||||||
textInstalled = getString(R.string.download_section_installed) + ":";
|
textInstalled = getString(R.string.download_section_installed) + ":";
|
||||||
textUpdateAvailable = getString(R.string.download_section_update_available) + ":";
|
textUpdateAvailable = getString(R.string.download_section_update_available) + ":";
|
||||||
installedVersionCode = (installed != null) ? installed.versionCode : -1;
|
installedVersionCode = (installed != null) ? installed.versionCode : -1;
|
||||||
//this.snackbar = snackbar;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("InflateParams")
|
@SuppressLint("InflateParams")
|
||||||
|
|
@ -182,7 +180,6 @@ public class DownloadDetailsVersionsFragment extends ListFragment {
|
||||||
|
|
||||||
holder.downloadView.setUrl(item.downloadLink);
|
holder.downloadView.setUrl(item.downloadLink);
|
||||||
holder.downloadView.setTitle(activity.getModule().name);
|
holder.downloadView.setTitle(activity.getModule().name);
|
||||||
//holder.downloadView.setDownloadFinishedCallback(new DownloadModuleCallback(item, snackbar));
|
|
||||||
|
|
||||||
if (item.changelog != null && !item.changelog.isEmpty()) {
|
if (item.changelog != null && !item.changelog.isEmpty()) {
|
||||||
holder.txtChangesTitle.setVisibility(View.VISIBLE);
|
holder.txtChangesTitle.setVisibility(View.VISIBLE);
|
||||||
|
|
|
||||||
|
|
@ -102,12 +102,6 @@
|
||||||
android:title="@string/enable_heads_up"
|
android:title="@string/enable_heads_up"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
android:defaultValue="true"
|
|
||||||
android:key="snack_bar"
|
|
||||||
android:title="@string/notify_module_update"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
|
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
android:key="custom_list"
|
android:key="custom_list"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue