From c6b173dd63b89f13c1621a08557261bf0ebcae9a Mon Sep 17 00:00:00 2001 From: goaaats Date: Wed, 26 Nov 2025 21:22:59 +0100 Subject: [PATCH 1/2] build: 13.0.0.11 --- Dalamud/Dalamud.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Dalamud.csproj b/Dalamud/Dalamud.csproj index b5062438a..ce140b8c9 100644 --- a/Dalamud/Dalamud.csproj +++ b/Dalamud/Dalamud.csproj @@ -6,7 +6,7 @@ XIV Launcher addon framework - 13.0.0.10 + 13.0.0.11 $(DalamudVersion) $(DalamudVersion) $(DalamudVersion) From c136934aa838fd1376e874117f39df0ce6702a61 Mon Sep 17 00:00:00 2001 From: goaaats Date: Wed, 26 Nov 2025 21:46:07 +0100 Subject: [PATCH 2/2] Always pass a key, even for release Fixes an issue wherein the XL commandline parser wouldn't like the empty argument and error out --- Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs b/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs index 51ff3bdcd..4e95b718e 100644 --- a/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs +++ b/Dalamud/Interface/Internal/Windows/BranchSwitcherWindow.cs @@ -105,7 +105,7 @@ public class BranchSwitcherWindow : Window }; ps.ArgumentList.Add($"--dalamud-beta-kind={config.DalamudBetaKind}"); - ps.ArgumentList.Add($"--dalamud-beta-key={config.DalamudBetaKey}"); + ps.ArgumentList.Add($"--dalamud-beta-key={(config.DalamudBetaKey.IsNullOrEmpty() ? "invalid" : config.DalamudBetaKey)}"); Process.Start(ps); Environment.Exit(0);