Skip to content

Commit a2a1abf

Browse files
committed
Add Info
1 parent 868a51d commit a2a1abf

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

app/src/main/java/org/lsposed/manager/ui/fragment/HomeFragment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ private void updateStates(Activity activity, boolean binderAlive, boolean needUp
149149
binding.statusTitle.setText(R.string.activated);
150150
binding.statusIcon.setImageResource(R.drawable.ic_round_check_circle_24);
151151
}
152-
binding.statusSummary.setText(String.format(LocaleDelegate.getDefaultLocale(), "%s (%d)",
152+
binding.statusSummary.setText(String.format(LocaleDelegate.getDefaultLocale(), "%s (%d) - Irena",
153153
ConfigManager.getXposedVersionName(), ConfigManager.getXposedVersionCode()));
154154
binding.developerWarningCard.setVisibility(isDeveloper() ? View.VISIBLE : View.GONE);
155155
} else {
@@ -296,7 +296,7 @@ public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
296296
binding.designAboutInfo.setTransformationMethod(new LinkTransformationMethod(requireActivity()));
297297
binding.designAboutInfo.setText(HtmlCompat.fromHtml(getString(
298298
R.string.about_view_source_code,
299-
"<b><a href=\"https://github.com/LSPosed/LSPosed\">GitHub</a></b>",
299+
"<b><a href=\"https://github.com/re-zero001/LSPosed\">GitHub</a></b>",
300300
"<b><a href=\"https://t.me/LSPosed\">Telegram</a></b>"), HtmlCompat.FROM_HTML_MODE_LEGACY));
301301
binding.designAboutVersion.setText(String.format(LocaleDelegate.getDefaultLocale(), "%s (%d)", BuildConfig.VERSION_NAME, BuildConfig.VERSION_CODE));
302302
return new BlurBehindDialogBuilder(requireContext())

app/src/main/res/values/strings_untranslatable.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<resources>
2121
<string name="app_name" translatable="false">LSPosed</string>
22-
<string name="install_url" translatable="false">https://github.com/LSPosed/LSPosed#install</string>
23-
<string name="latest_url" translatable="false">https://github.com/LSPosed/LSPosed/releases/latest</string>
22+
<string name="install_url" translatable="false">https://github.com/re-zero001/LSPosed#install</string>
23+
<string name="latest_url" translatable="false">https://github.com/re-zero001/LSPosed/releases/latest</string>
2424
<string name="settings_group_repo" translatable="false">@string/module_repo</string>
2525
</resources>

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
agp = "8.7.0"
3-
kotlin = "2.0.20"
3+
kotlin = "2.0.21"
44
nav = "2.8.2"
55
appcenter = "5.0.5"
66
libxposed = "100"

magisk-loader/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ fun afterEval() = android.applicationVariants.forEach { variant ->
164164
val magiskDir = layout.buildDirectory.dir("magisk/$variantLowered")
165165

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

169169
val prepareMagiskFilesTask = task<Sync>("prepareMagiskFiles$variantCapped") {
170170
group = "LSPosed"

magisk-loader/magisk_module/module.prop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
id=${moduleId}
2-
name=LSPosed
2+
name=LSPosed - Irena
33
version=${versionName} (${versionCode})
44
versionCode=${versionCode}
55
author=${authorList}

0 commit comments

Comments
 (0)