diff --git a/mod/stellaris_dashboard/descriptor.mod b/mod/stellaris_dashboard/descriptor.mod index c609926..3ead280 100644 --- a/mod/stellaris_dashboard/descriptor.mod +++ b/mod/stellaris_dashboard/descriptor.mod @@ -1,5 +1,5 @@ name="Stellaris Dashboard" -version="v6.5.1" +version="v6.5.2" tags={ "Utilities" "Gameplay" diff --git a/mod/stellaris_dashboard/interface/main_bottom.gui b/mod/stellaris_dashboard/interface/main_bottom.gui index 427d836..809bbe3 100644 --- a/mod/stellaris_dashboard/interface/main_bottom.gui +++ b/mod/stellaris_dashboard/interface/main_bottom.gui @@ -476,7 +476,7 @@ guiTypes = { pdx_tooltip = "STELLARIS_DASHBOARD_TOOLTIP" pdx_tooltip_anchor_offset = { x= 0 y = @tt_offset_y } pdx_tooltip_anchor_orientation = lower_left - web_link="http://127.0.0.1:28053/checkversion/v6.5.1" + web_link="http://127.0.0.1:28053/checkversion/v6.5.2" } iconType = { diff --git a/stellarisdashboard/dashboard_app/utils.py b/stellarisdashboard/dashboard_app/utils.py index 8142ce9..609f6d4 100644 --- a/stellarisdashboard/dashboard_app/utils.py +++ b/stellarisdashboard/dashboard_app/utils.py @@ -7,7 +7,7 @@ logger = logging.getLogger(__name__) -VERSION = "v6.5.1" +VERSION = "v6.5.2" def parse_version(version: str): diff --git a/stellarisdashboard/parsing/timeline.py b/stellarisdashboard/parsing/timeline.py index 8da653f..6e592ea 100644 --- a/stellarisdashboard/parsing/timeline.py +++ b/stellarisdashboard/parsing/timeline.py @@ -1128,7 +1128,7 @@ def _check_known_leaders(self, db_active_leaders: Dict[int, datamodel.Leader]): country = self._countries_by_ingame_id.get(leader_dict.get("country")) self._update_leader_attributes(country=country, leader=leader, leader_dict=leader_dict) if not leader.is_active: - country_data = leader.country.get_most_recent_data() + country_data = leader.country.get_most_recent_data() if leader.country is not None else None self._session.add( datamodel.HistoricalEvent( event_type=datamodel.HistoricalEventType.leader_died,