Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# YazFi - enhanced AsusWRT-Merlin Guest WiFi Networks

## v4.4.10
### Updated on 2026-Mar-21
## v4.4.11
### Updated on 2026-Apr-11

## About
Feature expansion of guest WiFi networks on AsusWRT-Merlin, including, but not limited to:
Expand Down
13 changes: 8 additions & 5 deletions YazFi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
## Guest Network DHCP script and for ##
## AsusWRT-Merlin firmware ##
###################################################
# Last Modified: 2026-Mar-21
# Last Modified: 2026-Apr-11
#--------------------------------------------------

###### Shellcheck directives ######
Expand All @@ -41,10 +41,10 @@
### Start of script variables ###
readonly SCRIPT_NAME="YazFi"
readonly SCRIPT_CONF="/jffs/addons/$SCRIPT_NAME.d/config"
readonly YAZFI_VERSION="v4.4.10"
readonly SCRIPT_VERSION="v4.4.10"
readonly SCRIPT_VERSTAG="26032100"
SCRIPT_BRANCH="master"
readonly YAZFI_VERSION="v4.4.11"
readonly SCRIPT_VERSION="v4.4.11"
readonly SCRIPT_VERSTAG="26041104"
SCRIPT_BRANCH="develop"
SCRIPT_REPO="https://raw.githubusercontent.com/AMTM-OSR/$SCRIPT_NAME/$SCRIPT_BRANCH"
readonly SCRIPT_DIR="/jffs/addons/$SCRIPT_NAME.d"
readonly USER_SCRIPT_DIR="$SCRIPT_DIR/userscripts.d"
Expand Down Expand Up @@ -72,6 +72,9 @@ readonly MGNTct="\e[1;35m"

### Start of router environment variables ###

# Workaround for Entware ELF binaries compiled with RUNPATH #
unset LD_LIBRARY_PATH

# Give higher priority to built-in binaries #
export PATH="/bin:/usr/bin:/sbin:/usr/sbin:$PATH"

Expand Down
Loading