Skip to content

Commit e5798b6

Browse files
@nonellyc
authored andcommitted
initial commit
0 parents  commit e5798b6

30 files changed

+5967
-0
lines changed

.github/workflows/del.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Delete old workflow runs
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
del_runs:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Delete workflow runs
10+
uses: Mattraks/delete-workflow-runs@v2
11+
with:
12+
token: ${{ github.token }}
13+
repository: ${{ github.repository }}
14+
retain_days: 0
15+
keep_minimum_runs: 0

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: run build.sh
16+
run: sh build.sh
17+
18+
- name: upload release
19+
uses: softprops/action-gh-release@v1
20+
with:
21+
tag_name: ${{ github.ref_name }}
22+
files: box_for_magisk-v*.zip
23+
generate_release_notes: true

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#### ⟳ Changelog v1.0
2+
- initial commit
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/sbin/sh
2+
3+
#################
4+
# Initialization
5+
#################
6+
7+
umask 022
8+
9+
# echo before loading util_functions
10+
ui_print() { echo "$1"; }
11+
12+
require_new_magisk() {
13+
ui_print "*******************************"
14+
ui_print " Please install Magisk v20.4+! "
15+
ui_print "*******************************"
16+
exit 1
17+
}
18+
19+
#########################
20+
# Load util_functions.sh
21+
#########################
22+
23+
OUTFD=$2
24+
ZIPFILE=$3
25+
26+
mount /data 2>/dev/null
27+
28+
[ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk
29+
. /data/adb/magisk/util_functions.sh
30+
[ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk
31+
32+
install_module
33+
exit 0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#MAGISK

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Box for Magisk
2+
3+
[REDME ID](index_id.md) || [REDME EN](index_en.md)
4+
5+
[![ANDROID](https://img.shields.io/badge/Android-3DDC84?style=for-the-badge&logo=android&logoColor=white)]()
6+
7+
A fork of [CHIZI-0618/box4magisk](https://github.com/CHIZI-0618/box4magisk)
8+
9+
Proyek ini adalah modul [Magisk](https://github.com/topjohnwu/Magisk) yang include proxy `clash`, `sing-box`, `v2ray`, dan `xray`.

binary/arm.tar.bz2

1.55 MB
Binary file not shown.

binary/arm64.tar.bz2

1.51 MB
Binary file not shown.

binary/x64.tar.bz2

1.75 MB
Binary file not shown.

binary/x86.tar.bz2

1.5 MB
Binary file not shown.

0 commit comments

Comments
 (0)