Version 14.3.1

This commit is contained in:
def 2020-08-10 23:43:10 +02:00
parent 3108b51ff1
commit e0c06464d2
5 changed files with 13 additions and 4 deletions

View file

@ -1275,6 +1275,7 @@ set(COPY_FILES
${FREETYPE_COPY_FILES}
${OPUSFILE_COPY_FILES}
${SDL2_COPY_FILES}
${SQLite3_COPY_FILES}
${FFMPEG_COPY_FILES}
)
file(COPY ${COPY_FILES} DESTINATION .)

View file

@ -34,4 +34,11 @@ if(SQLite3_FOUND)
is_bundled(SQLite3_BUNDLED "${SQLite3_LIBRARY}")
set(SQLite3_LIBRARIES ${SQLite3_LIBRARY})
set(SQLite3_INCLUDE_DIRS ${SQLite3_INCLUDEDIR})
is_bundled(SQLite3_BUNDLED "${SQLite3_LIBRARY}")
if(SQLite3_BUNDLED AND TARGET_OS STREQUAL "windows")
set(SQLite3_COPY_FILES "${EXTRA_SQLite3_LIBDIR}/sqlite3.dll")
else()
set(SQLite3_COPY_FILES)
endif()
endif()

@ -1 +1 @@
Subproject commit 0dcb70fb521ef86d1be6bc4a3dc3c137d0d28bca
Subproject commit e78649088d0c211c011086db65adf6d737733994

View file

@ -37,6 +37,7 @@
<content_attribute id="social-chat">intense</content_attribute>
</content_rating>
<releases>
<release date="2020-08-11" version="14.3.1"/>
<release date="2020-08-10" version="14.3"/>
<release date="2020-07-10" version="14.2"/>
<release date="2020-06-30" version="14.1"/>

View file

@ -2,10 +2,10 @@
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef GAME_VERSION_H
#define GAME_VERSION_H
#define GAME_VERSION "0.6.4, 14.3"
#define GAME_VERSION "0.6.4, 14.3.1"
#define GAME_NETVERSION "0.6 626fce9a778df4d4"
#define GAME_NAME "DDNet"
#define GAME_RELEASE_VERSION "14.3"
#define CLIENT_VERSIONNR 14030
#define GAME_RELEASE_VERSION "14.3.1"
#define CLIENT_VERSIONNR 14031
extern const char *GIT_SHORTREV_HASH;
#endif