diff --git a/res/values/strings.xml b/res/values/strings.xml index 2b25e487e82465811ec2681ad5ccbe653c0c0405..f94f8be643a25f621854636f1ebfff1af8f328cf 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -75,7 +75,7 @@ Copy URL Export update Show changelog - https://images.ecloud.global/%3$s/%1$s/e-%2$s.zip.changelog + https://gitlab.e.foundation/e/os/releases/-/releases/v%1$s-q Prioritize update process New updates found diff --git a/src/org/lineageos/updater/misc/Utils.java b/src/org/lineageos/updater/misc/Utils.java index b1afaa3491dd90788de52147ed1708cc38bee0fb..7dfdb81b9a539b7e7d7391aae7720d46e0517fb1 100644 --- a/src/org/lineageos/updater/misc/Utils.java +++ b/src/org/lineageos/updater/misc/Utils.java @@ -201,14 +201,10 @@ public class Utils { } public static String getChangelogURL(Context context) { - String device = SystemProperties.get(Constants.PROP_NEXT_DEVICE, - SystemProperties.get(Constants.PROP_DEVICE)); - - String version = SystemProperties.get(Constants.PROP_VERSION); - String releaseType = SystemProperties.get(Constants.PROP_RELEASE_TYPE); + String buildVersion = SystemProperties.get(Constants.PROP_BUILD_VERSION); - return context.getString(R.string.menu_changelog_url, device, version, releaseType); + return context.getString(R.string.menu_changelog_url, buildVersion); } public static void triggerUpdate(Context context, String downloadId) {