Skip to content

Commit c1f0c6c

Browse files
committed
some updates
1 parent f3d82e5 commit c1f0c6c

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

docs/guide/installer.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Optionally you can append `> /dev/null 2>&1` to the `am` commands to hide the ou
66

77
## Clear Terminal
88

9+
> [!NOTE]
10+
> Since **v5.30.40** the `clear` command is supported in the action and installer environment
11+
912
Clears the terminal. No arguments can be passed
1013

1114
```shell

docs/guide/mmrl-util/config-json.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ This JSON configuration file contains settings related to a Magisk repository. B
44

55
---
66

7-
### `name` (required)
7+
### `name` <Badge type="danger" text="required" />
88

99
The name of the repository.
1010

1111
```json
1212
"name": "Template Magisk Modules Repository"
1313
```
1414

15-
### `base_url` (required)
15+
### `base_url` <Badge type="danger" text="required" />
1616

1717
The base URL for fetching repository modules and tracks. The end slash is required!
1818

docs/guide/mmrl-util/track-json.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,31 @@ The following fields are **required** for the track to be valid and functional:
1818

1919
---
2020

21-
### `id` (required)
21+
### `id` <Badge type="danger" text="required" />
2222

2323
A unique identifier for the track. This helps differentiate between various tracks.
2424

2525
```yaml
2626
id: "unique-track-id"
2727
```
2828
29-
### `enable` (required)
29+
### `enable` <Badge type="danger" text="required" />
3030

3131
A flag to enable or disable the track. Set to `true` to enable the track.
3232

3333
```yaml
3434
enable: true
3535
```
3636

37-
### `verified`
37+
### `source` <Badge type="danger" text="required" />
3838

39-
Indicates whether the track has been verified.
39+
The URL or path to the source code repository for the track.
4040

4141
```yaml
42-
verified: true
42+
source: "https://github.com/owner/track-source"
4343
```
4444

45-
### `update_to` (required)
45+
### `update_to` <Badge type="danger" text="required" />
4646

4747
The version to which the track should be updated.
4848

@@ -121,12 +121,12 @@ A URL to the official homepage for the track.
121121
homepage: "https://example.com"
122122
```
123123

124-
### `source`
124+
### `verified`
125125

126-
The URL or path to the source code repository for the track.
126+
Indicates whether the track has been verified.
127127

128128
```yaml
129-
source: "https://github.com/owner/track-source"
129+
verified: true
130130
```
131131

132132
### `support`

0 commit comments

Comments
 (0)