Skip to content

Commit

Permalink
v2.9.5
Browse files Browse the repository at this point in the history
- Updated patch
- Launch game with admin privileges
  • Loading branch information
Eavilaswayce committed Apr 16, 2024
1 parent 27f9003 commit 0ff8967
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions H1EmuLauncher/H1EmuLauncher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<FileVersion>2.9.4</FileVersion>
<FileVersion>2.9.5</FileVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Authors>H1Emu</Authors>
<Version>2.9.4</Version>
<Version>2.9.5</Version>
<AssemblyName>H1EmuLauncher</AssemblyName>
<SignAssembly>false</SignAssembly>
<Copyright>© H1Emu</Copyright>
<Product>H1Emu Launcher</Product>
<Description>A launcher for the H1Emu project.</Description>
<Title>H1Emu Launcher</Title>
<PackageIcon>Icon.ico</PackageIcon>
<AssemblyVersion>2.9.4</AssemblyVersion>
<AssemblyVersion>2.9.5</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file modified H1EmuLauncher/Resources/Game-Patch-2016.zip
Binary file not shown.
7 changes: 4 additions & 3 deletions H1EmuLauncher/Windows/LauncherWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ private void LaunchClient(object sender, RoutedEventArgs e)
ApplyPatchClass.CheckPatch();
//Start voice chat client
// Launch voice chat client
/*Process voiceChatClient = new();
if (gameVersionString == "22dec2016")
{
Expand All @@ -569,15 +569,16 @@ private void LaunchClient(object sender, RoutedEventArgs e)
voiceChatClient.Start();
}*/
// Start game
// Launch game
Process h1Process = new();
h1Process.StartInfo = new ProcessStartInfo
{
FileName = $"{Properties.Settings.Default.activeDirectory}\\H1Z1.exe",
Arguments = $"sessionid={sessionId} gamecrashurl={Info.GAME_CRASH_URL} server={serverIp}",
WindowStyle = ProcessWindowStyle.Normal,
WorkingDirectory = Properties.Settings.Default.activeDirectory,
UseShellExecute = true
UseShellExecute = true,
Verb = "runas"
};
h1Process.EnableRaisingEvents = true;
h1Process.Exited += (o, s) =>
Expand Down
6 changes: 3 additions & 3 deletions H1EmuLauncherSetup/H1EmuLauncherSetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:H1Emu Launcher"
"ProductCode" = "8:{1EF5142B-5F45-45AC-82D0-F9F7B7A04C0D}"
"PackageCode" = "8:{54FF613B-2BDF-415F-A68C-7445793C22B7}"
"ProductCode" = "8:{57C96A65-C92B-468A-8EA5-60B35FD59456}"
"PackageCode" = "8:{CBE982DE-0E6A-4048-AF10-74F9141EBDAA}"
"UpgradeCode" = "8:{4E679270-65C8-4021-83BE-3B8EC3EC7AFE}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:TRUE"
"ProductVersion" = "8:2.9.4"
"ProductVersion" = "8:2.9.5"
"Manufacturer" = "8:H1Emu © 2022"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://discord.com/invite/RM6jNkj"
Expand Down

0 comments on commit 0ff8967

Please sign in to comment.