change name and url

Co-Authored-By: Kaelyn Wisoky <206877283+lshwjgpt25@users.noreply.github.com>
This commit is contained in:
NkBe 2025-09-05 23:47:37 +08:00
parent fed6e4afcf
commit c0aecf9e33
No known key found for this signature in database
GPG Key ID: 75EF144ED8F4D7B8
9 changed files with 12 additions and 12 deletions

View File

@ -10,7 +10,7 @@ body:
To make it easier for us to help you please enter detailed information below.
感谢给 LSPatch 汇报问题!
感谢给 NPatch 汇报问题!
为了使我们更好地帮助你,请提供以下信息。
为了防止重复汇报,标题请务必使用英文。
- type: textarea
@ -42,7 +42,7 @@ body:
required: true
- type: input
attributes:
label: LSPatch version/LSPatch 版本
label: NPatch version/NPatch 版本
description: Don't use 'latest'. Specify actual version with 4 digits, otherwise your issue will be closed./不要填用“最新版”。给出四位版本号,不然 issue 会被关闭。
validations:
required: true
@ -62,7 +62,7 @@ body:
attributes:
label: Version requirement/版本要求
options:
- label: I am using latest debug CI version of LSPatch and enable verbose log/我正在使用最新 CI 调试版本且启用详细日志
- label: I am using latest debug CI version of NPatch and enable verbose log/我正在使用最新 CI 调试版本且启用详细日志
required: true
- type: textarea
attributes:

View File

@ -1,8 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question/提问
url: https://github.com/LSPosed/LSPatch/discussions/new?category=Q-A
url: https://github.com/7723mod/NPatch/discussions/new?category=Q-A
about: Please ask and answer questions here./如果有任何疑问请在这里提问
- name: Official Telegram Channel/官方 Telegram 频道
url: https://t.me/LSPosed
url: https://t.me/NPatch
about: Subscribe for notifications and releases/可以订阅通知和发行版

View File

@ -65,7 +65,7 @@ tasks.register<Delete>("clean") {
listOf("Debug", "Release").forEach { variant ->
tasks.register("build$variant") {
description = "Build LSPatch with $variant"
description = "Build NPatch with $variant"
dependsOn(projects.jar.dependencyProject.tasks["build$variant"])
dependsOn(projects.manager.dependencyProject.tasks["build$variant"])
}

View File

@ -241,7 +241,7 @@ private fun SupportCard() {
HtmlText(
stringResource(
R.string.home_view_source_code,
"<b><a href=\"https://github.com/7723mod/LSPatch\">GitHub</a></b>",
"<b><a href=\"https://github.com/7723mod/NPatch\">GitHub</a></b>",
"<b><a href=\"https://t.me/NPatch\">Telegram</a></b>"
)
)

View File

@ -24,7 +24,7 @@
<string name="home_system_abi">系統架构</string>
<string name="home_info_copied">已複製到剪贴板</string>
<string name="home_support">支持</string>
<string name="home_description">NPatch 是一款免费的复刻于 LSPatch 的,基于 LSPosed 核心的免 Root 的 Xposed 框架。</string>
<string name="home_description">NPatch 是一款免费的迭代于 LSPatch 的,基于 LSPosed 核心的免 Root 的 Xposed 框架。</string>
<string name="home_view_source_code">查看源代码 %1$s&lt;br/&gt;加入我们的 %2$s 频道</string>
<!-- Manage Screen -->
<string name="screen_manage">管理</string>

View File

@ -49,7 +49,7 @@ import hidden.HiddenApiBridge;
@SuppressWarnings("unused")
public class LSPApplication {
private static final String TAG = "LSPatch";
private static final String TAG = "NPatch";
private static final int FIRST_APP_ZYGOTE_ISOLATED_UID = 90000;
private static final int PER_USER_RANGE = 100000;

View File

@ -23,7 +23,7 @@ import java.util.zip.ZipFile;
public class LocalApplicationService extends ILSPApplicationService.Stub {
private static final String TAG = "LSPatch";
private static final String TAG = "NPatch";
private final List<Module> modules = new ArrayList<>();

View File

@ -31,7 +31,7 @@ import java.util.concurrent.TimeoutException;
public class RemoteApplicationService implements ILSPApplicationService {
private static final String TAG = "LSPatch";
private static final String TAG = "NPatch";
private static final String MODULE_SERVICE = Constants.MANAGER_PACKAGE_NAME + ".manager.ModuleService";
private volatile ILSPApplicationService service;

View File

@ -17,7 +17,7 @@ import java.util.zip.ZipFile;
public class ModuleLoader {
private static final String TAG = "LSPatch";
private static final String TAG = "NPatch";
private static void readDexes(ZipFile apkFile, List<SharedMemory> preLoadedDexes) {
int secondary = 2;