EnnawYang
0b4bdc43c2
luci-app-jd-dailybonus:“bug fix” from jerrykuku ( #6547 )
2021-03-16 15:18:30 +08:00
EnnawYang
4824ae9e85
luci-app-jd-dailybonus: Keep up to date from jerrykuku ( #6540 )
2021-03-15 19:07:38 +08:00
Beginner
f681482829
v2ray-plugin: update to 4.36.0 ( #6533 )
2021-03-15 13:19:54 +08:00
Beginner
54e90134e7
luci-app-jd-dailybonus: Keep up to date from jerrykuku ( #6537 )
2021-03-15 13:19:30 +08:00
Michael Qu
093f57f1af
uugamebooster: update to 2.7.8 ( #6518 )
2021-03-14 11:52:19 +08:00
CN_SZTL
2607c6cf5c
r8152: introduce r8152/r8153 driver from vendor ( #6511 )
...
This is the vendor driver for r8152/r8153 series USB ethernet adapter, it may be
better than the driver from kernel mainline, or be worse. It's depending on your
use-case.
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2021-03-11 15:27:27 +08:00
Beginner
bd7cdbf39e
v2ray-plugin: update to 4.35.1 ( #6494 )
2021-03-09 23:14:05 +08:00
bobo liu
b1c6b17bf7
luci-app-frpc: add config field of user ( #6496 )
2021-03-09 23:13:48 +08:00
Beginner
d3d8d0860a
luci-app-jd-dailybonus: add cdn ( #6483 )
2021-03-07 10:08:58 +08:00
AmadeusGhost
7b6c29773a
v2ray-plugin: update to 4.35.0 ( #6470 )
2021-03-06 00:27:32 +08:00
CN_SZTL
ec4de4d31c
r8125: bump to 9.005.01 ( #6457 )
...
Enabled RSS support for performance.
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
2021-03-03 23:09:37 +08:00
lean
26721a994c
move xray-plugin
2021-03-01 11:08:52 +08:00
quintus
cc06227463
Create 990-not-defined-errors-on-gcc10.patch ( #6433 )
...
This patch fixes the following error when we compile with GCC 10.
‘’
‘’openwrt/staging_dir/toolchain-aarch64_generic_gcc-10.2.0_musl/lib/gcc/aarch64-openwrt-linux-musl/10.2.0/../../../../aarch64-openwrt-linux-musl/bin/ld: ss_local-http.o:openwrt/build_dir/target-aarch64_generic_musl/shadowsocksr-libev/shadowsocksr-libev-2.5.6-d63ff863800a5645aca4309d5dd5962bd1e95543/src/http.h:32: multiple definition of `http_protocol'; ss_local-local.o:openwrt/build_dir/target-aarch64_generic_musl/shadowsocksr-libev/shadowsocksr-libev-2.5.6-d63ff863800a5645aca4309d5dd5962bd1e95543/src/http.h:32: first defined here
openwrt/staging_dir/toolchain-aarch64_generic_gcc-10.2.0_musl/lib/gcc/aarch64-openwrt-linux-musl/10.2.0/../../../../aarch64-openwrt-linux-musl/bin/ld: ss_local-tls.o:openwrt/build_dir/target-aarch64_generic_musl/shadowsocksr-libev/shadowsocksr-libev-2.5.6-d63ff863800a5645aca4309d5dd5962bd1e95543/src/tls.h:31: multiple definition of `tls_protocol'; ss_local-local.o:openwrt/build_dir/target-aarch64_generic_musl/shadowsocksr-libev/shadowsocksr-libev-2.5.6-d63ff863800a5645aca4309d5dd5962bd1e95543/src/tls.h:31: first defined here‘’
‘’
2021-02-25 15:45:34 +08:00
Beginner
bdb5fa60ef
File organization ( #6356 )
2021-02-23 12:01:11 +08:00
Beginner
a5169dbd05
luci-app-jd-dailybonus: Keep up to date from jerrykuku ( #6416 )
2021-02-23 11:55:03 +08:00
Veoco
ef97f2a247
Revert "luci-app-ipsec-vpnd: add strongswan-mod-kernel-libipsec" ( #6331 )
2021-02-21 12:35:50 +08:00
Beginner
1160ce1e00
Add xray-plugin from Tianling Shen ( #6407 )
2021-02-21 12:30:47 +08:00
Chuck
e17961f67e
optimize the performance of obtaining CPU temperature ( #6398 )
...
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>
2021-02-21 12:27:55 +08:00
Chuck
aaba169f2f
optimize the performance of obtaining CPU usage ( #6399 )
...
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>
2021-02-21 12:26:19 +08:00
AmadeusGhost
73fdfdf6aa
v2ray-plugin: fix build with goproxy ( #6391 )
2021-02-17 23:47:14 +08:00
fliaping
91efc63019
fix ddns(dnspod) update I pv6和ipv4 ( #6383 )
...
1. 当一个域名同时有A记录和AAAA记录时,在不需要更新时去更新,接口返回错误导致的脚本挂掉的问题,
接口报错信息:Error message:[记录已经存在,无需再次添加]
2. 文案明显错误修改
2021-02-16 23:01:40 +08:00
AmadeusGhost
db3ec85639
goproxy: replace unavailable goproxy.io ( #6371 )
...
The currently used goproxy.io will redirect to proxy.golang.com.cn
and cause compilation failure.
2021-02-15 18:02:53 +08:00
小离
e922f4a778
luci-app-jd-dailybonus: Keep up to date from jerrykuku ( #6350 )
...
Fix issues:
- Fix permission denied
- Fix html tag mismatch in openwrt theme
2021-02-11 09:18:04 +08:00
然后七年
51a94cb899
Remove V2Ray: Xray-core will provide ( #6327 )
2021-02-08 17:17:00 +08:00
Mattraks
fbdca3d67e
microsocks:bump to 1.0.2 ( #6320 )
...
https://github.com/rofl0r/microsocks/releases/tag/v1.0.2
2021-02-04 16:27:47 +08:00
Mattraks
e33b848bb2
ipt2socks:bump to 1.1.3 ( #6317 )
...
https://github.com/zfl9/ipt2socks/releases/tag/v1.1.3
2021-02-03 12:40:47 +08:00
lean
9bc05c5ce3
Version update to R21.2.1
2021-02-01 11:22:35 +08:00
ricksuzade-maker
b61d7f5d5b
Bump npc to 0.26.9 ( #6279 )
...
Bump npc to the newest version
2021-02-01 11:16:48 +08:00
Beginner
4244e635c6
luci-app-jd-dailybonus: Keep up to date from jerrykuku ( #6296 )
2021-01-31 14:48:32 +08:00
EnnawYang
6ee0262477
luci-app-jd-dailybonus: merge upstream code ( #6262 )
2021-01-26 18:38:53 +08:00
Beginner
1de5883783
luci-app-jd-dailybonus: update v1.0.3 from jerrykuku ( #6255 )
2021-01-26 00:17:05 +08:00
Beginner
434b834160
luci-app-jd-dailybonus: Keep up to date from jerrykuku ( #6253 )
...
* luci-app-jd-dailybonus: Keep up to date from jerrykuku
* luci-app-jd-dailybonus: Keep up to date from jerrykuku
2021-01-25 22:32:23 +08:00
EnnawYang
3a50f6d523
luci-app-jd-dailybonus:bump to v1.0.2 ( #6247 )
2021-01-25 09:54:03 +08:00
big fox tail
d3d861a729
random generate openvpn cert at first run ( #6207 )
2021-01-24 20:30:53 +08:00
lean
0ef46ab96b
move xray to feeds
2021-01-23 19:29:53 +08:00
Beginner
dbc39c527b
Xray : Update V1.2.3 ( #6232 )
2021-01-23 19:23:31 +08:00
AmadeusGhost
e0d3229487
luci-app-jd-dailybonus: fix depends and install error ( #6230 )
2021-01-22 18:23:21 +08:00
lean
95dfd326ad
luci-app-jd-dailybonus: bump version
2021-01-22 11:27:27 +08:00
lean
8fa535c668
luci-app-uugamebooster: update qcode image
2021-01-20 22:33:19 +08:00
lean
b9f45263fe
luci-app-uugamebooster: add qcode
2021-01-20 18:55:01 +08:00
lean
dfbb519764
Revert "uugamebooster & luci-app-uugamebooster: ( #6217 )"
...
This reverts commit f60d3ea9c9865bb3a0e8d30463c2e0c570b6359e.
2021-01-20 18:26:52 +08:00
ZhenYu
f60d3ea9c9
uugamebooster & luci-app-uugamebooster: ( #6217 )
...
* uugamebooster: rebuild startup service
* luci-app-uugamebooster: use standerd terms
* luci-app-uugamebooster: use inter-startup funcion
* luci-app-uugamebooster: fix typo
2021-01-19 23:42:00 +08:00
taowazi007
3fedff6615
ssrs ipv6 chacha20 support ( #6199 )
...
* Update ssrs
config ipv6 support
* Update ssrs.lua
2021-01-18 15:53:45 +08:00
Beginner
2c91a30820
kcptun : update v20210103 ( #6214 )
2021-01-18 15:52:25 +08:00
lean
7b043f5cfa
Merge branch 'master' of https://github.com/coolsnowwolf/lede
2021-01-18 15:30:48 +08:00
lean
3ac7bea729
add luci-app-jd-dailybonus from jerrykuku
2021-01-18 15:30:32 +08:00
Beginner
1f87014d58
Xray : Update V1.2.2 ( #6203 )
2021-01-18 13:05:46 +08:00
lean
332fe57a37
Version update to R21.1.18
2021-01-18 13:04:32 +08:00
lean
121548b153
Add luci-app-uugamebooster for uuplugin
2021-01-18 12:53:23 +08:00
ZhenYu
faf254aedd
uugamebooster: fix missing depends & file conflict ( #6196 )
...
* uugamebooster: fix missing depends & file conflict
* uugamebooster: optimize program running
* uugamebooster: delete extra space
2021-01-14 14:32:45 +08:00