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

Commit bdcf5a3

Browse files
committed
0.2.6 Release
1 parent 0ecc413 commit bdcf5a3

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed

README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The app currently use these two repo as it's module sources, with it's benefits
3434
- Officially supported by Fox's mmm
3535

3636
[https://github.com/Magisk-Modules-Repo](https://github.com/Magisk-Modules-Repo)
37-
- No longer accept new modules
37+
- No longer accept new modules or update to existing modules
3838
- May be shut down at any moment
3939
- Official app dropped support for it
4040
- Officially supported by Fox's mmm
@@ -46,6 +46,11 @@ and also stopped accepting new modules, it is recommended to submit your modules
4646
If a module is in both repo, the manager will just pick the most up to date version of the module,
4747
allowing developers to switch repo at their own pace if they want to.
4848

49+
## Screenshots
50+
51+
Main activity:
52+
[<img src="screenshot.jpg" width="250"/>](screenshot.jpg)
53+
4954
## For developers
5055

5156
The manager can read new meta keys to allow modules to customize their own entry
@@ -68,7 +73,13 @@ and set `lang_support_rtl` to `true`.
6873

6974
Translators are not expected to have any previous coding experience.
7075

71-
## Screenshots
76+
## I want to add my own repo
7277

73-
Main activity:
74-
[<img src="screenshot.jpg" width="250"/>](screenshot.jpg)
78+
To add you own repo to Fox's mmm it need to follow theses conditions:
79+
- The module repo or one of it's owners must be known.
80+
- Modules in the repo must be monitored, and malicious modules must be removed.
81+
- Module repo must have a valid, automatically or frequently updated `modules.json`
82+
([Example](https://github.com/Magisk-Modules-Alt-Repo/json/blob/main/modules.json))
83+
84+
If all of these conditions are met you can open an issue for review.
85+
(And don't forget to include a link to the `modules.json`)

app/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ plugins {
44
}
55

66
android {
7-
compileSdk 31
7+
compileSdk 32
88

99
defaultConfig {
1010
applicationId "com.fox2code.mmm"
1111
minSdk 21
12-
targetSdk 31
13-
versionCode 16
14-
versionName "0.2.5"
12+
targetSdk 32
13+
versionCode 17
14+
versionName "0.2.6"
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -49,20 +49,20 @@ configurations {
4949

5050
dependencies {
5151
// UI
52-
implementation 'androidx.appcompat:appcompat:1.4.0'
52+
implementation 'androidx.appcompat:appcompat:1.4.1'
5353
implementation 'androidx.emoji2:emoji2:1.0.1'
5454
implementation 'androidx.emoji2:emoji2-views-helper:1.0.1'
5555
implementation 'androidx.preference:preference:1.1.1'
56-
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
56+
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
5757
implementation 'androidx.recyclerview:recyclerview:1.2.1'
5858
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
59-
implementation 'com.google.android.material:material:1.4.0'
59+
implementation 'com.google.android.material:material:1.5.0'
6060
implementation "com.mikepenz:aboutlibraries:${latestAboutLibsRelease}"
6161

6262
// Utils
6363
implementation 'com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.3'
6464
implementation 'com.squareup.okhttp3:okhttp-brotli:4.9.3'
65-
implementation 'com.github.topjohnwu.libsu:io:3.1.2'
65+
implementation 'com.github.topjohnwu.libsu:io:3.2.1'
6666

6767
// Markdown
6868
implementation "io.noties.markwon:core:4.6.2"

0 commit comments

Comments
 (0)