mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2026-07-18 00:29:42 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d854bb82e5 | |||
| 5cc06f5dbe | |||
| 69168078d8 | |||
| 7cdb8c92e0 |
@@ -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
@@ -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
@@ -1,4 +1,4 @@
|
||||
13.2.1 (2023-06-11)
|
||||
13.3 (2023-06-11)
|
||||
------------------------------------------------------------------------
|
||||
Fix: [Win32] use full monitor resolution for fullscreen (#10985)
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user