garypang13
|
353742fb0b
|
fix
|
2021-02-23 11:00:11 +08:00 |
|
Chuck
|
766d03f6f3
|
autocore: optimize the performance of obtaining CPU usage
Preformance Test (on NanoPi R2s, repeat 1000 times):
old command
cpu_usage=$(expr 100 - $(cat /tmp/top_tmp | grep 'CPU:' | awk -F '%' '{print$4}' | awk -F ' ' '{print$2}'))
```
real 0m 14.25s
user 0m 7.96s
sys 0m 20.33s
```
new command
cpu_usage=$(cat /tmp/top_tmp | awk '/^CPU/ { printf("%d%%", 100 - $8) }')
```
real 0m 6.91s
user 0m 4.29s
sys 0m 6.06s
```
Signed-off-by: Chuck <fanck0605@qq.com>
[adjusted for our own tree]
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-20 00:23:48 +08:00 |
|
Chuck
|
5f075d8aca
|
autocore: optimize the performance of obtaining CPU temperature
Preformance Test (on NanoPi R2s, repeat 1000 times):
old command:
temp="$(awk "BEGIN{printf (\"%.1f\n\",$(cat /sys/class/thermal/thermal_zone0/temp)/1000) }")°C"
```
real 0m 9.20s
user 0m 3.29s
sys 0m 6.24s
```
new command:
temp="$(awk '{ printf("%.1f °C", $0 / 1000) }' /sys/class/thermal/thermal_zone0/temp)"
```
real 0m 5.57s
user 0m 1.78s
sys 0m 3.97s
```
Signed-off-by: Chuck <fanck0605@qq.com>
[adjusted for our own tree]
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-20 00:07:07 +08:00 |
|
fliaping
|
6a2066c9e5
|
ddns-scripts_dnspod: fix updating records for dual-stack domain
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-19 23:44:15 +08:00 |
|
CN_SZTL
|
b6057318a2
|
luci-app-cpufreq: add ACL dependency annotations
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-19 23:02:45 +08:00 |
|
CN_SZTL
|
0493ece8ac
|
luci-app-wrtbwmon: rollback to old version
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-19 17:21:50 +08:00 |
|
CN_SZTL
|
241c4f3d7e
|
luci-app-wrtbwmon: sync with upstream source
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 20:11:12 +08:00 |
|
Mattraks
|
c9b8a0c7c9
|
luci-app-ssr-plus: bug fixes
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 19:31:56 +08:00 |
|
CN_SZTL
|
b230eda50a
|
autocore-arm: fix LuCI version display
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 19:15:45 +08:00 |
|
CN_SZTL
|
b978cd2a4f
|
autocore: fix LuCI version display
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 19:14:06 +08:00 |
|
CN_SZTL
|
9d50bc5ed0
|
image: rename distribution to ImmortalWrt
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 17:54:09 +08:00 |
|
CN_SZTL
|
323b356e38
|
autocore-x86: fix LuCI files overriding
Reported-by: AmadeusGhost <amadeus@project-openwrt.eu.org>
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-17 23:48:42 +08:00 |
|
CN_SZTL
|
7766efd312
|
r8125: bump to 9.005.01
Enabled RSS support for performance.
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-17 22:16:15 +08:00 |
|
Mattraks
|
67894498ed
|
luci-app-ssr-plus: fix the client v2ray/xray type display
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
|
2021-02-16 14:31:25 +08:00 |
|
李欣
|
d22e4fa15c
|
luci-app-ssr-plus: fix misinterpretation of trojan subscription
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
|
2021-02-16 14:31:22 +08:00 |
|
Mattraks
|
c48bdc2e1f
|
luci-app-ssr-plus: fix typo err
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-09 21:13:12 +08:00 |
|
CN_SZTL
|
bf04ac46fb
|
autocore: merge changes from LuCI
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-09 21:07:19 +08:00 |
|
CN_SZTL
|
20d8f45ff3
|
autocore: fix logic error of big core freq detection
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-08 01:20:50 +08:00 |
|
AmadeusGhost
|
0ab2aa1967
|
autocore-arm: add target sunxi support
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-07 01:31:42 +08:00 |
|
CN_SZTL
|
ebcdb6e415
|
default-settings: fix typo error
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-06 23:55:13 +08:00 |
|
CN_SZTL
|
c976737e55
|
banner: re-disign for ImmoralWrt
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-06 21:32:04 +08:00 |
|
CN_SZTL
|
0181289fe1
|
microsocks: fix download url
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-06 20:55:12 +08:00 |
|
Mattraks
|
f3ba045fb1
|
microsocks: bump to 1.0.2
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-06 18:52:08 +08:00 |
|
CN_SZTL
|
93b29ba7dd
|
treewide: update Copyright info
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-06 17:57:14 +08:00 |
|
Mattraks
|
23e1be48cb
|
luci-app-ssr-plus: bump to 183-6
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-03 21:57:36 +08:00 |
|
CN_SZTL
|
ba30665ea3
|
xray: remove upstreamed package
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-03 21:21:58 +08:00 |
|
CN_SZTL
|
362a3ebed3
|
[OpenWrt-SNAPSHOT] Update to Mod 21.02
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-02 23:46:25 +08:00 |
|
CN_SZTL
|
6e5c3e3824
|
fast-classifier: re-added example package
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
Signed-off-by: Tianling Shen <cnsztl@gmail.com>
|
2021-02-02 21:26:00 +08:00 |
|
AmadeusGhost
|
946963a212
|
fast-classifier: clearup Makefile
Fast-classifier should be started last, so just let luci control it.
Signed-off-by: Tianling Shen <cnsztl@gmail.com>
|
2021-02-02 21:26:00 +08:00 |
|
garypang13
|
833b1f15d5
|
fix write permission
|
2021-02-02 10:18:35 +08:00 |
|
CN_SZTL
|
cab591d0de
|
xray-core: bump to 1.2.4
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-01 00:07:25 +08:00 |
|
garypang13
|
5c47f20767
|
vlmcsd: fix mistake caused by wrong source file in my env
Co-authored-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-31 13:15:28 +08:00 |
|
CN_SZTL
|
43678abd48
|
Package Lean: fix typo err of PKG_SOURCE_DATE
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-31 02:58:43 +08:00 |
|
Shuanglei Tao
|
07afe9505f
|
pdnsd-alt: fix building on macOS
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-30 20:11:39 +08:00 |
|
ElonH
|
637d9707f1
|
wxbase: redirect to staging_dir in wx-config
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-30 19:36:34 +08:00 |
|
CN_SZTL
|
28c808e4af
|
Package Lean: Cleanup Makefile
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-30 19:06:57 +08:00 |
|
CN_SZTL
|
189ef24990
|
nps: build with OpenWrt golang toolchain
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-29 12:23:32 +08:00 |
|
CN_SZTL
|
6b6639e21a
|
v2ray: fix typo error
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-28 23:11:13 +08:00 |
|
CN_SZTL
|
466718a49b
|
luci-app-ssr-plus: bump to 183-5
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
Co-authored-by: Mattraks <16359027+Mattraks@users.noreply.github.com>
Co-authored-by: lean <coolsnowwolf@gmail.com>
|
2021-01-28 21:33:31 +08:00 |
|
liwenjie119
|
f097c06fc1
|
luci-app-kodexplorer: fix nginx info
修复nginx的path_info,以及可道云中查看数据库的adminer的依赖
Signed-off-by: Tianling Shen <cnsztl@gmail.com>
|
2021-01-28 18:41:57 +08:00 |
|
CN_SZTL
|
bf406023f9
|
autocore: sync with upstream
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 22:49:18 +08:00 |
|
CN_SZTL
|
285bb05ca3
|
autocore: display ? if "model name" doesn't exist
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 22:39:13 +08:00 |
|
CN_SZTL
|
68692453e2
|
autocore: remove hack for ARMv8
The related issue was fixed so this hack is totally useless now.
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 21:33:19 +08:00 |
|
CN_SZTL
|
d05d9cd4c6
|
shadowsocksr-libev: remove empty package call
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 20:43:09 +08:00 |
|
Mattraks
|
05422bfe13
|
luci-app-ssr-plus: sync with upstream source
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 20:43:09 +08:00 |
|
Beginner
|
ef7eb87d5f
|
xray: Update to v1.2.3
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 19:40:02 +08:00 |
|
taowazi007
|
9a401ca61c
|
luci-app-ssrserver-python: add support for IPv6 and chacha20 cipher
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-19 23:10:42 +08:00 |
|
Mattraks
|
7d9674c86e
|
luci-app-ssr-plus: bug fixes
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-19 23:03:19 +08:00 |
|
taowazi007
|
33666dc932
|
luci-app-ssr-plus: add support for IPv6
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-19 18:19:24 +08:00 |
|
Mattraks
|
c13edd736e
|
luci-app-ssr-plus: bump to 182-5
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-16 19:06:11 +08:00 |
|