add 2.2074 timestamp (#1143)
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions

This commit is contained in:
Oleksandr Nemesh 2024-11-12 13:53:15 +02:00 committed by GitHub
parent 00cc510d5b
commit 0ee9aebdee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 4 deletions

View file

@ -189,10 +189,8 @@ include(cmake/Platform.cmake)
include(cmake/GeodeFile.cmake)
if (NOT DEFINED GEODE_GD_VERSION)
# this is incorrect!
# Android and iOS are on 2.2074 so please fix when 2.2074 releases for desktop :(
set(GEODE_GD_VERSION 2.2073)
set(GEODE_COMP_GD_VERSION 22073)
set(GEODE_GD_VERSION 2.2074)
set(GEODE_COMP_GD_VERSION 22074)
endif()
target_compile_definitions(

View file

@ -36,6 +36,7 @@ static auto const& getGDVersionTimestampMap() {
{ 1731117052, "2.2071" },
{ 1731130219, "2.2072" },
{ 1731156923, "2.2073" },
{ 1731376950, "2.2074" },
};
return map;
}