update 2025-02-08 16:24:07

This commit is contained in:
kenzok8 2025-02-08 16:24:07 +08:00
parent 8119526c97
commit e32aa524ea
4 changed files with 23 additions and 11 deletions

View File

@ -2,7 +2,7 @@
include $(TOPDIR)/rules.mk
PKG_VERSION:=1.0.6-20250207
PKG_VERSION:=1.0.7-20250207
PKG_RELEASE:=
LUCI_TITLE:=LuCI support for OpenWebUI

View File

@ -25,7 +25,7 @@ if container_running then
<label class="cbi-value-title">&nbsp;</label>
<div class="cbi-value-field">
<input type="button" class="btn cbi-button cbi-button-apply" name="start" value="<%:Open OpenWebUI%>" onclick="window.open('http://'+location.hostname+':<%=port%>/entrance', '_blank')">
<input type="button" class="btn cbi-button cbi-button-apply" name="start" value="<%:Open OpenWebUI%>" onclick="window.open('http://'+location.hostname+':<%=port%>/', '_blank')">
</div>
</div>
<% end %>

View File

@ -28,7 +28,8 @@ do_install() {
docker rm -f openwebui
local cmd="docker run --restart=unless-stopped -d -h OpenWebUIServer \
-p $port:3000 \
-e OPENAI_API_KEY=your_secret_key \
-p $port:8080 \
-v \"$config:/app/backend/data\" "
cmd="$cmd\
@ -44,7 +45,9 @@ do_install() {
echo "$cmd"
eval "$cmd"
sleep 3
echo "Initial..."
sleep 10
echo "Done
}
usage() {

View File

@ -4,12 +4,13 @@ Focus on making the most of Xray (HTTP/HTTPS/Socks/TProxy inbounds, multiple pro
## Warnings
* For security concerns, global SOCKS / HTTP inbound (listen on 0.0.0.0, port 1080 / 1081 by default) is deprecated and will be removed in next major version (4.0.0).
* These settings are moved out of main luci app. Select "Preview or Deprecated" in "Extra Settings" tab and reboot to let those settings show again in preview app.
* For OpenWrt 24.10 and SNAPSHOT users, dnsmasq integration options need to be changed. See the last comment in [#425](https://github.com/yichya/luci-app-xray/issues/425#issuecomment-2494295834) for details.
* For security concerns, global SOCKS / HTTP inbound (listen on 0.0.0.0, port 1080 / 1081 by default) is deprecated and will be removed in next major version (4.0.0).
* These settings are moved to preview app
* Use Extra Inbound to manually add ports (avoid using common ports like 1080, also set listen addresses carefully) and adjust related workloads to use that.
* Since version 3.2.0 sniffing and global custom settings are deprecated.
* These features are moved out of main luci app (into preview app).
* Global custom settings will be removed in version 4.0.0. Use "Custom Configuration Hook" for global custom settings.
* Since version 3.2.0 sniffing and global custom settings are deprecated.
* These settings are moved to preview app. See below for details to enable preview app.
* Global custom settings will be removed in version 4.0.0. Use "Custom Configuration Hook" for global custom settings.
* Sniffing might get completely reimplemented later. Use FakeDNS instead of sniffing to avoid incompatibilities.
* This project **DOES NOT SUPPORT** the following versions of OpenWrt because of the requirements of firewall4 and cilent-side rendering LuCI:
* LEDE / OpenWrt prior to 22.03
@ -21,13 +22,13 @@ Focus on making the most of Xray (HTTP/HTTPS/Socks/TProxy inbounds, multiple pro
* If you see `WARNING: at least one of asset files (geoip.dat, geosite.dat) is not found under /usr/share/xray. Xray may not work properly` and don't know what to do:
* try `opkg update && opkg install v2ray-geoip v2ray-geosite`
* if that doesn't work, see [#52](https://github.com/yichya/luci-app-xray/issues/52#issuecomment-856059905)
* This project may change its code structure, configuration files format, user interface or dependencies quite frequently since it is still in its very early stage.
* This project may change its code structure, configuration files format, user interface or dependencies quite frequently since it is still in its very early stage.
## Installation (Manually building OpenWrt)
Choose one below:
* Add `src-git-full luci_app_xray https://github.com/yichya/luci-app-xray` to `feeds.conf.default` and run `./scripts/feeds update -a; ./scripts/feeds install -a`
* Add `src-git-full luci_app_xray https://github.com/yichya/luci-app-xray` to `feeds.conf.default` and run `./scripts/feeds update -a; ./scripts/feeds install -a`
* Clone this repository under `package`
Then find `luci-app-xray` under `Extra Packages`.
@ -40,6 +41,14 @@ Fork this repository and:
* Wait until actions finish
* Use `opkg -i *` to install both ipks from Releases.
## Enable preview app
Some features are deprecated / unstable so they are placed in preview app. To enable preview app:
* Select `Preview or Deprecated` in `Extra Settings` tab
* Reboot your router
* There will be a new menu option `Xray (preview)` in `Services`
## Changelog since 3.5.0
* 2024-11-26 chore: bump status version