From a09f3335221a8b43eaabd289355269cd38fc5c5f Mon Sep 17 00:00:00 2001 From: Rye Date: Sun, 27 Oct 2024 19:02:55 -0700 Subject: Update KDU to 8.4.1 and fix kdu tests, also fix llimage_libtest utility --- autobuild.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'autobuild.xml') diff --git a/autobuild.xml b/autobuild.xml index a508f207d1..e7d8d84e6a 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -1046,11 +1046,11 @@ creds github hash - ad72fa1d103df777906f0d98f3e882b9916aeada + 243709fbbb58a91dca81d16df650e9c6ff910d0d hash_algorithm sha1 url - https://api.github.com/repos/secondlife/3p-kdu/releases/assets/136774118 + https://api.github.com/repos/secondlife/3p-kdu/releases/assets/202118207 name darwin64 @@ -1062,11 +1062,11 @@ creds github hash - e46e4ac93a237b5c4a14183766f76ba5d58935a2 + 7fd0a7ee71a4e76b49e31b75f8622852324d58a4 hash_algorithm sha1 url - https://api.github.com/repos/secondlife/3p-kdu/releases/assets/136774125 + https://api.github.com/repos/secondlife/3p-kdu/releases/assets/202118208 name linux64 @@ -1078,11 +1078,11 @@ creds github hash - bb37557f78c72b26580a521f8b8dabfa1b34e6e6 + 8c475dd9616c7e0e3029cc38aefc1e0ab34d2e73 hash_algorithm sha1 url - https://api.github.com/repos/secondlife/3p-kdu/releases/assets/136774126 + https://api.github.com/repos/secondlife/3p-kdu/releases/assets/202118209 name windows64 @@ -1095,7 +1095,7 @@ copyright Kakadu software version - 7.10.4.4b9ec5f + 8.4.1.11540433907 name kdu description -- cgit v1.2.3 From d425c0a28ec05fe655d91e34e5ea0ca9f2c26dd7 Mon Sep 17 00:00:00 2001 From: Rye Cogtail Date: Tue, 22 Oct 2024 17:22:27 -0400 Subject: Introduce NFDE file picker support for linux and SDL --- autobuild.xml | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) (limited to 'autobuild.xml') diff --git a/autobuild.xml b/autobuild.xml index e7d8d84e6a..2c47571692 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -1914,6 +1914,68 @@ description NanoSVG is a simple single-header-file SVG parser and rasterizer + nfde + + platforms + + linux64 + + archive + + hash + 4d23e53790c8e82c737a3f5df8cddc40b864257d + hash_algorithm + sha1 + url + https://github.com/secondlife/3p-nfde/releases/download/v1.2.1-r1/nfde-1.2.1-r1-linux64-11465721541.tar.zst + + name + linux64 + + darwin64 + + archive + + hash + 9ec692bdc93c4f2aa1f2951b71ee4a5737e43bc9 + hash_algorithm + sha1 + url + https://github.com/secondlife/3p-nfde/releases/download/v1.2.1-r1/nfde-1.2.1-r1-darwin64-11465721541.tar.zst + + name + darwin64 + + windows64 + + archive + + hash + 65c88f9e849a4a460f0b051f884f9df0608dd389 + hash_algorithm + sha1 + url + https://github.com/secondlife/3p-nfde/releases/download/v1.2.1-r1/nfde-1.2.1-r1-windows64-11465721541.tar.zst + + name + windows64 + + + license + zlib + license_file + LICENSES/nfde.txt + copyright + Copyright (C) The nativefiledialog-extended authors + version + 1.2.1-r1 + name + nfde + canonical_repo + https://github.com/secondlife/3p-nfde + description + Cross platform (Windows, Mac, Linux) native file dialog library with C and C++ bindings, based on mlabbe/nativefiledialog. + nghttp2 platforms -- cgit v1.2.3 From 0ae72a24eb07bbb2cb15402c6b85b53ab50a6d7a Mon Sep 17 00:00:00 2001 From: Rye Date: Mon, 14 Oct 2024 22:15:43 -0700 Subject: Try to parallelize xcode builds further and add more headers to PCH to reduce build time --- autobuild.xml | 44 ++++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 20 deletions(-) (limited to 'autobuild.xml') diff --git a/autobuild.xml b/autobuild.xml index 2c47571692..42d3465346 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -3147,14 +3147,15 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors build command - xcodebuild + cmake options - -configuration + --build + . + --config RelWithDebInfo - -project - SecondLife.xcodeproj - -parallelizeTargets + --parallel + $AUTOBUILD_CPU_COUNT default @@ -3175,14 +3176,15 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors build command - xcodebuild + cmake options - -configuration + --build + . + --config RelWithDebInfo - -project - SecondLife.xcodeproj - -parallelizeTargets + --parallel + $AUTOBUILD_CPU_COUNT name @@ -3205,14 +3207,15 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors build command - xcodebuild + cmake options - -configuration + --build + . + --config Release - -project - SecondLife.xcodeproj - -parallelizeTargets + --parallel + $AUTOBUILD_CPU_COUNT name @@ -3231,14 +3234,15 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors build command - xcodebuild + cmake options - -configuration + --build + . + --config Release - -project - SecondLife.xcodeproj - -parallelizeTargets + --parallel + $AUTOBUILD_CPU_COUNT name -- cgit v1.2.3 From 03231789c016245cdc93d154502c879386030de1 Mon Sep 17 00:00:00 2001 From: Rye Date: Wed, 6 Nov 2024 10:41:41 -0500 Subject: Update Tracy to 0.11.1 --- autobuild.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'autobuild.xml') diff --git a/autobuild.xml b/autobuild.xml index 42d3465346..60a2453520 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -2568,11 +2568,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors archive hash - 226225ec049826c35adc5e897e0398ed64d4bedb + 0c3d01b7e9e39c23f0f40c56a1a04d1fba08ead0 hash_algorithm sha1 url - https://github.com/secondlife/3p-tracy/releases/download/v0.11.0%2Br1/tracy-v0.11.0.10376230034-darwin64-10376230034.tar.zst + https://github.com/secondlife/3p-tracy/releases/download/v0.11.1-r1/tracy-v0.11.1.11706699176-darwin64-11706699176.tar.zst name darwin64 @@ -2582,11 +2582,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors archive hash - 8c5429d1a1486f40cf7e5e88a232222d1fa4f78e + b46cef5646a8d0471ab6256fe5119220fa238772 hash_algorithm sha1 url - https://github.com/secondlife/3p-tracy/releases/download/v0.11.0%2Br1/tracy-v0.11.0.10376230034-windows64-10376230034.tar.zst + https://github.com/secondlife/3p-tracy/releases/download/v0.11.1-r1/tracy-v0.11.1.11706699176-windows64-11706699176.tar.zst name windows64 @@ -2596,11 +2596,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors archive hash - ed0664a009aba1dcf1246d845839f524e857162e + beab04c9ea6036b1851a485b65c66cf6a38f0be4 hash_algorithm sha1 url - https://github.com/secondlife/3p-tracy/releases/download/v0.11.0%2Br1/tracy-v0.11.0.10376230034-linux64-10376230034.tar.zst + https://github.com/secondlife/3p-tracy/releases/download/v0.11.1-r1/tracy-v0.11.1.11706699176-linux64-11706699176.tar.zst name linux64 @@ -2613,7 +2613,7 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors copyright Copyright (c) 2017-2024, Bartosz Taudul (wolf@nereid.pl) version - v0.11.0.10376230034 + v0.11.1.11706699176 name tracy canonical_repo -- cgit v1.2.3