Console View
|
|
|||||||||||||||||||||||||||||||||
faeaf5a01025... |
Felix Fietkau
nbd @nbd.name |
|
|||||||||||||||||||||||||||||||
mac80211: fix an uninitialized stack variable in the minstrel update It can lead to out-of-bounds access and invalid rates Signed-off-by: Felix Fietkau <nbd@nbd.name> |
|||||||||||||||||||||||||||||||||
f841855f1053... |
Felix Fietkau
nbd @nbd.name |
|
|||||||||||||||||||||||||||||||
mt76: update to the latest version a46f9a9160e9 mt76: mt7915: add vif check in mt7915_update_vif_beacon() 27ad12352ac9 mt76: mt7615: add vif check in mt7615_update_vif_beacon() 0a449cef024e mt76: mt7915: fix MT_CIPHER_BIP_CMAC_128 setkey eacd2d493c61 mt76: mt7915: reset token when mac_reset happens e4b23301e6c9 mt76: mt7615: reset token when mac_reset happens 6e22bbfe0360 mt76: mt7615: convert comma to semicolon 37865118ae2d mt76: mt7915: convert comma to semicolon 742c36b2e527 mt76: mt7915: run mt7915_configure_filter holding mt76 mutex a515727e8423 mt76: mt7915: add support for flash mode b6f7b3da5216 mt76: mt7915: fix endianness warning in mt7915_mcu_set_radar_th 062f3f4f06a2 mt76: mt7915: simplify mt7915_mcu_send_message routine dbba9b993300 mt76: mt7915: drop zero-length packet to avoid Tx hang 36a745d0f71c mt76: Fix queue ID variable types after mcu queue split a4539760b0b1 mt7915: update the testmode support to the latest upstream patch 64bd6f87e4c2 mt7915: fix crash on failure in pci_set_dma_mask c202ace409e0 mt76: remove unused variable q d1b827781f84 mt76: mt7915: add partial add_bss_info command on testmode init a897a69769f5 mt76: testmode: introduce dbdc support b44472e99822 mt76: testmode: move mtd part to mt76_dev 45e27e6cdc12 mt76: mt7915: move testmode data from dev to phy b6673b005770 mt76: mt7615: move testmode data from dev to phy abdd471e9f2d mt76: mt7915: fix ht mcs in mt7915_mcu_get_rx_rate() d679b56b9585 mt76: move mac_work in mt76_core module 36cd48ab4454 mt76: move chainmask in mt76_phy 89a6781ed045 mt76: mt7915: force ldpc for bw larger than 20MHz in testmode 3d0834e78005 mt76: testmode: add support to set user-defined spe index cc05f4679667 mt76: testmode: add attributes for ipg related parameters 77b18b16fe16 mt76: testmode: make tx queued limit adjustable 6365a58573cb mt76: mt7915: split edca update function e56282bf67f6 mt76: mt7915: add support for ipg in testmode 6fa642903e4e mt76: mt7915: calculate new packet length when tx_time is set in testmode 729ec5daeba5 mt76: mt7915: clean hw queue before starting new testmode tx 981443da5cf7 mt76: testmode: add a new state for continuous tx 4793fc9b3d48 mt76: mt7915: rework set state part in testmode 11a1e86e5946 mt76: mt7915: add support for continuous tx in testmode 364affef82fc mt76: mt7615: mt7915: disable txpower sku when testmode enabled 9fc19db51293 mt76: mt7915: simplify peer's TxBF capability check 6377b7f330be mt76: mt7915: add implicit Tx beamforming support 983091a40633 mt76: mt7915: fix MESH ifdef block bbb7a9e77751 mt76: mt76u: fix NULL pointer dereference in mt76u_status_worker a28a8dd2f7de mt76: usb: fix crash on device removal 9c312f2ce2c5 mt76: mt7915: rework mcu API e6fe82acb111 mt76: mt7915: disable RED support in the WA firmware 25d7429bdc41 mt76: mt7915: fix eeprom parsing for DBDC 7a93026dd3dc mt76: mt7915: fix eeprom DBDC band selection 4c8a09cc45d0 tools: Set mode for new file /tmp/mt76-test-%s Signed-off-by: Felix Fietkau <nbd@nbd.name> |
|||||||||||||||||||||||||||||||||
ea4a3f28dcc9... |
Nick Hainke
vincent @systemli.org |
|
|||||||||||||||||||||||||||||||
babeld: add ubus bindings A better integration of babeld with OpenWrt is to connect the daemon to the IPC. So far, we can only communicate via a websocket. With ubus we can send and receive commands in json format. The commit adds a ubus interface to babeld with following functions: - get_info - get_neighbours - get_xroutes - get_routes All output is divided into IPv4 and IPv6. Ubus has to be enabled by setting "config general" option 'ubus_bindings' 'true' Example: root@OpenWrt:~# ubus call babeld get_info { "babeld-version": "babeld-1.9.2", "my-id": "32:xx:xx:xx:xx:xx:xx:xx", "host": "OpenWrt" } root@OpenWrt:~# ubus call babeld get_neighbours { "IPv4": { }, "IPv6": { "fe80::xx:xx:xx:xxx": { "dev": "br-lan", "hello-reach": 65408, "uhello-reach": 0, "rxcost": 96, "txcost": 96, "rtt": 4338271, "channel": -2, "if_up": true } } } root@OpenWrt:~# ubus call babeld get_xroutes { "IPv4": { "10.0.0.3/32": { "src-prefix": "0.0.0.0/0", "metric": 0 }, "10.0.0.0/24": { "src-prefix": "0.0.0.0/0", "metric": 0 } }, "IPv6": { "fdfa:xx:xx::1/128": { "src-prefix": "::/0", "metric": 0 } } } root@OpenWrt:~# ubus call babeld get_routes { "IPv4": { "10.2.0.1/32": { "src-prefix": "0.0.0.0/0", "route_metric": 96, "route_smoothed_metric": 96, "refmetric": 0, "id": "62:xx:xx:xx:xx:xx:xx:xx", "seqno": 41381, "channels": "", "age": 17, "via": "fe80::xx:xxxx:xxxx:xxxx", "nexthop": " nexthop ", "installed": true, "feasible": true }, "IPv6": { } } Additional IPC functionality will follow. Further, we changed the version to $version-ubus-mod. Signed-off-by: Nick Hainke <vincent@systemli.org> |
|||||||||||||||||||||||||||||||||
e951236e3634... |
Florian Eckert
fe @dev.tdt.de |
|
|||||||||||||||||||||||||||||||
luci-base: add tooltip handling Signed-off-by: Florian Eckert <fe@dev.tdt.de> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
df2a135a08de... |
Florian Eckert
fe @dev.tdt.de |
|
|||||||||||||||||||||||||||||||
luci-base: make tooltip icon string configurable Signed-off-by: Florian Eckert <fe@dev.tdt.de> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
d5bbd4975cbb... |
Leon M. George
leon @georgemail.eu |
|
|||||||||||||||||||||||||||||||
hostapd: fix setting wps_state to "not configured" With encryption disabled, it was intended to set wpa_state=1 (enabled, not configured) through the 'wps_not_configured' flag. The flag is set appropriately but the condition using it is broken. Instead, 'wps_configured' is checked and wpa_state is always 2 (enabled, configured). Fix it by using the correct variable name. Fixes: 498d84fc4e00 ("netifd: add wireless configuration support and port mac80211 to the new framework") Signed-off-by: Leon M. George <leon@georgemail.eu> [commit title/message improvements] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> |
|||||||||||||||||||||||||||||||||
c40006e0af4b... |
Rafał Miłecki
rafal @milecki.pl |
|
|||||||||||||||||||||||||||||||
bcm4908: prepend kernel images with a custom header It's required for CFE to accept kernel. Signed-off-by: Rafał Miłecki <rafal@milecki.pl> |
|||||||||||||||||||||||||||||||||
bf4340e19ecd... |
Luiz Angelo Daros de Luca
luizluca @gmail.com |
|
|||||||||||||||||||||||||||||||
sane-backends: revert BUILDONLY flag BUILDONLY was disabling SANE backends (drivers) build. Closes #14484 Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
be75f779737d... |
Hannu Nyman
hannu.nyman @iki.fi |
|
|||||||||||||||||||||||||||||||
nano: update to 5.5 Update nano editor to version 5.5 Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi> |
|||||||||||||||||||||||||||||||||
b619c417db1f... |
Sebastian Kemper
sebastian_ml @gmx.net |
|
|||||||||||||||||||||||||||||||
Revert "asterisk: link in libdl when linking to liblua" This reverts commit 150b85ab350844f1481b9a9d49984b3e16cddd40. OpenWrt upstream updated the lua package so that liblua now is linked to libdl. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net> |
|||||||||||||||||||||||||||||||||
b0ad07e9a0fc... |
Felix Fietkau
nbd @nbd.name |
|
|||||||||||||||||||||||||||||||
mac80211: fix rounding error in minstrel_ht throughput calculation Fixes rate selection with lower data rates Signed-off-by: Felix Fietkau <nbd@nbd.name> |
|||||||||||||||||||||||||||||||||
ab9de0784f21... |
Hosted Weblate
hosted @weblate.org |
|
|||||||||||||||||||||||||||||||
Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (13 of 13 strings) Translation: OpenWrt/LuCI/applications/hd-idle Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (50 of 50 strings) Translation: OpenWrt/LuCI/applications/acme Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (29 of 29 strings) Translation: OpenWrt/LuCI/applications/acl Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenWrt/LuCI/applications/frps Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (75 of 75 strings) Translation: OpenWrt/LuCI/applications/frpc Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (96 of 96 strings) Translation: OpenWrt/LuCI/applications/vpn-policy-routing Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (66 of 66 strings) Translation: OpenWrt/LuCI/applications/yggdrasil Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (62 of 62 strings) Translation: OpenWrt/LuCI/applications/ocserv Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (26 of 26 strings) Translation: OpenWrt/LuCI/applications/dcwapd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (49 of 49 strings) Translation: OpenWrt/LuCI/applications/bmx7 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (164 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (37 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (182 of 182 strings) Translation: OpenWrt/LuCI/applications/unbound Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (57 of 57 strings) Translation: OpenWrt/LuCI/applications/nft-qos Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (123 of 123 strings) Translation: OpenWrt/LuCI/applications/nlbwmon Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (107 of 107 strings) Translation: OpenWrt/LuCI/applications/simple-adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (48 of 48 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (49 of 49 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (195 of 195 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (12 of 12 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (33 of 33 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (17 of 17 strings) Translation: OpenWrt/LuCI/applications/omcproxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (37 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (48 of 48 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (33 of 33 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (96 of 96 strings) Translation: OpenWrt/LuCI/applications/vpn-policy-routing Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (37 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (107 of 107 strings) Translation: OpenWrt/LuCI/applications/simple-adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (191 of 191 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (210 of 210 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (44 of 44 strings) Translation: OpenWrt/LuCI/applications/ser2net Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (28 of 28 strings) Translation: OpenWrt/LuCI/applications/vnstat2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (17 of 17 strings) Translation: OpenWrt/LuCI/applications/udpxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/zh_Hans/ Translated using Weblate (Italian) Currently translated at 10.3% (12 of 116 strings) Translation: OpenWrt/LuCI/applications/radicale Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/it/ Translated using Weblate (Italian) Currently translated at 3.2% (4 of 125 strings) Translation: OpenWrt/LuCI/applications/privoxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/it/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (62 of 62 strings) Translation: OpenWrt/LuCI/applications/ocserv Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hans/ Translated using Weblate (Italian) Currently translated at 17.7% (11 of 62 strings) Translation: OpenWrt/LuCI/applications/ocserv Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/it/ Translated using Weblate (Italian) Currently translated at 16.2% (26 of 160 strings) Translation: OpenWrt/LuCI/applications/mwan3 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/it/ Translated using Weblate (Italian) Currently translated at 8.3% (4 of 48 strings) Translation: OpenWrt/LuCI/applications/mjpg-streamer Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/it/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (20 of 20 strings) Translation: OpenWrt/LuCI/applications/ltqtapi Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/zh_Hans/ Translated using Weblate (Italian) Currently translated at 30.0% (6 of 20 strings) Translation: OpenWrt/LuCI/applications/ltqtapi Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/it/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (25 of 25 strings) Translation: OpenWrt/LuCI/applications/cshark Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscshark/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (48 of 48 strings) Translation: OpenWrt/LuCI/applications/mjpg-streamer Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (13 of 13 strings) Translation: OpenWrt/LuCI/applications/pagekitec Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (13 of 13 strings) Translation: OpenWrt/LuCI/applications/shairplay Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (173 of 173 strings) Translation: OpenWrt/LuCI/applications/aria2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (182 of 182 strings) Translation: OpenWrt/LuCI/applications/unbound Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (31 of 31 strings) Translation: OpenWrt/LuCI/applications/dynapoint Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (116 of 116 strings) Translation: OpenWrt/LuCI/applications/radicale Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/zh_Hans/ Translated using Weblate (Italian) Currently translated at 88.2% (172 of 195 strings) Translation: OpenWrt/LuCI/applications/ddns Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/it/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (107 of 107 strings) Translation: OpenWrt/LuCI/applications/simple-adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/zh_Hans/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (113 of 113 strings) Translated using Weblate (Italian) Currently translated at 7.9% (9 of 113 strings) Translated using Weblate (Italian) Currently translated at 4.5% (6 of 133 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (102 of 102 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (43 of 43 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (195 of 195 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Italian) Currently translated at 20.2% (15 of 74 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (16 of 16 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (82 of 82 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (133 of 133 strings) Translated using Weblate (Italian) Currently translated at 42.3% (669 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/ Translated using Weblate (Italian) Currently translated at 2.1% (4 of 186 strings) Translation: OpenWrt/LuCI/applications/dockerman Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/it/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (50 of 50 strings) Translation: OpenWrt/LuCI/applications/acme Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (29 of 29 strings) Translation: OpenWrt/LuCI/applications/acl Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/zh_Hant/ Translated using Weblate (Italian) Currently translated at 26.9% (17 of 63 strings) Translation: OpenWrt/LuCI/applications/frps Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/it/ Translated using Weblate (Italian) Currently translated at 9.3% (7 of 75 strings) Translation: OpenWrt/LuCI/applications/frpc Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/it/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (7 of 7 strings) Translation: OpenWrt/LuCI/applications/squid Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (105 of 105 strings) Translation: OpenWrt/LuCI/applications/banip Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (164 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (164 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (37 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (40 of 40 strings) Translation: OpenWrt/LuCI/applications/clamav Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (173 of 173 strings) Translation: OpenWrt/LuCI/applications/aria2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hans/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (125 of 125 strings) Translation: OpenWrt/LuCI/applications/privoxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (31 of 31 strings) Translation: OpenWrt/LuCI/applications/dynapoint Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (169 of 169 strings) Translation: OpenWrt/LuCI/applications/travelmate Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/ Translated using Weblate (Italian) Currently translated at 93.0% (40 of 43 strings) Translated using Weblate (Italian) Currently translated at 18.9% (14 of 74 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Russian) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (82 of 82 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/ Translated using Weblate (Russian) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/ Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/ Translated using Weblate (Italian) Currently translated at 42.3% (669 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/ Translated using Weblate (Spanish) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/ Added translation using Weblate (Yue) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (50 of 50 strings) Translation: OpenWrt/LuCI/applications/acme Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (164 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (169 of 169 strings) Translation: OpenWrt/LuCI/applications/travelmate Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/ Co-authored-by: Anton Kikin <a.a.kikin@gmail.com> Co-authored-by: Francesco Grosso <tregemmelli@gmail.com> Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com> Co-authored-by: akibou <jinwenxin1997@icloud.com> Co-authored-by: xiazhang <xz@xia.plus> Co-authored-by: å¤çˆºä»” <7312140@qq.com> Signed-off-by: Anton Kikin <a.a.kikin@gmail.com> Signed-off-by: Francesco Grosso <tregemmelli@gmail.com> Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com> Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com> Signed-off-by: akibou <jinwenxin1997@icloud.com> Signed-off-by: å¤çˆºä»” <7312140@qq.com> Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/it/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/it/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/it/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/es/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ru/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/it/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hant/ Translation: OpenWrt/LuCI/applications/ahcp Translation: OpenWrt/LuCI/applications/firewall Translation: OpenWrt/LuCI/applications/fwknopd Translation: OpenWrt/LuCI/applications/minidlna Translation: OpenWrt/LuCI/applications/nut Translation: OpenWrt/LuCI/applications/olsr Translation: OpenWrt/LuCI/applications/openvpn Translation: OpenWrt/LuCI/applications/qos Translation: OpenWrt/LuCI/applications/radicale2 Translation: OpenWrt/LuCI/applications/splash Translation: OpenWrt/LuCI/applications/statistics Translation: OpenWrt/LuCI/applications/tinyproxy Translation: OpenWrt/LuCI/applications/transmission Translation: OpenWrt/LuCI/applications/upnp Translation: OpenWrt/LuCI/applications/vnstat Translation: OpenWrt/LuCI/applications/watchcat |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
ab390cf94eef... |
Florian Eckert
fe @dev.tdt.de |
|
|||||||||||||||||||||||||||||||
luci-app-firewall: add tooltip on rules that have time restrictions enabled Signed-off-by: Florian Eckert <fe@dev.tdt.de> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
a6223b5813bd... |
Daniel Golle
daniel @makrotopia.org |
|
|||||||||||||||||||||||||||||||
libinput: update to version 1.16.4 Signed-off-by: Daniel Golle <daniel@makrotopia.org> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
945a704fab99... |
John Audia
graysky @archlinux.us |
|
|||||||||||||||||||||||||||||||
kernel: bump 5.4 to 5.4.89 All modification made by update_kernel.sh in a fresh clone without existing toolchains. Build system: x86_64 Build-tested: ipq806x/R7800, bcm27xx/bcm2711 Run-tested: ipq806x/R7800 No dmesg regressions, everything functional Signed-off-by: John Audia <graysky@archlinux.us> Tested-by: Curtis Deptuck <curtdept@me.com> [x86/64] |
|||||||||||||||||||||||||||||||||
8451f47b1e18... |
Sungbo Eo
mans0n @gorani.run |
|
|||||||||||||||||||||||||||||||
treewide: do not disable LED triggers in target config Those targets have already enabled some other LED triggers, so enabling a few more won't be a big problem. Signed-off-by: Sungbo Eo <mans0n@gorani.run> |
|||||||||||||||||||||||||||||||||
83d81616c5c5... |
Daniel Golle
daniel @makrotopia.org |
|
|||||||||||||||||||||||||||||||
podman: fix build on MIPS Signed-off-by: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Rosen Penev <rosenp@gmail.com> |
|||||||||||||||||||||||||||||||||
6e8eaf2602e8... |
Sebastian Kemper
sebastian_ml @gmx.net |
|
|||||||||||||||||||||||||||||||
asterisk: add dependency to asterisk-chan-rtp This commit makes asterisk-chan-rtp depend on asterisk-res-rtp-multicast. Without the res-rtp-multicast module chan-rtp cannot be loaded: OpenWrt*CLI> module load chan_rtp.so Unable to load module chan_rtp.so Command 'module load chan_rtp.so' failed. [Jan 9 08:51:01] ERROR[16337]: loader.c:281 module_load_error: Error loading module 'chan_rtp.so': Error relocating /usr/lib/asterisk/modules/chan_rtp.so: ast_multicast_rtp_create_options: symbol not found This issue was mentioned in the OpenWrt forum ([1]). [1] https://forum.openwrt.org/t/asterisk-makes-a-problem-with-loading/84816 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net> |
|||||||||||||||||||||||||||||||||
6e7ca70449f2... |
Rafał Miłecki
rafal @milecki.pl |
|
|||||||||||||||||||||||||||||||
firmware-utils: bcm4908kernel: tool adding BCM4908 kernel header BCM4908 CFE bootloader requires kernel to be prepended with a custom header. This simple tool implements support for such headers. Signed-off-by: Rafał Miłecki <rafal@milecki.pl> |
|||||||||||||||||||||||||||||||||
6c90999e2e0d... |
Rafał Miłecki
rafal @milecki.pl |
|
|||||||||||||||||||||||||||||||
bcm4908: backport brcmstb USB PHY driver changes This includes BCM4908 support Signed-off-by: Rafał Miłecki <rafal@milecki.pl> |
|||||||||||||||||||||||||||||||||
63508ca6d88d... |
Rosen Penev
rosenp @gmail.com |
|
|||||||||||||||||||||||||||||||
rtpengine: fix compilation with newer pcap Backport upstream patch fixing this issue. Remove uClibc-ng patch as it's no longer in the tree. Refresh patches. Signed-off-by: Rosen Penev <rosenp@gmail.com> |
|||||||||||||||||||||||||||||||||
5beea4c3fd6b... |
Nick Hainke
vincent @systemli.org |
|
|||||||||||||||||||||||||||||||
owipcalc: use v6 in cidr_parse6 function The cidr_parse6 function parses a string to an ipv6-address. The cidr struct contains a union called buf for the ipv4 and ipv6 address. Since it is a char pointer and the struct is initialized with the maximum size (so ipv6 string) it does not make any difference. However, we should access the buffer using the v6 name, since it could be confusing otherwise. Signed-off-by: Nick Hainke <vincent@systemli.org> |
|||||||||||||||||||||||||||||||||
591a4c9ed3a3... |
Russell Senior
russell @personaltelco.net |
|
|||||||||||||||||||||||||||||||
ath79: Add support for Ubiquiti Bullet AC CPU: Atheros AR9342 rev 3 SoC RAM: 64 MB DDR2 Flash: 16 MB NOR SPI WLAN 2.4GHz: Atheros AR9342 v3 (ath9k) WLAN 5.0GHz: QCA988X Ports: 1x GbE Flashing procedure is identical to other ubnt devices. https://openwrt.org/toh/ubiquiti/common Flashing through factory firmware 1. Ensure firmware version v8.7.0 is installed. Up/downgrade to this exact version. 2. Patch fwupdate.real binary using `hexdump -Cv /bin/ubntbox | sed 's/14 40 fe 27/00 00 00 00/g' | \ hexdump -R > /tmp/fwupdate.real` 3. Make the patched fwupdate.real binary executable using `chmod +x /tmp/fwupdate.real` 4. Copy the squashfs factory image to /tmp on the device 5. Flash OpenWrt using `/tmp/fwupdate.real -m <squashfs-factory image>` 6. Wait for the device to reboot (copied from Ubiquiti NanoBeam AC and modified) Flashing from serial console 1. Connect serial console (115200 baud) 2. Connect ethernet to a network with a TFTP server, through a passive PoE injector. 3. Press a key to obtain a u-boot prompt 4. Set your TFTP server's ip address, with: setenv serverip <tftp-server-address> 5. Set the Bullet AC's ip address, with: setenv ipaddr <bullet-ac-address> 6. Set the boot file, with: setenv bootfile <name-of-initramfs-binary-on-tftp-server> 7. Fetch the binary with tftp: tftpboot 8. Boot the initramfs binary: bootm 9. From the initramfs, fetch the sysupgrade binary, and flash it with sysupgrade. The Bullet AC is identified as a 2WA board by Ubiquiti. As such, the UBNT_TYPE must match from the "Flashing through factory firmware" install instructions to work. Phy0 is QCA988X which can tune either band (2.4 or 5GHz). Phy1 is AR9342, on which 5GHz is disabled. It isn't currently known whether phy1 is routed to the N connector at all. Signed-off-by: Russell Senior <russell@personaltelco.net> |
|||||||||||||||||||||||||||||||||
583e39e3d514... |
Sungbo Eo
mans0n @gorani.run |
|
|||||||||||||||||||||||||||||||
kernel: drop empty kmod-ledtrig-* packages The following four led triggers are enabled in generic config. * kmod-ledtrig-default-on * kmod-ledtrig-heartbeat * kmod-ledtrig-netdev * kmod-ledtrig-timer Drop the packages and remove them from DEVICE_PACKAGES. There's no other package depending on them in this repo. Signed-off-by: Sungbo Eo <mans0n@gorani.run> |
|||||||||||||||||||||||||||||||||
54bfebdca00f... |
Hans Dedecker
dedeckeh @gmail.com |
|
|||||||||||||||||||||||||||||||
glibc: update to latest 2.32 commit (BZ #20019, BZ #27177, BZ #27130) 4c619b3eed x86: Check IFUNC definition in unrelocated executable [BZ #20019] 87450ecf8a x86: Set header.feature_1 in TCB for always-on CET [BZ #27177] 2b4f67c2b3 Update for [BZ #27130] fix 1a24bbd43e x86-64: Avoid rep movsb with short distance [BZ #27130] Signed-off-by: Hans Dedecker <dedeckeh@gmail.com> |
|||||||||||||||||||||||||||||||||
4f3934172cd6... |
Florian Eckert
fe @dev.tdt.de |
|
|||||||||||||||||||||||||||||||
Merge pull request #4667 from TDT-AG/pr/20201218-luci-base-tooltip luci-base: add generic tooltip handling |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
4dad3244297d... |
Paul Spooren
mail @aparcar.org |
|
|||||||||||||||||||||||||||||||
scripts: target-metadata don't add PROFILES twice Since 4ee3cf2b5a profiles with alternative vendor names may appear multiple times in `tmp/.targetinfo` or `.targetinfo` (for ImageBuilders). The `target-metadata.pl` script adds these profiles then twice to `PROFILE_NAMES` and the ImageBuilder show the profile twice when running `make info`. This patch removes duplicate profile IDs and only adds them once to `.profiles.mk`. Signed-off-by: Paul Spooren <mail@aparcar.org> |
|||||||||||||||||||||||||||||||||
4d2bb8464757... |
Jiri Slachta
jiri @slachta.eu |
|
|||||||||||||||||||||||||||||||
Merge pull request #606 from micmac1/aster-sup asterisk: revert commit + add missing dep |
|||||||||||||||||||||||||||||||||
4bbf6db9d990... |
Florian Eckert
fe @dev.tdt.de |
|
|||||||||||||||||||||||||||||||
luci-app-firewall: add limited masquerading tooltip Signed-off-by: Florian Eckert <fe@dev.tdt.de> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
476f70e9a04c... |
John Audia
graysky @archlinux.us |
|
|||||||||||||||||||||||||||||||
htop: update to 3.0.5-1 Signed-off-by: John Audia <graysky@archlinux.us> |
|||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||
41b096b44861... |
Rui Salvaterra
rsalvaterra @gmail.com |
|
|||||||||||||||||||||||||||||||
ramips: mt7621: refresh the kernel config The removed config symbols are already enabled by the generic kernel configuration (or by default), while the added ones are forcefully enabled by the specific architecture. Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com> |
|||||||||||||||||||||||||||||||||
412dc26c99be... |
Rui Salvaterra
rsalvaterra @gmail.com |
|
|||||||||||||||||||||||||||||||
kernel: make lwtunnel support optional Not everyone will want to bloat their kernel by 24 kiB for such a niche feature. Fixes: a1a7f3274e0ed27511d45f62ee20281d8d57c7af "kernel: enable SRv6 support by enabling lwtunnel" Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com> |
|||||||||||||||||||||||||||||||||
3fd070e08956... |
Felix Fietkau
nbd @nbd.name |
|
|||||||||||||||||||||||||||||||
tools/fakeroot: fix build regression on macOS AT_EMPTY_PATH and AT_NO_AUTOMOUNT does not exist there Signed-off-by: Felix Fietkau <nbd@nbd.name> |
|||||||||||||||||||||||||||||||||
3bbdc72b53ea... |
Adrian Schmutzler
freifunk @adrianschmutzler.de |
|
|||||||||||||||||||||||||||||||
ath79: remove USB port definition for TP-Link TL-WR810N v1 The USB port definition is only needed when it is linked to a USB LED. Since there is none for this device, we might as well remove the port definition. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> |
|||||||||||||||||||||||||||||||||
34e2d6e1965b... |
Hosted Weblate
hosted @weblate.org |
|
|||||||||||||||||||||||||||||||
Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (50 of 50 strings) Translation: OpenWrt/LuCI/applications/acme Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (29 of 29 strings) Translation: OpenWrt/LuCI/applications/acl Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (52 of 52 strings) Translation: OpenWrt/LuCI/applications/ttyd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (164 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (160 of 160 strings) Translation: OpenWrt/LuCI/applications/mwan3 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (173 of 173 strings) Translation: OpenWrt/LuCI/applications/aria2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (116 of 116 strings) Translation: OpenWrt/LuCI/applications/radicale Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (113 of 113 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (102 of 102 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/ Translated using Weblate (Hebrew) Currently translated at 1.6% (3 of 186 strings) Translation: OpenWrt/LuCI/applications/dockerman Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/he/ Translated using Weblate (Hebrew) Currently translated at 6.8% (2 of 29 strings) Translation: OpenWrt/LuCI/applications/acl Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/he/ Translated using Weblate (Hebrew) Currently translated at 4.5% (2 of 44 strings) Translation: OpenWrt/LuCI/applications/ser2net Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/he/ Translated using Weblate (Hebrew) Currently translated at 12.0% (3 of 25 strings) Translation: OpenWrt/LuCI/applications/ksmbd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/he/ Translated using Weblate (Hebrew) Currently translated at 10.7% (3 of 28 strings) Translation: OpenWrt/LuCI/applications/vnstat2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/he/ Translated using Weblate (Hebrew) Currently translated at 3.0% (2 of 66 strings) Translation: OpenWrt/LuCI/applications/yggdrasil Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/he/ Translated using Weblate (Hebrew) Currently translated at 3.8% (2 of 52 strings) Translation: OpenWrt/LuCI/applications/ttyd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/he/ Translated using Weblate (Hebrew) Currently translated at 5.8% (1 of 17 strings) Translation: OpenWrt/LuCI/applications/udpxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/he/ Translated using Weblate (Hebrew) Currently translated at 1.7% (3 of 169 strings) Translation: OpenWrt/LuCI/applications/travelmate Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/he/ Translated using Weblate (Hebrew) Currently translated at 28.5% (2 of 7 strings) Translation: OpenWrt/LuCI/applications/squid Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/he/ Translated using Weblate (Hebrew) Currently translated at 7.6% (1 of 13 strings) Translation: OpenWrt/LuCI/applications/shairplay Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/he/ Translated using Weblate (Hebrew) Currently translated at 2.4% (2 of 81 strings) Translation: OpenWrt/LuCI/applications/shadowsocks-libev Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/he/ Translated using Weblate (Hebrew) Currently translated at 4.8% (3 of 62 strings) Translation: OpenWrt/LuCI/applications/ocserv Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/he/ Translated using Weblate (Hebrew) Currently translated at 3.2% (4 of 123 strings) Translation: OpenWrt/LuCI/applications/nlbwmon Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/he/ Translated using Weblate (Hebrew) Currently translated at 3.5% (2 of 57 strings) Translation: OpenWrt/LuCI/applications/nft-qos Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/he/ Translated using Weblate (Hebrew) Currently translated at 4.1% (2 of 48 strings) Translation: OpenWrt/LuCI/applications/mjpg-streamer Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/he/ Translated using Weblate (Hebrew) Currently translated at 4.1% (1 of 24 strings) Translation: OpenWrt/LuCI/applications/lxc Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/he/ Translated using Weblate (Hebrew) Currently translated at 6.4% (2 of 31 strings) Translation: OpenWrt/LuCI/applications/dynapoint Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/he/ Translated using Weblate (Hebrew) Currently translated at 1.5% (1 of 65 strings) Translation: OpenWrt/LuCI/applications/dnscrypt-proxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/he/ Translated using Weblate (Hebrew) Currently translated at 12.0% (3 of 25 strings) Translation: OpenWrt/LuCI/applications/cshark Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscshark/he/ Translated using Weblate (Hebrew) Currently translated at 30.0% (12 of 40 strings) Translation: OpenWrt/LuCI/applications/clamav Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/he/ Translated using Weblate (Hebrew) Currently translated at 4.0% (2 of 49 strings) Translation: OpenWrt/LuCI/applications/bmx7 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/he/ Translated using Weblate (Hebrew) Currently translated at 0.9% (1 of 105 strings) Translation: OpenWrt/LuCI/applications/banip Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/he/ Translated using Weblate (Hebrew) Currently translated at 1.7% (3 of 173 strings) Translation: OpenWrt/LuCI/applications/aria2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/he/ Translated using Weblate (Hebrew) Currently translated at 2.7% (1 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/he/ Translated using Weblate (Hebrew) Currently translated at 1.2% (2 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/he/ Translated using Weblate (Hebrew) Currently translated at 5.1% (10 of 195 strings) Translation: OpenWrt/LuCI/applications/ddns Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/he/ Translated using Weblate (Hebrew) Currently translated at 1.5% (2 of 133 strings) Translated using Weblate (Hebrew) Currently translated at 1.9% (2 of 102 strings) Translated using Weblate (Hebrew) Currently translated at 4.1% (2 of 48 strings) Translated using Weblate (Hebrew) Currently translated at 6.1% (3 of 49 strings) Translated using Weblate (Hebrew) Currently translated at 2.5% (5 of 195 strings) Translated using Weblate (Hebrew) Currently translated at 0.5% (1 of 191 strings) Translated using Weblate (Hebrew) Currently translated at 84.8% (28 of 33 strings) Translated using Weblate (Hebrew) Currently translated at 12.5% (2 of 16 strings) Translated using Weblate (Hebrew) Currently translated at 12.1% (4 of 33 strings) Translated using Weblate (Hebrew) Currently translated at 48.6% (35 of 72 strings) Translated using Weblate (Hebrew) Currently translated at 71.4% (10 of 14 strings) Translated using Weblate (Hebrew) Currently translated at 100.0% (11 of 11 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Hebrew) Currently translated at 0.8% (3 of 337 strings) Translated using Weblate (Hebrew) Currently translated at 8.1% (3 of 37 strings) Translated using Weblate (Portuguese) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/ Translated using Weblate (Hebrew) Currently translated at 12.2% (193 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/he/ Translated using Weblate (French) Currently translated at 92.3% (12 of 13 strings) Translation: OpenWrt/LuCI/applications/hd-idle Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (186 of 186 strings) Translation: OpenWrt/LuCI/applications/dockerman Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/ Translated using Weblate (French) Currently translated at 19.8% (37 of 186 strings) Translation: OpenWrt/LuCI/applications/dockerman Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (50 of 50 strings) Translation: OpenWrt/LuCI/applications/acme Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/ Translated using Weblate (French) Currently translated at 84.0% (42 of 50 strings) Translation: OpenWrt/LuCI/applications/acme Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (63 of 63 strings) Translation: OpenWrt/LuCI/applications/frps Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/ Translated using Weblate (French) Currently translated at 100.0% (63 of 63 strings) Translation: OpenWrt/LuCI/applications/frps Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (75 of 75 strings) Translation: OpenWrt/LuCI/applications/frpc Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/ Translated using Weblate (French) Currently translated at 100.0% (75 of 75 strings) Translation: OpenWrt/LuCI/applications/frpc Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (96 of 96 strings) Translation: OpenWrt/LuCI/applications/vpn-policy-routing Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/zh_Hant/ Translated using Weblate (French) Currently translated at 47.7% (21 of 44 strings) Translation: OpenWrt/LuCI/applications/ser2net Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (25 of 25 strings) Translation: OpenWrt/LuCI/applications/ksmbd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/zh_Hant/ Translated using Weblate (French) Currently translated at 100.0% (28 of 28 strings) Translation: OpenWrt/LuCI/applications/vnstat2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/fr/ Translated using Weblate (French) Currently translated at 69.0% (38 of 55 strings) Translation: OpenWrt/LuCI/applications/https-dns-proxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (52 of 52 strings) Translation: OpenWrt/LuCI/applications/ttyd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/ Translated using Weblate (French) Currently translated at 20.6% (24 of 116 strings) Translation: OpenWrt/LuCI/applications/radicale Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/fr/ Translated using Weblate (French) Currently translated at 14.4% (18 of 125 strings) Translation: OpenWrt/LuCI/applications/privoxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/fr/ Translated using Weblate (French) Currently translated at 93.1% (149 of 160 strings) Translation: OpenWrt/LuCI/applications/mwan3 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/fr/ Translated using Weblate (French) Currently translated at 100.0% (173 of 173 strings) Translation: OpenWrt/LuCI/applications/aria2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/fr/ Translated using Weblate (French) Currently translated at 100.0% (37 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/fr/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (17 of 17 strings) Translation: OpenWrt/LuCI/applications/udpxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (7 of 7 strings) Translation: OpenWrt/LuCI/applications/squid Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (81 of 81 strings) Translation: OpenWrt/LuCI/applications/shadowsocks-libev Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (62 of 62 strings) Translation: OpenWrt/LuCI/applications/ocserv Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (20 of 20 strings) Translation: OpenWrt/LuCI/applications/ltqtapi Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (56 of 56 strings) Translation: OpenWrt/LuCI/applications/dump1090 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (26 of 26 strings) Translation: OpenWrt/LuCI/applications/dcwapd Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (49 of 49 strings) Translation: OpenWrt/LuCI/applications/bmx7 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (48 of 48 strings) Translation: OpenWrt/LuCI/applications/mjpg-streamer Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (164 of 164 strings) Translation: OpenWrt/LuCI/applications/adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (34 of 34 strings) Translation: OpenWrt/LuCI/applications/wifischedule Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (26 of 26 strings) Translation: OpenWrt/LuCI/applications/wireguard Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (27 of 27 strings) Translation: OpenWrt/LuCI/applications/vpnbypass Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (37 of 37 strings) Translation: OpenWrt/LuCI/applications/advanced-reboot Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (65 of 65 strings) Translation: OpenWrt/LuCI/applications/dnscrypt-proxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (13 of 13 strings) Translation: OpenWrt/LuCI/applications/shairplay Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (160 of 160 strings) Translation: OpenWrt/LuCI/applications/mwan3 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (173 of 173 strings) Translation: OpenWrt/LuCI/applications/aria2 Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (125 of 125 strings) Translation: OpenWrt/LuCI/applications/privoxy Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (182 of 182 strings) Translation: OpenWrt/LuCI/applications/unbound Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (57 of 57 strings) Translation: OpenWrt/LuCI/applications/nft-qos Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (123 of 123 strings) Translation: OpenWrt/LuCI/applications/nlbwmon Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (107 of 107 strings) Translation: OpenWrt/LuCI/applications/simple-adblock Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/zh_Hant/ Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (113 of 113 strings) Translated using Weblate (French) Currently translated at 44.1% (45 of 102 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (48 of 48 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (49 of 49 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (195 of 195 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (191 of 191 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (33 of 33 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (59 of 59 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (16 of 16 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (210 of 210 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (33 of 33 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (72 of 72 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (14 of 14 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (11 of 11 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (337 of 337 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (82 of 82 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (58 of 58 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (37 of 37 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (133 of 133 strings) Translated using Weblate (Chinese (Traditional)) Currently translated at 100.0% (1579 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/ Translated using Weblate (Italian) Currently translated at 42.4% (671 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/ Translated using Weblate (French) Currently translated at 96.8% (1530 of 1579 strings) Translation: OpenWrt/LuCI/modules/luci-base Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/ Co-authored-by: Amaury <y0da@live.fr> Co-authored-by: Giovanni Giacobbi <giovanni.g@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Yaron Shahrabani <sh.yaron@gmail.com> Co-authored-by: akibou <jinwenxin1997@icloud.com> Co-authored-by: ssantos <ssantos@web.de> Signed-off-by: Amaury <y0da@live.fr> Signed-off-by: Giovanni Giacobbi <giovanni.g@gmail.com> Signed-off-by: Yaron Shahrabani <sh.yaron@gmail.com> Signed-off-by: akibou <jinwenxin1997@icloud.com> Signed-off-by: ssantos <ssantos@web.de> Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/fr/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/he/ Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/zh_Hant/ Translation: OpenWrt/LuCI/applications/ahcp Translation: OpenWrt/LuCI/applications/commands Translation: OpenWrt/LuCI/applications/firewall Translation: OpenWrt/LuCI/applications/minidlna Translation: OpenWrt/LuCI/applications/ntpc Translation: OpenWrt/LuCI/applications/nut Translation: OpenWrt/LuCI/applications/olsr Translation: OpenWrt/LuCI/applications/openvpn Translation: OpenWrt/LuCI/applications/opkg Translation: OpenWrt/LuCI/applications/p910nd Translation: OpenWrt/LuCI/applications/polipo Translation: OpenWrt/LuCI/applications/radicale2 Translation: OpenWrt/LuCI/applications/samba4 Translation: OpenWrt/LuCI/applications/splash Translation: OpenWrt/LuCI/applications/statistics Translation: OpenWrt/LuCI/applications/tinyproxy Translation: OpenWrt/LuCI/applications/transmission Translation: OpenWrt/LuCI/applications/uhttpd Translation: OpenWrt/LuCI/applications/upnp Translation: OpenWrt/LuCI/applications/wol |
|||||||||||||||||||||||||||||||||
33646a51abcf... |
Rosen Penev
rosenp @gmail.com |
|
|||||||||||||||||||||||||||||||
glibc: add arc700 patch glibc does not officially support ARC700 so this adds the missing pieces. I looked at uClibc-ng and a patch by Synopsis for glibc. ran make toolchain/glibc/refresh to clean up fuzz. Signed-off-by: Rosen Penev <rosenp@gmail.com> |
|||||||||||||||||||||||||||||||||
22061b28802a... |
Sungbo Eo
mans0n @gorani.run |
|
|||||||||||||||||||||||||||||||
kernel: enable CONFIG_LEDS_TRIGGER_HEARTBEAT The heartbeat trigger is used by luci-mod-system, which is installed as a part of the standard luci package set. It seems the LED trigger will be required quite often, so let's enable it by default. This increases uncompressed kernel size by about 100 bytes on ath79/generic. Signed-off-by: Sungbo Eo <mans0n@gorani.run> |
|||||||||||||||||||||||||||||||||
218eff5bdbff... |
Sungbo Eo
mans0n @gorani.run |
|
|||||||||||||||||||||||||||||||
kernel: update kmod-thermal package CONFIG_THERMAL option was changed to boolean in upstream linux commit 554b3529fe01 ("thermal/drivers/core: Remove the module Kconfig's option"). Switch it to 'y' and remove FILES and AUTOLOAD for non-existant module file. And update the descripton text for the package as in upstream linux commit eb8504620381 ("thermal: Rephrase the Kconfig text for thermal"). Signed-off-by: Sungbo Eo <mans0n@gorani.run> |
|||||||||||||||||||||||||||||||||
1000b512465b... |
micmac1
sebastian_ml @gmx.net |
|
|||||||||||||||||||||||||||||||
Merge pull request #605 from neheb/r rtpengine: fix compilation with newer pcap |
|||||||||||||||||||||||||||||||||
05707e646010... |
Jan Alexander
jan @nalx.net |
|
|||||||||||||||||||||||||||||||
ipq806x: fix Ubiquiti UniFi AC HD partition map This fixes a typo in the previously committed partition map that led to the extension of the read-only mtd partition "SSD" into the following partitions. Fixes: 4e46beb31342 ("ipq806x: add support for Ubiquiti UniFi AC HD") Signed-off-by: Jan Alexander <jan@nalx.net> |
|||||||||||||||||||||||||||||||||