🎨 Sync 2024-07-29 17:08:00

This commit is contained in:
github-actions[bot] 2024-07-29 17:08:00 +08:00
parent e255685ca2
commit 459fb15666
8 changed files with 112 additions and 12 deletions

View File

@ -17,4 +17,10 @@
</div>
<hr/>
## Install via Terminal
```
curl -s https://raw.githubusercontent.com/animegasan/luci-app-alpha-config/master/install.sh | sh
```
# Preview
![image](https://github.com/user-attachments/assets/25f59fae-00e1-4c98-9be4-de6ce927ac15)

View File

@ -0,0 +1,24 @@
#!/bin/sh
apk_name="luci-app-alpha-config"
version="2.1"
echo "Updating packages"
if ! opkg update; then
echo "Failed to update OPKG"
exit 1
fi
echo "Downloading $apk_name"
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
echo "Failed to download $apk_name"
exit 1
fi
echo "Installing $apk_name"
if ! opkg install "${apk_name}_${version}_all.ipk"; then
echo "Failed to install $apk_name"
exit 1
fi
echo "Process completed. $apk_name has been installed."

View File

@ -19,6 +19,12 @@
This project is an application inspired from the DNS leak test by <a target="_blank" href="https://github.com/macvk/dnsleaktest">macvk</a>, providing a user-friendly graphical interface to easily perform DNS security tests.
## Install via Terminal
```
curl -s https://raw.githubusercontent.com/animegasan/luci-app-dnsleaktest/master/install.sh | sh
```
# Preview
![image](https://github.com/animegasan/luci-app-dnsleaktest/assets/14136053/41e1dfab-e650-442a-82c6-3cb90a98ab38)
![image](https://github.com/animegasan/luci-app-dnsleaktest/assets/14136053/eaf9b37e-42b9-48df-9fcc-102fde405951)

View File

@ -0,0 +1,24 @@
#!/bin/sh
apk_name="luci-app-dnsleaktest"
version="1.1"
echo "Updating packages"
if ! opkg update; then
echo "Failed to update OPKG"
exit 1
fi
echo "Downloading $apk_name"
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
echo "Failed to download $apk_name"
exit 1
fi
echo "Installing $apk_name"
if ! opkg install "${apk_name}_${version}_all.ipk"; then
echo "Failed to install $apk_name"
exit 1
fi
echo "Process completed. $apk_name has been installed."

View File

@ -21,7 +21,7 @@ DroidNet is an application designed specifically for managing and optimizing net
## Install via Terminal
```
curl -s https://raw.githubusercontent.com/animegasan/luci-app-droidnet/master/install.sh | bash
curl -s https://raw.githubusercontent.com/animegasan/luci-app-droidnet/master/install.sh | sh
```
## Supported Devices

View File

@ -1,14 +1,24 @@
#!/bin/sh
file_name="luci-app-droidnet_1.1_all.ipk"
version="v1.1"
apk_name="luci-app-droidnet"
version="1.1"
echo "Updating OPKG"
opkg update
echo "Installing curl"
opkg install curl
echo "Downloading $file_name"
curl -LO "https://github.com/animegasan/luci-app-droidnet/releases/download/$version/$file_name"
echo "Installing $file_name"
opkg install $file_name
echo "Process completed. $file_name has been installed."
echo "Updating packages"
if ! opkg update; then
echo "Failed to update OPKG"
exit 1
fi
echo "Downloading $apk_name"
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
echo "Failed to download $apk_name"
exit 1
fi
echo "Installing $apk_name"
if ! opkg install "${apk_name}_${version}_all.ipk"; then
echo "Failed to install $apk_name"
exit 1
fi
echo "Process completed. $apk_name has been installed."

View File

@ -17,5 +17,11 @@
</div>
<hr/>
## Install via Terminal
```
curl -s https://raw.githubusercontent.com/animegasan/luci-app-ipinfo/master/install.sh | sh
```
# Preview
![image](https://github.com/animegasan/luci-app-ipinfo/assets/14136053/5d5879a7-716f-4e87-b2c2-ca8615cfba9d)
![image](https://github.com/animegasan/luci-app-ipinfo/assets/14136053/f1970b49-2460-4602-8cdf-299bcea282c9)

View File

@ -0,0 +1,24 @@
#!/bin/sh
apk_name="luci-app-ipinfo"
version="2.2"
echo "Updating packages"
if ! opkg update; then
echo "Failed to update OPKG"
exit 1
fi
echo "Downloading $apk_name"
if ! curl -LO "https://github.com/animegasan/$apk_name/releases/download/$version/${apk_name}_${version}_all.ipk"; then
echo "Failed to download $apk_name"
exit 1
fi
echo "Installing $apk_name"
if ! opkg install "${apk_name}_${version}_all.ipk"; then
echo "Failed to install $apk_name"
exit 1
fi
echo "Process completed. $apk_name has been installed."