Compare commits

...

4 Commits

Author SHA1 Message Date
glx22 d854bb82e5 Doc: Changelog for 13.3 2023-06-11 17:03:58 +02:00
glx22 5cc06f5dbe Doc: Bump release version. 2023-06-11 17:03:58 +02:00
glx22 69168078d8 Revert ee6e30e: pretending 13.2.1 was 13.2 didn't work
This reverts commit ee6e30ead9.
2023-06-11 17:03:58 +02:00
Owen Rudge 7cdb8c92e0 Change: [Actions] Upgrade import-codesign-certs dependency in macOS build workflow 2023-06-11 16:41:13 +02:00
4 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ jobs:
echo "::endgroup::"
- name: Import code signing certificates
uses: Apple-Actions/import-codesign-certs@v1
uses: Apple-Actions/import-codesign-certs@v2
with:
# The certificates in a PKCS12 file encoded as a base64 string
p12-file-base64: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_P12_BASE64 }}
+1 -1
View File
@@ -5,7 +5,7 @@ if(NOT BINARY_NAME)
endif()
project(${BINARY_NAME}
VERSION 13.2
VERSION 13.3
)
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
+1 -1
View File
@@ -1,4 +1,4 @@
13.2.1 (2023-06-11)
13.3 (2023-06-11)
------------------------------------------------------------------------
Fix: [Win32] use full monitor resolution for fullscreen (#10985)
-4
View File
@@ -47,10 +47,6 @@ std::string_view GetNetworkRevisionString()
if (network_revision.empty()) {
network_revision = _openttd_revision;
if (_openttd_revision_tagged) {
/* 13.2.1 is a fix-release with only a single change in the Win32 video driver.
* As such, it is safe to call it 13.2 from a networking point of view. */
if (network_revision == "13.2.1") network_revision = "13.2";
/* Tagged; do not mangle further, though ensure it's not too long. */
if (network_revision.size() >= NETWORK_REVISION_LENGTH) network_revision.resize(NETWORK_REVISION_LENGTH - 1);
} else {