From ce602c15909a057516819bfd5bec0cf73683ee91 Mon Sep 17 00:00:00 2001 From: Tiger Date: Fri, 13 Feb 2026 09:48:38 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=87=8D=E6=96=B0=E6=B7=BB=E5=8A=A0uui?= =?UTF-8?q?d=EF=BC=8C=E9=87=8D=E6=96=B0=E5=BC=80=E5=90=AFTLS=201.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project.godot | 4 ---- scripts/autoload/DownloadManager.gd | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/project.godot b/project.godot index b434c88..4d32ea3 100644 --- a/project.godot +++ b/project.godot @@ -31,10 +31,6 @@ DownloadManager="*res://scripts/autoload/DownloadManager.gd" window/size/viewport_width=1920 window/size/viewport_height=1080 -[network] - -tls/enable_tls_v1.3=false - [rendering] renderer/rendering_method="gl_compatibility" diff --git a/scripts/autoload/DownloadManager.gd b/scripts/autoload/DownloadManager.gd index b9a3ec1..1b7e753 100644 --- a/scripts/autoload/DownloadManager.gd +++ b/scripts/autoload/DownloadManager.gd @@ -67,6 +67,8 @@ func download_from_origin() -> int: await download_file(origin + "index", "user://download/temp/index.json") + get_uuid() + await download_file(origin + "card/list", "user://download/%s/cards/list.json" % [uuid]) await download_file(origin + "reaction/list", "user://download/%s/reactions/list.json" % [uuid]) await download_file(origin + "matter/list", "user://download/%s/matters/list.json" % [uuid])