From 720ada11fe893462b9b55d7038abc71fbf5b7365 Mon Sep 17 00:00:00 2001 From: Un1q32 Date: Fri, 25 Apr 2025 21:16:40 -0400 Subject: [PATCH] explicitly set the version of oc2r-native-networking to download We plan to change the ABI of the native library soon, and if the build can only download the latest version, it will be impossible to build commits before the change once the release goes through. This will mess with anymore maintaining a fork based on an older version. Updates to the native networking module will probobly be extremely uncommon anyway, so I don't see having to manually bump the version being a major hassle. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 56396882..22163a2b 100644 --- a/build.gradle +++ b/build.gradle @@ -145,7 +145,7 @@ tasks.register("downloadNativeLibs") { group = "build setup" doLast { def repo = "North-Western-Development/oc2r-native-networking" - def baseUrl = "https://github.com/${repo}/releases/latest/download/" + def baseUrl = "https://github.com/${repo}/releases/download/1.0.1" def targets = [ "macos/liboc2rnet-x86_64.dylib",