Skip to content

Commit

Permalink
v0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Jun 27, 2024
1 parent 7c70276 commit ececf87
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 18 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# 0.3.6
# 0.3.7

- Fixed Magisk install issue
- Added MMAR V2 to the default repos
- CLI handles now invalid repos
- Fixed ModConf error
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mmrl"
description = "MMRL comes now as command line interface, with multi module install support!"
version = "0.3.6"
version = "0.3.7"
edition = "2021"
author = "Der_Googler"

Expand Down
9 changes: 8 additions & 1 deletion build-module.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ cat <<EOF >update.json
"version": "$VER",
"versionCode": "$VER_CODE",
"zipUrl": "https://github.com/DerGoogler/MMRL-CLI/releases/download/v$VER/mmrl-$VER-module-aarch64.zip",
"changelog": "https://raw.githubusercontent.com/DerGoogler/MMRL-CLI/master/CHANGELOG.md",
"changelog": "https://raw.githubusercontent.com/DerGoogler/MMRL-CLI/master/CHANGELOG.md"
}
EOF

cat <<EOF >system/usr/share/mmrl/config/mmrl/info.json
{
"version": "$VER",
"versionCode": "$VER_CODE",
"author": "$AUT",
"rustVersion": "$RUST_VER",
"buildDate": "$BUILD_DATE"
Expand Down
6 changes: 3 additions & 3 deletions module/module.prop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id=mmrl
name=MMRL CLI
version=0.3.6
versionCode=036
version=0.3.7
versionCode=037
author=Der_Googler
description=MMRL Command Line Interface is a free tool to install Magisk/KernelSU modules. Build on 2024-06-26 with Rust 1.78.0.
description=MMRL Command Line Interface is a free tool to install Magisk/KernelSU modules. Build on 2024-06-27 with Rust 1.78.0.
updateJson=https://raw.githubusercontent.com/DerGoogler/MMRL-CLI/master/module/update.json
2 changes: 1 addition & 1 deletion module/system/usr/share/mmrl/config/mmrl/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
Button,
} from "@mui/material"

const info = require(path.resolve(__modpath, "update.json"))
const info = require(path.resolve(__dirname, "info.json"))

const App = () => {
const [repos, setRepos] = useNativeFileStorage("/data/adb/mmrl/repos.json", [
Expand Down
7 changes: 7 additions & 0 deletions module/system/usr/share/mmrl/config/mmrl/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"version": "0.3.7",
"versionCode": "037",
"author": "Der_Googler",
"rustVersion": "1.78.0",
"buildDate": "2024-06-27"
}
11 changes: 4 additions & 7 deletions module/update.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"version": "0.3.6",
"versionCode": "036",
"zipUrl": "https://github.com/DerGoogler/MMRL-CLI/releases/download/v0.3.6/mmrl-0.3.6-module-aarch64.zip",
"changelog": "https://raw.githubusercontent.com/DerGoogler/MMRL-CLI/master/CHANGELOG.md",
"author": "Der_Googler",
"rustVersion": "1.78.0",
"buildDate": "2024-06-26"
"version": "0.3.7",
"versionCode": "037",
"zipUrl": "https://github.com/DerGoogler/MMRL-CLI/releases/download/v0.3.7/mmrl-0.3.7-module-aarch64.zip",
"changelog": "https://raw.githubusercontent.com/DerGoogler/MMRL-CLI/master/CHANGELOG.md"
}

0 comments on commit ececf87

Please sign in to comment.