Commit Graph

1619 Commits

Author SHA1 Message Date
dongjuanyong
ae7a5d7060
luci-app-ssr-plus: OpenWrt SNAPSHOT compatibility (#4154)
* luci-app-ssr-plus: OpenWrt SNAPSHOT compatibility

Fix #4143

* Modify getElementById to getElementsByName

Luci modification for OpenWrt 19.07 or higher
2020-04-09 01:07:52 +08:00
lean
12b558bbd4 amule: dyn linked 2020-04-09 00:30:15 +08:00
lean
d29fc8c1d8 Merge branch 'master' of https://github.com/coolsnowwolf/lede 2020-04-09 00:25:43 +08:00
lean
7bf824b1fc qBittorrent: bump to v4.2.3 2020-04-09 00:25:33 +08:00
AmadeusGhost
dc875de0ea
kernel: netdev: add missing config for mlx5 driver (#4228)
* kernel: Fix miss config and module for mlx driver

Missing config symbols could lead to build failures on kernel
4.14/4.19.

Signed-off-by: Tan Zien <nabsdh9@gmail.com>
[rephrase commit message - reorder symbols]
Signed-off-by: David Bauer <mail@david-bauer.net>

* kernel: netdev: add missing config for mlx5 driver

The mlk5 kmod lacks all necessary build symbols
for kernel 4.14 (again).

Add missing symbols to avoid build failure on these targets.

Signed-off-by: Tan Zien <nabsdh9@gmail.com>
[rewrite commit message - reorder symbols]
Signed-off-by: David Bauer <mail@david-bauer.net>

Co-authored-by: Tan Zien <nabsdh9@gmail.com>
2020-04-08 19:07:29 +08:00
lean
b6b408c8fa Version bump to R20.4.8 2020-04-08 13:30:03 +08:00
lean
6d92b60767 luci-app-music-remote-center: add place holder 2020-04-08 12:38:04 +08:00
ricksuzade-maker
cef6bffa6f
Bump wireguard to 1.0.20200401 (#4217)
The newest official stable release.
2020-04-07 23:41:56 +08:00
lean
a1b538a9f5 ipq40xx: switch to ath10k-ct 2020-04-07 22:44:32 +08:00
lean
c3c418cdb7 luci-app-cifs-mount: add SMB/CIFS mount luci 2020-04-07 21:06:50 +08:00
lean
7e22d61328 luci-app-music-remote-center: add zh-cn and fix path settings 2020-04-06 15:16:51 +08:00
lean
7b250deeb2 luci-app-music-remote-center: DAAP remote control music server for iOS/Android 2020-04-06 14:03:52 +08:00
Chuck
7930a037e0
default-settings: fix string replace (#4189)
default-settings: fix string replace
2020-04-06 13:36:35 +08:00
Aes64X
5e9e8d8536
package:add nfs mount luci (#4171) 2020-04-05 18:34:14 +08:00
CN_SZTL
91be31e249
mac80211: fix target name (#4176) 2020-04-05 18:31:37 +08:00
NivalXer
d5dc714edb
mwlwifi: Update the 88W8964's firmware to 9.3.2.12 and fix backports version detection (#4168)
* mwlwifi: Fix loading with backports v5.3

* mwlwifi: Update the 88W8964's firmware to 9.3.2.12 and fix backports version detection

* remove old patches/001-vendor_command_policy.patch
2020-04-04 15:57:03 +08:00
AmadeusGhost
b344bfb5d9
ath10k-ct: bump to 5.4 (#4165) 2020-04-04 15:56:30 +08:00
AmadeusGhost
7d597c5347
mac80211: switch to upstream owl-loader driver (#4164)
The Owl Loader (named after the codename that Atheros gave
these devices back in the day) has been accepted upstream.

This patch removes the "misc" driver OpenWrt had and adds
the remaining differences against the version that ships
with 5.4-rc1 into a separate "120-owl-loader-compat.patch"
file that can be cut down once AR71XX is being dealt with.

Acked-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
2020-04-04 15:55:52 +08:00
lean
d0922b9398 luci-app-ssr-plus: display log when enable socks5 server only 2020-04-04 00:18:26 +08:00
lean
8faac30089 mac80211: Update to version 5.4.27 2020-04-03 23:29:36 +08:00
lean
0a395d6fd6 Merge branch 'master' of https://github.com/coolsnowwolf/lede 2020-04-03 23:18:52 +08:00
lean
17ce0abd61 kernel: add module for Mellanox mlx Network 10/40Gbps Driver 2020-04-03 23:18:28 +08:00
CN_SZTL
78bec3e9f0
openssl: bump to 1.1.1f (#4153) 2020-04-03 09:10:54 +08:00
mjyhj
e56bd418c1
luci-app-diskman: bump to 0.2.7 (#4144)
partition: automatic FIX GPT PARTITION TABLE while create partition
当硬盘分区表为GPT时,硬盘容量与GPT分区表不对应(使用DD刷入gpt镜像,或者调整RAID分区大小后),自动修复分区表,修复上述情况下无法创建新分区的BUG
2020-04-02 13:28:55 +08:00
CN_SZTL
f8bd6e09a0
openssl: revert EOF detection change in 1.1.1 (#4127)
This adds patches to avoid possible application breakage caused by a
change in behavior introduced in 1.1.1e.  It affects at least nginx,
which logs error messages such as:
nginx[16652]: [crit] 16675#0: *358 SSL_read() failed (SSL: error:
4095126:SSL routines:ssl3_read_n:unexpected eof while reading) while
keepalive, client: xxxx, server: [::]:443

Openssl commits db943f4 (Detect EOF while reading in libssl), and
22623e0 (Teach more BIOs how to handle BIO_CTRL_EOF) changed the
behavior when encountering an EOF in SSL_read().  Previous behavior was
to return SSL_ERROR_SYSCALL, but errno would still be 0.  The commits
being reverted changed it to SSL_ERRO_SSL, and add an error to the
stack, which is correct.  Unfortunately this affects a number of
applications that counted on the old behavior, including nginx.

The reversion was discussed in openssl/openssl#11378, and implemented as
PR openssl/openssl#11400.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>

Co-authored-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2020-03-31 23:14:35 +08:00
Mattraks
64db0fb90c
luci-app-cpufreq:Add translation (#4130) 2020-03-31 23:07:57 +08:00
lean
32964d4b71 luci-app-airplay2: open to all target 2020-03-30 20:27:31 +08:00
AmadeusGhost
3a86ef8c46
mac80211: brcm: backport remaining 5.6 kernel patches (#4070)
* mac80211: brcm: backport remaining 5.6 kernel patches

* mac80211: fix brcmfmac monitor interface crash

This fixes bug in brcmfmac *exposed* by ipv6/addrconf fix.

Fixes: 6e4453aecc22 ("kernel: backport out-of-memory fix for non-Ethernet devices")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>

Co-authored-by: Rafał Miłecki <rafal@milecki.pl>
2020-03-30 12:18:10 +08:00
Mattraks
1188a9ffc3
luci-app-ssr-plus:Fix update.lua log output and file checking (#4085) 2020-03-30 12:17:19 +08:00
lean
34f33cfcbe luci-app-airplay2: add audio sample rate setting 2020-03-29 23:08:18 +08:00
lean
c6f47f30df luci-app-airplay2: add audio buffer length setting 2020-03-29 23:03:57 +08:00
lean
51fc01f88c luci-app-airplay2: add airplay2 for x86 2020-03-29 19:33:36 +08:00
lean
347ee6aeb2 luci-app-ssr-plus: add x64 default 2020-03-29 12:31:07 +08:00
lean
bea383627c x86: adjust some kernel module for k4.9 2020-03-29 02:14:15 +08:00
lean
295e835f0c ajust some default package setting for x86 32bit 2020-03-29 01:33:43 +08:00
lean
c71b177f52 UnblockNeteaseMusicGo: bump to v0.2.0 to fix x86 32bit running 2020-03-29 00:27:03 +08:00
lean
cdf1ae96c3 luci-app-ssr-plus: add subscribe keyword filter 2020-03-27 19:46:08 +08:00
lean
08b73fa42d luci-app-ssr-plus: fix game plus mode 2020-03-27 16:56:59 +08:00
lonwern
114cfd3d1b
luci-app-ssr-plus: output auto update logs to log file (#4053) 2020-03-27 14:49:43 +08:00
lean
b2ca31e6b0 autocore: fix cpu usage display 2020-03-27 01:13:29 +08:00
Mattraks
335ed370de
luci-app-ssr-plus:Maintenance Usage ssr-rules (#4016) 2020-03-26 19:21:04 +08:00
lean
6d53bc90c6 luci-app-ssr-plus: revert /etc/ssr_ip 2020-03-26 19:19:02 +08:00
Mattraks
e2b1d47860
luci-app-ssr-plus:Adjust uci-defaults (#4010) 2020-03-26 19:14:15 +08:00
lonwern
8d4027f17f
luci-app-ssr-plus: add "same" mode for global socks5 server (#4039) 2020-03-26 18:39:07 +08:00
R3pl4c3r
791d2a171c
luci-app-ssr-plus: fix gfwlist update error (#4043)
* luci-app-ssr-plus: fix gfwlist update error

* Update Makefile
2020-03-26 18:33:06 +08:00
AmadeusGhost
5b588615d5
mwlwifi: disable A-MSDU (#4030)
Co-authored-by: LGA1150 <dqfext@gmail.com>
2020-03-26 18:32:43 +08:00
manyeechen
8022677a10
npc:bump to 0.26.6 (#4033)
fix:
web重新显示id #453 #461 #475
客户端首次添加时限速问题
mux计算长度重复赋值
服务端启动可能卡住的问题 #470
web中丢失的服务器ip项
2020-03-26 18:32:09 +08:00
Xiaofu
f907738f7c
luci-app-adbyby_plus: bugfix (#4020) 2020-03-26 00:39:09 +08:00
Mattraks
a0174a6584
luci-app-ssr-plus:Fix update.lua (#4018) 2020-03-26 00:38:57 +08:00
lean
1a6c52cc06 trojan: bump to 1.15.1 2020-03-25 23:34:22 +08:00