Skip to content

Commit

Permalink
build: 6.2.34
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed May 22, 2022
1 parent 929961f commit f42cb20
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/XIVLauncher.Common.Windows/WindowsDalamudRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ public class WindowsDalamudRunner : IDalamudRunner
{
var inheritableCurrentProcess = GetInheritableCurrentProcessHandle();

var launchArguments = new List<string> { "launch",
var launchArguments = new List<string>
{
"launch",
$"--mode={(loadMethod == DalamudLoadMethod.EntryPoint ? "entrypoint" : "inject")}",
$"--handle-owner={(long)inheritableCurrentProcess.Handle}",
$"--game=\"{gameExe.FullName}\"",
Expand All @@ -27,7 +29,7 @@ public class WindowsDalamudRunner : IDalamudRunner
$"--dalamud-asset-directory=\"{startInfo.AssetDirectory}\"",
$"--dalamud-client-language={(int)startInfo.Language}",
$"--dalamud-delay-initialize={startInfo.DelayInitializeMs}"
};
};

if (loadMethod == DalamudLoadMethod.ACLonly)
launchArguments.Add("--without-dalamud");
Expand Down
3 changes: 2 additions & 1 deletion src/XIVLauncher/Resources/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
• Shows the download progress for Dalamud and dependencies when starting the game
• Tweaks to prevent the download for Dalamud and dependencies from getting stuck
• Warn users if the Chinese or Korean version of the game is selected (by Kizer)
• Updated the localization files
• Updated the localization files
=> Big thanks to all volunteer translators!
2 changes: 1 addition & 1 deletion src/XIVLauncher/XIVLauncher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Product>XIVLauncher</Product>
<AssemblyTitle>XIVLauncher</AssemblyTitle>
<Description>Custom launcher for FFXIV.</Description>
<VersionPrefix>6.2.33</VersionPrefix>
<VersionPrefix>6.2.34</VersionPrefix>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit f42cb20

Please sign in to comment.