From 05f9adafbc87d468ea758fc036c48d3e712696ef Mon Sep 17 00:00:00 2001 From: soundmud Date: Sat, 14 Sep 2024 15:31:06 +0200 Subject: [PATCH] 1.3.8.1 --- README.txt | 4 ++-- doc_src/src/en/relnotes.rst | 19 +++++++++++++++++++ soundrts/version.py | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/README.txt b/README.txt index de3cafe7..38f26074 100644 --- a/README.txt +++ b/README.txt @@ -5,7 +5,7 @@ Feel free to experiment on the code base, but don't feel obliged to contribute b The license for the Python source code is a BSD 3-clause license (LICENSE.txt). The license for the rest is unclear at the moment. -Tested with Python 3.8. +Tested with Python 3.11. To install the requirements: pip install -r requirements.txt -U @@ -25,4 +25,4 @@ Building a package requires also: Testing requires: * pytest -Official SoundRTS web site: http://jlpo.free.fr/soundrts \ No newline at end of file +Official SoundRTS web site: http://jlpo.free.fr/soundrts diff --git a/doc_src/src/en/relnotes.rst b/doc_src/src/en/relnotes.rst index d18c5a62..2533af20 100644 --- a/doc_src/src/en/relnotes.rst +++ b/doc_src/src/en/relnotes.rst @@ -4,6 +4,25 @@ Release notes .. contents:: +1.3.8.1 +------- + +For multiplayer games, this version requires: + +- client: 1.3.8 or later +- server: 1.2-c12 or later + +Main changes from 1.3.8: + +Bugs fixed: + +- in a restored game, the R key would select any soldier (thanks to Marco Oros for reporting the bug) +- when building a menu takes too much time, repeated keys would accumulate +- hopefully avoid any volume glitch when a sound source is created +- custom maps will appear after official maps +- running server.py doesn't require any package + + 1.3.8 ----- diff --git a/soundrts/version.py b/soundrts/version.py index 7e7c6d0f..049061a9 100644 --- a/soundrts/version.py +++ b/soundrts/version.py @@ -3,7 +3,7 @@ from . import config from .lib.resource import res -VERSION = "1.3.8" +VERSION = "1.3.8.1" IS_DEV_VERSION = config.debug_mode CLIENT_COMPATIBILITY = "15" SERVER_COMPATIBILITY = "0"