diff --git a/manifest.xml b/manifest.xml index a87e6f88..899bfbea 100644 --- a/manifest.xml +++ b/manifest.xml @@ -2,10 +2,10 @@ - + - + @@ -34,7 +34,7 @@ - + @@ -45,7 +45,7 @@ - + @@ -84,7 +84,7 @@ - + @@ -127,9 +127,9 @@ - + - + @@ -145,10 +145,10 @@ - + - + @@ -193,15 +193,15 @@ - - + + - + @@ -215,35 +215,42 @@ - + - + - + - - - - + + + + - + - - + + - + - - - + + + + + + + + + + @@ -253,9 +260,15 @@ - - - + + + + + + + + + @@ -286,6 +299,9 @@ + + + diff --git a/runtime/Path{space}of{space}Building.exe b/runtime/Path{space}of{space}Building.exe index 3f460b93..f20beb0c 100644 Binary files a/runtime/Path{space}of{space}Building.exe and b/runtime/Path{space}of{space}Building.exe differ diff --git a/runtime/SimpleGraphic.dll b/runtime/SimpleGraphic.dll index a976e84b..3314b5f4 100644 Binary files a/runtime/SimpleGraphic.dll and b/runtime/SimpleGraphic.dll differ diff --git a/runtime/abseil_dll.dll b/runtime/abseil_dll.dll new file mode 100644 index 00000000..d0688b78 Binary files /dev/null and b/runtime/abseil_dll.dll differ diff --git a/runtime/concrt140.dll b/runtime/concrt140.dll new file mode 100644 index 00000000..402b6aba Binary files /dev/null and b/runtime/concrt140.dll differ diff --git a/runtime/fmt.dll b/runtime/fmt.dll new file mode 100644 index 00000000..cfd2b6e6 Binary files /dev/null and b/runtime/fmt.dll differ diff --git a/runtime/glfw3.dll b/runtime/glfw3.dll new file mode 100644 index 00000000..ef91d89e Binary files /dev/null and b/runtime/glfw3.dll differ diff --git a/runtime/lcurl.dll b/runtime/lcurl.dll index 2ed9cf03..f856b5ee 100644 Binary files a/runtime/lcurl.dll and b/runtime/lcurl.dll differ diff --git a/runtime/libEGL.dll b/runtime/libEGL.dll new file mode 100644 index 00000000..d7a7f368 Binary files /dev/null and b/runtime/libEGL.dll differ diff --git a/runtime/libGLESv2.dll b/runtime/libGLESv2.dll new file mode 100644 index 00000000..625e7583 Binary files /dev/null and b/runtime/libGLESv2.dll differ diff --git a/runtime/libcurl.dll b/runtime/libcurl.dll index 260ab19f..af10dc5d 100644 Binary files a/runtime/libcurl.dll and b/runtime/libcurl.dll differ diff --git a/runtime/libsodium.dll b/runtime/libsodium.dll new file mode 100644 index 00000000..fcd6348b Binary files /dev/null and b/runtime/libsodium.dll differ diff --git a/runtime/lua51.dll b/runtime/lua51.dll index e112cd3f..8717d86f 100644 Binary files a/runtime/lua51.dll and b/runtime/lua51.dll differ diff --git a/runtime/lzip.dll b/runtime/lzip.dll index 40972a0f..30d7b1e5 100644 Binary files a/runtime/lzip.dll and b/runtime/lzip.dll differ diff --git a/runtime/msvcp140.dll b/runtime/msvcp140.dll new file mode 100644 index 00000000..ce86727d Binary files /dev/null and b/runtime/msvcp140.dll differ diff --git a/runtime/msvcp140_1.dll b/runtime/msvcp140_1.dll new file mode 100644 index 00000000..fa8f9faa Binary files /dev/null and b/runtime/msvcp140_1.dll differ diff --git a/runtime/msvcp140_2.dll b/runtime/msvcp140_2.dll new file mode 100644 index 00000000..70cb3d5d Binary files /dev/null and b/runtime/msvcp140_2.dll differ diff --git a/runtime/msvcp140_atomic_wait.dll b/runtime/msvcp140_atomic_wait.dll new file mode 100644 index 00000000..0d36920f Binary files /dev/null and b/runtime/msvcp140_atomic_wait.dll differ diff --git a/runtime/msvcp140_codecvt_ids.dll b/runtime/msvcp140_codecvt_ids.dll new file mode 100644 index 00000000..bea62520 Binary files /dev/null and b/runtime/msvcp140_codecvt_ids.dll differ diff --git a/runtime/msvcr100.dll b/runtime/msvcr100.dll deleted file mode 100644 index 3e82b1ae..00000000 Binary files a/runtime/msvcr100.dll and /dev/null differ diff --git a/runtime/re2.dll b/runtime/re2.dll new file mode 100644 index 00000000..a0c9cbbf Binary files /dev/null and b/runtime/re2.dll differ diff --git a/runtime/vcruntime140.dll b/runtime/vcruntime140.dll new file mode 100644 index 00000000..e23644a5 Binary files /dev/null and b/runtime/vcruntime140.dll differ diff --git a/runtime/vcruntime140_1.dll b/runtime/vcruntime140_1.dll new file mode 100644 index 00000000..39c0ca97 Binary files /dev/null and b/runtime/vcruntime140_1.dll differ diff --git a/runtime/zlib1.dll b/runtime/zlib1.dll new file mode 100644 index 00000000..ac873835 Binary files /dev/null and b/runtime/zlib1.dll differ diff --git a/update_manifest.py b/update_manifest.py index 910ea823..dbffcda3 100644 --- a/update_manifest.py +++ b/update_manifest.py @@ -84,7 +84,7 @@ def create_manifest(version: str | None = None, replace: bool = False) -> None: url = base_url + config[part]["path"] url_with_trailing_slash = url if url.endswith("/") else url + "/" attributes = ( - {"part": part, "platform": "win32", "url": url_with_trailing_slash} + {"part": part, "platform": "win64", "url": url_with_trailing_slash} if part == "runtime" else {"part": part, "url": url_with_trailing_slash} ) @@ -111,7 +111,7 @@ def create_manifest(version: str | None = None, replace: bool = False) -> None: sha1 = hashlib.sha1(data).hexdigest() name = path.relative_to(config[section]["path"]).as_posix() attributes = ( - {"name": name, "part": section, "runtime": "win32", "sha1": sha1} + {"name": name, "part": section, "runtime": "win64", "sha1": sha1} if path.suffix in [".dll", ".exe"] else {"name": name, "part": section, "sha1": sha1} )