diff --git a/DEVELOPERS.md b/DEVELOPERS.md index 55543f3..e29a7f8 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -60,10 +60,10 @@ Note²: For `minMagisk`, `XX.Y` is parsed as `XXY00`, so you can just put the Ma - `support` support link to direct users when they need support for you modules - `donate` donate link to direct users to where they can financially support your project - `config` package name of the application that configure your module - (Note: The icon won't appear in the module list if the module and target app is not installed) + (Note: The icon won't appear in the module list if the module or target app is not installed) Note: Fox's Mmm use fallback -[here](app/src/main/java/com/fox2code/mmm/utils/PropUtils.java#L21) +[here](app/src/main/java/com/fox2code/mmm/utils/PropUtils.java#L36) for some modules Theses values are only used if not defined in the `module.prop` files So the original module maker can still override them @@ -87,8 +87,8 @@ Commands: - `clearTerminal`: Clear the terminal of any text, making it empty - `scrollUp`: Scroll up at the top of the terminal - `scrollDown`: Scroll down at the bottom of the terminal -- `showLoading `: Show an indeterminate progress bar - (Note: Status bar is indeterminate if 0 is provided) +- `showLoading `: Show a progress bar with `` as max value + (Note: Status bar is indeterminate if nothing or 0 is provided) - `setLoading `: Set loading progress if the bar is not indeterminate. - `hideLoading`: Hide the indeterminate progress bar if previously shown - `setSupportLink `: Set support link to show when the install finish diff --git a/README.md b/README.md index 36d9ba9..72e9303 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,8 @@ Go to the [developer documentation](DEVELOPERS.md) for more info. ## Screenshots Main activity: -[](screenshot.jpg) +[](screenshot-dark.jpg) +[](screenshot-light.jpg) ## For developers diff --git a/app/build.gradle b/app/build.gradle index 2c7e3a1..f58186c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId "com.fox2code.mmm" minSdk 21 targetSdk 32 - versionCode 34 - versionName "0.4.0-rc3" + versionCode 35 + versionName "0.4.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/screenshot-dark.jpg b/screenshot-dark.jpg new file mode 100644 index 0000000..496fe72 Binary files /dev/null and b/screenshot-dark.jpg differ diff --git a/screenshot-light.jpg b/screenshot-light.jpg new file mode 100644 index 0000000..f227e67 Binary files /dev/null and b/screenshot-light.jpg differ diff --git a/screenshot.jpg b/screenshot.jpg deleted file mode 100644 index fadd69b..0000000 Binary files a/screenshot.jpg and /dev/null differ