Skip to content

Commit

Permalink
Update repo info
Browse files Browse the repository at this point in the history
  • Loading branch information
JingMatrix committed Jul 27, 2024
1 parent 3ba23a2 commit bdba029
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void onPrepareMenu(Menu menu) {
return true;
});
menu.findItem(R.id.menu_issue).setOnMenuItemClickListener(v -> {
NavUtil.startURL(requireActivity(), "https://github.com/LSPosed/LSPosed/issues/new/choose");
NavUtil.startURL(requireActivity(), "https://github.com/JingMatrix/LSPosed/issues/new/choose");
return true;
});
}
Expand Down Expand Up @@ -298,7 +298,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/JingMatrix/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
2 changes: 1 addition & 1 deletion app/src/main/java/org/lsposed/manager/util/UpdateUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
public class UpdateUtil {
public static void loadRemoteVersion() {
var request = new Request.Builder()
.url("https://api.github.com/repos/LSPosed/LSPosed/releases/latest")
.url("https://api.github.com/repos/JingMatrix/LSPosed/releases/latest")
.addHeader("Accept", "application/vnd.github.v3+json")
.build();
var callback = new Callback() {
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/JingMatrix/LSPosed#install</string>
<string name="latest_url" translatable="false">https://github.com/JingMatrix/LSPosed/releases/latest</string>
<string name="settings_group_repo" translatable="false">@string/module_repo</string>
</resources>
2 changes: 1 addition & 1 deletion magisk-loader/magisk_module/util_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ require_new_android() {
ui_print "*********************************************************"
ui_print "! Unsupported Android version ${1} (below Oreo MR1)"
ui_print "! Learn more from our GitHub"
[ "$BOOTMODE" == "true" ] && am start -a android.intent.action.VIEW -d https://github.com/LSPosed/LSPosed/#supported-versions
[ "$BOOTMODE" == "true" ] && am start -a android.intent.action.VIEW -d https://github.com/JingMatrix/LSPosed/#supported-versions
abort "*********************************************************"
}

Expand Down

0 comments on commit bdba029

Please sign in to comment.