Skip to content

Commit

Permalink
Fix typo in event ledger, fleat -> fleet (#177)
Browse files Browse the repository at this point in the history
* Fix typo in event ledger, fleat -> fleet

* Bump version to 6.5.1
  • Loading branch information
MichaelMakesGames authored Dec 18, 2024
1 parent 8b393a6 commit 8d9d7ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mod/stellaris_dashboard/descriptor.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name="Stellaris Dashboard"
version="v6.5"
version="v6.5.1"
tags={
"Utilities"
"Gameplay"
Expand Down
2 changes: 1 addition & 1 deletion mod/stellaris_dashboard/interface/main_bottom.gui
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ <h2 class="eventlist_header">{{title[object] | safe}}</h2>
<span class="dateblock">{% if event["is_active"] %}(A){% endif %} {{event["start_date"]}}{% if event["end_date"] != null %} - {{event["end_date"]}}{%endif%}:</span>
<span class="eventtext">
{{ 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 }}".
</span>
Expand Down
2 changes: 1 addition & 1 deletion stellarisdashboard/dashboard_app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

logger = logging.getLogger(__name__)

VERSION = "v6.5"
VERSION = "v6.5.1"


def parse_version(version: str):
Expand Down

0 comments on commit 8d9d7ea

Please sign in to comment.