From af9fcb7a97055961c2929a4cc862dd5ef7b2dc38 Mon Sep 17 00:00:00 2001 From: Kraust Date: Mon, 4 Mar 2024 21:04:08 -0500 Subject: [PATCH] Fixed a bug with the League Standings Page not displaying all Maps. (#22) * Temporarily added back in [Solo] tag so I can cut a release. * Incremented version --- OSCRUI/leagueconnector.py | 2 +- main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/OSCRUI/leagueconnector.py b/OSCRUI/leagueconnector.py index 3d6695e..d7d4d75 100644 --- a/OSCRUI/leagueconnector.py +++ b/OSCRUI/leagueconnector.py @@ -38,7 +38,7 @@ def fetch_and_insert_maps(self): if ladders is not None: self.widgets.ladder_map.clear() for ladder in ladders.results: - solo = '' # '[Solo] ' if ladder.is_solo else '' + solo = '[Solo] ' if ladder.is_solo else '' key = f'{solo}{ladder.metric} - {ladder.name} ({ladder.difficulty})' self.league_api.ladder_dict[key] = ladder self.widgets.ladder_map.addItem(key) diff --git a/main.py b/main.py index 8853bc4..43c7e6b 100644 --- a/main.py +++ b/main.py @@ -5,7 +5,7 @@ class Launcher(): - version = '2024.03a040' + version = '2024.03a041' # holds the style of the app theme = {