Skip to content

Commit 253ccb9

Browse files
final tweaks v2
Signed-off-by: androidacy-user <opensource@androidacy.com>
1 parent 2e1ff92 commit 253ccb9

File tree

11 files changed

+15
-16
lines changed

11 files changed

+15
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ translations: [https://translate.nift4.org/engage/foxmmm/](https://translate.nif
134134

135135
### GitHub method (advanced users)
136136

137-
See [`app/src/main/res/values/strings.xml`](https://github.com/Fox2Code/FoxMagiskModuleManager/blob/master/app/src/main/res/values/strings.xml)
137+
See [`app/src/main/res/values/strings.xml`](https://github.com/Androidacy/MagiskModuleManager/blob/master/app/src/main/res/values/strings.xml)
138138

139139
If your language is right to left don't forget to set `lang_support_rtl` to `true`.
140140

app/build.gradle.kts

+2-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ android {
4444
useSupportLibrary = true
4545
}
4646
multiDexEnabled = true
47-
resourceConfigurations.addAll(listOf("ar", "bs", "de", "es-rMX", "fr", "hu", "id", "ja", "nl", "pl", "pt", "pt-rBR", "ro", "ru", "tr", "uk", "zh", "zh-rTW", "en"))
47+
resourceConfigurations.addAll(listOf("ar", "bs", "cs", "de", "es-rMX", "fr", "hu", "id", "ja", "nl", "pl", "pt", "pt-rBR", "ro", "ru", "tr", "uk", "zh", "zh-rTW", "en"))
4848
}
4949

5050
splits {
@@ -55,8 +55,7 @@ android {
5555
// Enables building multiple APKs per ABI.
5656
isEnable = true
5757

58-
// By default all ABIs are included, so use reset() and include to specify that you only
59-
// want APKs for x86 and x86_64.
58+
// By default all ABIs are included, so use reset()
6059

6160
// Resets the list of ABIs for Gradle to create APKs for to none.
6261
reset()

app/src/main/java/com/fox2code/mmm/AppUpdateManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class AppUpdateManager {
2828
public static final int FLAG_COMPAT_FORCE_HIDE = 0x0080;
2929
public static final int FLAG_COMPAT_MMT_REBORN = 0x0100;
3030
public static final int FLAG_COMPAT_ZIP_WRAPPER = 0x0200;
31-
public static final String RELEASES_API_URL = "https://api.github.com/repos/Fox2Code/FoxMagiskModuleManager/releases/latest";
31+
public static final String RELEASES_API_URL = "https://api.github.com/repos/Androidacy/MagiskModuleManager/releases/latest";
3232
private static final AppUpdateManager INSTANCE = new AppUpdateManager();
3333
private final HashMap<String, Integer> compatDataId = new HashMap<>();
3434
private final Object updateLock = new Object();

app/src/main/java/com/fox2code/mmm/MainApplication.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public synchronized Tracker getTracker() {
382382

383383
@Override
384384
public void onCreate() {
385-
supportedLocales.addAll(Arrays.asList("ar", "bs", "de", "es-rMX", "fr", "hu", "id", "ja", "nl", "pl", "pt", "pt-rBR", "ro", "ru", "tr", "uk", "zh", "zh-rTW", "en"));
385+
supportedLocales.addAll(Arrays.asList("ar", "bs", "cs", "de", "es-rMX", "fr", "hu", "id", "ja", "nl", "pl", "pt", "pt-rBR", "ro", "ru", "tr", "uk", "zh", "zh-rTW", "en"));
386386
if (INSTANCE == null) INSTANCE = this;
387387
relPackageName = this.getPackageName();
388388
super.onCreate();

app/src/main/java/com/fox2code/mmm/NotificationType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public boolean shouldRemove() {
9999
},
100100
UPDATE_AVAILABLE(R.string.app_update_available, R.drawable.ic_baseline_system_update_24,
101101
androidx.appcompat.R.attr.colorPrimary, com.google.android.material.R.attr.colorOnPrimary, v -> IntentHelper.openUrl(v.getContext(),
102-
"https://github.com/Fox2Code/FoxMagiskModuleManager/releases"), false) {
102+
"https://github.com/Androidacy/MagiskModuleManager/releases"), false) {
103103
@Override
104104
public boolean shouldRemove() {
105105
return !AppUpdateManager.getAppUpdateManager().peekShouldUpdate();

app/src/main/java/com/fox2code/mmm/settings/SettingsActivity.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
627627
});
628628
linkClickable.setOnPreferenceLongClickListener(p -> {
629629
String toastText = requireContext().getString(R.string.link_copied);
630-
clipboard.setPrimaryClip(ClipData.newPlainText(toastText, "https://github.com/Fox2Code/FoxMagiskModuleManager/releases/latest"));
630+
clipboard.setPrimaryClip(ClipData.newPlainText(toastText, "https://github.com/Androidacy/MagiskModuleManager/releases/latest"));
631631
Toast.makeText(requireContext(), toastText, Toast.LENGTH_SHORT).show();
632632
return true;
633633
});
@@ -646,12 +646,12 @@ public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
646646
linkClickable.setOnPreferenceClickListener(p -> {
647647
devModeStep = 0;
648648
devModeStepFirstBootIgnore = true;
649-
IntentHelper.openUrl(p.getContext(), "https://github.com/Fox2Code/FoxMagiskModuleManager/issues");
649+
IntentHelper.openUrl(p.getContext(), "https://github.com/Androidacy/MagiskModuleManager/issues");
650650
return true;
651651
});
652652
linkClickable.setOnPreferenceLongClickListener(p -> {
653653
String toastText = requireContext().getString(R.string.link_copied);
654-
clipboard.setPrimaryClip(ClipData.newPlainText(toastText, "https://github.com/Fox2Code/FoxMagiskModuleManager/issues"));
654+
clipboard.setPrimaryClip(ClipData.newPlainText(toastText, "https://github.com/Androidacy/MagiskModuleManager/issues"));
655655
Toast.makeText(requireContext(), toastText, Toast.LENGTH_SHORT).show();
656656
return true;
657657
});
@@ -1314,7 +1314,7 @@ public void run() {
13141314
});
13151315
builder.setNegativeButton("Cancel", (dialog, which) -> dialog.cancel());
13161316
builder.setNeutralButton("Docs", (dialog, which) -> {
1317-
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/Fox2Code/FoxMagiskModuleManager/blob/master/docs/DEVELOPERS.md#custom-repo-format"));
1317+
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/Androidacy/MagiskModuleManager/blob/master/docs/DEVELOPERS.md#custom-repo-format"));
13181318
startActivity(intent);
13191319
});
13201320
AlertDialog alertDialog = builder.show();

app/src/main/res/values-uk/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
<string name="changelog_none">Змін ще немає!</string>
320320
<string name="update_cancel_button">Скасувати оновлення</string>
321321
<string name="invalid_repo_url">URL-адреса, яку ви ввели для репозиторію, недійсна</string>
322-
<string name="add_repo_message">Репозиторії повинні обслуговуватися за допомогою HTTPS і відповідати специфікаціям, викладеним у <a href="https://github.com/Fox2Code/FoxMagiskModuleManager/blob/master/docs/DEVELOPERS.md#custom-repo-format">документації</a>.</string>
322+
<string name="add_repo_message">Репозиторії повинні обслуговуватися за допомогою HTTPS і відповідати специфікаціям, викладеним у <a href="https://github.com/Androidacy/MagiskModuleManager/blob/master/docs/DEVELOPERS.md#custom-repo-format">документації</a>.</string>
323323
<string name="notification_update_summary">Наступні модулі можуть бути оновлені:</string>
324324
<string name="notification_update_module_template">%1$s до версії %2$s</string>
325325
<string name="notification_channel_background_update">Перевірка оновлень…</string>

app/src/main/res/xml/root_preferences.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PreferenceCategory app:title="@string/warning_pls_restart" app:icon="@drawable/ic_baseline_info_24"/>
55

6-
<!-- Custom repos has been announced, check https://github.com/Fox2Code/FoxMagiskModuleManager/issues/131 -->
6+
<!-- Custom repos has been announced, check https://github.com/Androidacy/MagiskModuleManager/issues/131 -->
77
<PreferenceCategory app:title="@string/pref_category_repos">
88
<Preference
99
app:icon="@drawable/ic_baseline_extension_24"

docs/DEVELOPERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ mmm_exec setLastLine "The installer support mmm_exec"
170170
# Wait to simulate the module doing something
171171
sleep 5
172172
mmm_exec hideLoading
173-
mmm_exec setSupportLink https://github.com/Fox2Code/FoxMagiskModuleManager
173+
mmm_exec setSupportLink https://github.com/Androidacy/MagiskModuleManager
174174
```
175175

176176
[You may look at the examples modules and their codes.](examples)

docs/examples/example_module/module.prop

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ author=Fox2Code
66
description=Fox's Magisk Module Manager example module
77
minApi=21
88
minMagisk=19000
9-
support=https://github.com/Fox2Code/FoxMagiskModuleManager
9+
support=https://github.com/Androidacy/MagiskModuleManager
1010
donate=https://paypal.me/fox2code
1111
config=com.fox2code.mmm

docs/examples/rainbow_module/module.prop

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ author=Fox2Code
66
description=Fox's Magisk Module Manager rainbow module
77
minApi=21
88
minMagisk=19000
9-
support=https://github.com/Fox2Code/FoxMagiskModuleManager
9+
support=https://github.com/Androidacy/MagiskModuleManager
1010
donate=https://paypal.me/fox2code
1111
config=com.fox2code.mmm

0 commit comments

Comments
 (0)