From e89ce5cc62b21a54cf932372c8c35d811e72ff0f Mon Sep 17 00:00:00 2001 From: soundmud Date: Fri, 19 Jan 2024 17:11:14 +0100 Subject: [PATCH] 1.3.8 --- doc_src/src/en/relnotes.rst | 25 +++++++++++++++++++++++++ soundrts/version.py | 4 ++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/doc_src/src/en/relnotes.rst b/doc_src/src/en/relnotes.rst index 22e4bce1..d18c5a62 100644 --- a/doc_src/src/en/relnotes.rst +++ b/doc_src/src/en/relnotes.rst @@ -4,6 +4,31 @@ Release notes .. contents:: +1.3.8 +----- + +For multiplayer games, this version requires: + +- client: 1.3.8 or later +- server: 1.2-c12 or later + +Main changes from 1.3.7: + +- added tts_digit_coefficient in cfg/parameters.toml + +Bugs fixed: + +- paths between ground and water will be kept if both squares are ground +- units will flee to the previous square more often +- properly handle replay files that are not timestamps (thanks to dnl-nash) +- send bug reports only if the client is an executable + +Translations: + +- added Belarusian translation (thanks to Uladzimir) +- updated Slovak translation (thanks to Marco Oros) + + 1.3.7 ----- diff --git a/soundrts/version.py b/soundrts/version.py index b113a1b4..7e7c6d0f 100644 --- a/soundrts/version.py +++ b/soundrts/version.py @@ -3,9 +3,9 @@ from . import config from .lib.resource import res -VERSION = "1.3.7" +VERSION = "1.3.8" IS_DEV_VERSION = config.debug_mode -CLIENT_COMPATIBILITY = "14" +CLIENT_COMPATIBILITY = "15" SERVER_COMPATIBILITY = "0"