update-01.10

This commit is contained in:
github-actions[bot] 2022-01-10 09:06:21 +08:00
parent 9ca977f1bd
commit c70bcea65f
5 changed files with 8813 additions and 8807 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-09-19 18:03+0000\n"
"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
"PO-Revision-Date: 2022-01-08 22:54+0000\n"
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/pl/>\n"
"Language: pl\n"
@ -9,7 +9,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.3-dev\n"
"X-Generator: Weblate 4.10.1\n"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155
@ -55,15 +55,15 @@ msgstr "Domyślna jednostka szybkości wysyłania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Default value for download bandwidth"
msgstr "Wartość domyślna dla przepustowości pobierania"
msgstr "Wartość domyślna przepustowości pobierania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default value for download rate"
msgstr "Wartość domyślna dla szybkości pobierania"
msgstr "Wartość domyślna szybkości pobierania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Default value for upload bandwidth"
msgstr "Wartość domyślna dla przepustowości wysyłania"
msgstr "Wartość domyślna przepustowości wysyłania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default value for upload rate"

View File

@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-openclash
PKG_VERSION:=0.44.08
PKG_VERSION:=0.44.09
PKG_RELEASE:=beta
PKG_MAINTAINER:=vernesong <https://github.com/vernesong/OpenClash>

View File

@ -233,10 +233,12 @@ yml_vmess_compatible()
if not x.key?('ws-opts') then
x['ws-opts'] = {'path'=>x['ws-path'].to_s}
else
if not x['ws-opts'].key?('path') then
x['ws-opts']['path'] = {x['ws-path'].to_s}
elsif x['ws-opts']['path'].empty? then
x['ws-opts']['path'].update({x['ws-path'].to_s})
if x['ws-opts'].nil? then
x['ws-opts'] = {'path'=>x['ws-path'].to_s}
elsif x['ws-opts']['path'].nil? then
x['ws-opts'].update({'path'=>x['ws-path'].to_s})
else
x['ws-opts']['path'].update(x['ws-path'].to_s)
end
end
x.delete('ws-path')
@ -247,9 +249,11 @@ yml_vmess_compatible()
if not x.key?('ws-opts') then
x['ws-opts'] = {'headers'=>{v.to_s=>x['ws-headers'][v].to_s}}
else
if not x['ws-opts'].key?('headers') then
x['ws-opts']['headers'] = {v.to_s=>x['ws-headers'][v].to_s}
elsif x['ws-opts']['headers'].empty? then
if x['ws-opts'].nil? then
x['ws-opts'] = {'headers'=>{v.to_s=>x['ws-headers'][v].to_s}}
elsif x['ws-opts']['headers'].nil? then
x['ws-opts'].update({'headers'=>{v.to_s=>x['ws-headers'][v].to_s}})
else
x['ws-opts']['headers'].update({v.to_s=>x['ws-headers'][v].to_s})
end
end

File diff suppressed because one or more lines are too long