Skip to content

Commit

Permalink
Add Info
Browse files Browse the repository at this point in the history
  • Loading branch information
re-zero001 committed Oct 17, 2024
1 parent 868a51d commit a2a1abf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void updateStates(Activity activity, boolean binderAlive, boolean needUp
binding.statusTitle.setText(R.string.activated);
binding.statusIcon.setImageResource(R.drawable.ic_round_check_circle_24);
}
binding.statusSummary.setText(String.format(LocaleDelegate.getDefaultLocale(), "%s (%d)",
binding.statusSummary.setText(String.format(LocaleDelegate.getDefaultLocale(), "%s (%d) - Irena",
ConfigManager.getXposedVersionName(), ConfigManager.getXposedVersionCode()));
binding.developerWarningCard.setVisibility(isDeveloper() ? View.VISIBLE : View.GONE);
} else {
Expand Down Expand Up @@ -296,7 +296,7 @@ public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
binding.designAboutInfo.setTransformationMethod(new LinkTransformationMethod(requireActivity()));
binding.designAboutInfo.setText(HtmlCompat.fromHtml(getString(
R.string.about_view_source_code,
"<b><a href=\"https://github.com/LSPosed/LSPosed\">GitHub</a></b>",
"<b><a href=\"https://github.com/re-zero001/LSPosed\">GitHub</a></b>",
"<b><a href=\"https://t.me/LSPosed\">Telegram</a></b>"), HtmlCompat.FROM_HTML_MODE_LEGACY));
binding.designAboutVersion.setText(String.format(LocaleDelegate.getDefaultLocale(), "%s (%d)", BuildConfig.VERSION_NAME, BuildConfig.VERSION_CODE));
return new BlurBehindDialogBuilder(requireContext())
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings_untranslatable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<resources>
<string name="app_name" translatable="false">LSPosed</string>
<string name="install_url" translatable="false">https://github.com/LSPosed/LSPosed#install</string>
<string name="latest_url" translatable="false">https://github.com/LSPosed/LSPosed/releases/latest</string>
<string name="install_url" translatable="false">https://github.com/re-zero001/LSPosed#install</string>
<string name="latest_url" translatable="false">https://github.com/re-zero001/LSPosed/releases/latest</string>
<string name="settings_group_repo" translatable="false">@string/module_repo</string>
</resources>
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
agp = "8.7.0"
kotlin = "2.0.20"
kotlin = "2.0.21"
nav = "2.8.2"
appcenter = "5.0.5"
libxposed = "100"
Expand Down
2 changes: 1 addition & 1 deletion magisk-loader/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ fun afterEval() = android.applicationVariants.forEach { variant ->
val magiskDir = layout.buildDirectory.dir("magisk/$variantLowered")

val moduleId = "${flavorLowered}_$moduleBaseId"
val zipFileName = "$moduleName-v$verName-$verCode-$buildTypeLowered.zip"
val zipFileName = "$moduleName-v$verName-$verCode-$Irena-$buildTypeLowered.zip"

val prepareMagiskFilesTask = task<Sync>("prepareMagiskFiles$variantCapped") {
group = "LSPosed"
Expand Down
2 changes: 1 addition & 1 deletion magisk-loader/magisk_module/module.prop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
id=${moduleId}
name=LSPosed
name=LSPosed - Irena
version=${versionName} (${versionCode})
versionCode=${versionCode}
author=${authorList}
Expand Down

0 comments on commit a2a1abf

Please sign in to comment.