diff --git a/Makefile b/Makefile index 76557a60..86dad67b 100644 --- a/Makefile +++ b/Makefile @@ -111,10 +111,11 @@ android-aab-install-dependencies: android-install-dependencies linux-install-dependencies: if [ "$(flutter)" = "true" ]; then \ - wget -O ~/Downloads/flutter_linux_3.16.9-stable.tar.xz https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.16.9-stable.tar.xz; \ mkdir -p ~/develop; \ cd ~/develop; \ - tar xf ~/Downloads/flutter_linux_3.16.9-stable.tar.xz; \ + wget -O flutter_linux-stable.tar.xz https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.19.4-stable.tar.xz; \ + tar xf flutter_linux-stable.tar.xz; \ + rm flutter_linux-stable.tar.xz;\ export PATH="$$PATH:$$HOME/develop/flutter/bin"; \ echo 'export PATH="$$PATH:$$HOME/develop/flutter/bin"' >> ~/.bashrc; \ fi diff --git a/assets/translations/strings_zh-TW.i18n.json b/assets/translations/strings_zh-TW.i18n.json index 91bbf40a..70961903 100644 --- a/assets/translations/strings_zh-TW.i18n.json +++ b/assets/translations/strings_zh-TW.i18n.json @@ -303,7 +303,7 @@ "misc": "其他選項" }, "warpConsent": { - "title": "Cloudflare WARP 許可條款", + "title": "Cloudflare WARP 許可條款" }, "generateWarpConfig": "生成 WARP 配置檔案", "missingWarpConfig": "WARP 配置檔案缺失", diff --git a/libcore b/libcore index c609030b..3d3b4e46 160000 --- a/libcore +++ b/libcore @@ -1 +1 @@ -Subproject commit c609030b92c70c2b08fa58f9077b375b058dfd7b +Subproject commit 3d3b4e4625ba03ef30b76f6325d11e7e7ff26b6a diff --git a/web/icon.png b/web/icon.png new file mode 100644 index 00000000..453bdad7 Binary files /dev/null and b/web/icon.png differ diff --git a/web/index.html b/web/index.html new file mode 100755 index 00000000..cb4d0888 --- /dev/null +++ b/web/index.html @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + myapp + + + + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100755 index 00000000..7b0799dc --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,18 @@ +{ + "name": "Hiddify", + "short_name": "Hiddify", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "Hiddify", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icon.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}