diff --git a/mod/stellaris_dashboard/descriptor.mod b/mod/stellaris_dashboard/descriptor.mod index 7940177..c609926 100644 --- a/mod/stellaris_dashboard/descriptor.mod +++ b/mod/stellaris_dashboard/descriptor.mod @@ -1,5 +1,5 @@ name="Stellaris Dashboard" -version="v6.5" +version="v6.5.1" tags={ "Utilities" "Gameplay" diff --git a/mod/stellaris_dashboard/interface/main_bottom.gui b/mod/stellaris_dashboard/interface/main_bottom.gui index 9061b74..427d836 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" + web_link="http://127.0.0.1:28053/checkversion/v6.5.1" } iconType = { diff --git a/stellarisdashboard/dashboard_app/templates/history_page.html b/stellarisdashboard/dashboard_app/templates/history_page.html index 4c1133d..dec2101 100644 --- a/stellarisdashboard/dashboard_app/templates/history_page.html +++ b/stellarisdashboard/dashboard_app/templates/history_page.html @@ -730,7 +730,7 @@

{{title[object] | safe}}

{% if event["is_active"] %}(A){% endif %} {{event["start_date"]}}{% if event["end_date"] != null %} - {{event["end_date"]}}{%endif%}: {{ render_leader(event, "An unknown leader") }} - {% if event["fleat"].is_civilian_fleet %} commanded {% else %} led {% endif %} the + {% if event["fleet"].is_civilian_fleet %} commanded {% else %} led {% endif %} the {% if event["fleet"].is_civilian_fleet %} science ship {% else %} fleet {% endif %} "{{ event["fleet"].rendered_name }}". diff --git a/stellarisdashboard/dashboard_app/utils.py b/stellarisdashboard/dashboard_app/utils.py index f74f1cb..8142ce9 100644 --- a/stellarisdashboard/dashboard_app/utils.py +++ b/stellarisdashboard/dashboard_app/utils.py @@ -7,7 +7,7 @@ logger = logging.getLogger(__name__) -VERSION = "v6.5" +VERSION = "v6.5.1" def parse_version(version: str):