Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 2757724

Browse files
committed
Fix ANSI being disabled by default instead of enabled by default.
1 parent de92a77 commit 2757724

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,8 @@ Support:
5959

6060
[![Telegram Group](https://img.shields.io/endpoint?color=neon&style=flat&url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Fandroidacy_discussions)](https://telegram.dog/androidacy_discussions)
6161

62-
#### [https://github.com/Magisk-Modules-Repo](https://github.com/Magisk-Modules-Repo)
63-
- No longer accept new modules or receive update to existing modules
64-
- May be shut down at any moment
65-
- Official app dropped support for it
66-
- No longer supported by Fox's mmm
67-
68-
As the main repo may shutting down due to the main app no longer supporting it, stopped
69-
accepting new modules, and also no longer receive updates since the 21 December 2021.
70-
7162
If a module is in multiple repos, the manager will just pick the most up to date version
72-
of the module, allowing developers to switch repo at their own pace if they want to.
63+
of the module, if a module is in multiple repos it will just use first registered repo.
7364

7465
Note: If you or a friend uploaded a module and it doesn't appear in your module
7566
list you can disable the low quality filter in the app settings.

app/src/main/java/com/fox2code/mmm/installer/InstallerActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,8 @@ private void doInstall(File file, boolean noExtensions, boolean rootless) {
403403
installCommand).to(installerController, installerMonitor);
404404
} else {
405405
if ((compatFlags & AppUpdateManager.FLAG_COMPAT_NO_ANSI) != 0)
406-
this.installerTerminal.enableAnsi();
407-
else this.installerTerminal.disableAnsi();
406+
this.installerTerminal.disableAnsi();
407+
else this.installerTerminal.enableAnsi();
408408
installJob = Shell.cmd(arch32, "export MMM_EXT_SUPPORT=1",
409409
"export MMM_USER_LANGUAGE=" + (MainApplication.isForceEnglish() ? "en-US" :
410410
Resources.getSystem().getConfiguration().locale.toLanguageTag()),

examples/rainbow_module.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)