summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Arehart <tarehart@gmail.com>2021-08-25 19:36:48 -0700
committerTyler Arehart <tarehart@gmail.com>2021-08-25 19:36:48 -0700
commit6c8101f582ad52bc717de5ef44db5122679a85c0 (patch)
tree3d788e8e3254688d4f99a9c68cbbcae569b717d3
parentb836600054719b6c57217b42ab8a66b242a47ae1 (diff)
Using Epic login tricks by default.tricks
-rw-r--r--src/main/python/rlbot/setup_manager.py4
-rw-r--r--src/main/python/rlbot/version.py5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/main/python/rlbot/setup_manager.py b/src/main/python/rlbot/setup_manager.py
index 5af8b9a1..6f538a82 100644
--- a/src/main/python/rlbot/setup_manager.py
+++ b/src/main/python/rlbot/setup_manager.py
@@ -77,8 +77,8 @@ class RocketLeagueLauncherPreference:
use_login_tricks: bool
-# By default, we will attempt Epic with no login tricks, then fall back to Steam.
-DEFAULT_LAUNCHER_PREFERENCE = RocketLeagueLauncherPreference(RocketLeagueLauncherPreference.EPIC, False)
+# By default, we will attempt Epic with login tricks, then fall back to Steam.
+DEFAULT_LAUNCHER_PREFERENCE = RocketLeagueLauncherPreference(RocketLeagueLauncherPreference.EPIC, True)
@contextmanager
diff --git a/src/main/python/rlbot/version.py b/src/main/python/rlbot/version.py
index d5c5c1df..c5303b71 100644
--- a/src/main/python/rlbot/version.py
+++ b/src/main/python/rlbot/version.py
@@ -4,12 +4,13 @@
# 3) we can import it into your module module
# https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
-__version__ = '1.58.0'
+__version__ = '1.58.1'
release_notes = {
- '1.58.0': """
+ '1.58.1': """
Bots with python virtual environments will start up much faster. - VirxEC
Bots can now have descriptive tags for better organization in RLBotGUI. - Darxeal
+ Fixing bug where python launch scripts stopped working for Epic users. - tarehart
""",
'1.57.0': """
Scripts now have access to the matchcomms system, thanks to Will!