From 9e8e06aac79a94d235bdf8fb1d7e922aa616c758 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Thu, 31 Aug 2023 16:54:16 +0200 Subject: [PATCH] Fix formatting of `compatibility_minimum` Without quotes the values is parsed as a float, breaking in various cases. --- demo/bin/example.gdextension | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/bin/example.gdextension b/demo/bin/example.gdextension index 1d266cf..99c1746 100644 --- a/demo/bin/example.gdextension +++ b/demo/bin/example.gdextension @@ -1,7 +1,7 @@ [configuration] entry_symbol = "example_library_init" -compatibility_minimum = 4.1 +compatibility_minimum = "4.1" [libraries] @@ -20,4 +20,4 @@ linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so" android.debug.x86_64 = "res://bin/libgdexample.android.template_debug.x86_64.so" android.release.x86_64 = "res://bin/libgdexample.android.template_release.x86_64.so" android.debug.arm64 = "res://bin/libgdexample.android.template_debug.arm64.so" -android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so" \ No newline at end of file +android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"