3 Commits

Author SHA1 Message Date
46f452a71f v0.1.1 2023-06-09 19:31:04 +02:00
9986ce1172 fix iw5-mod not launching without admin 2023-06-09 19:30:09 +02:00
6bc598cb2d typo 2023-06-01 12:24:48 +02:00
3 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,8 @@ Module Program
wc.DownloadFile(master & remote_path & filename, filename) wc.DownloadFile(master & remote_path & filename, filename)
End Using End Using
Console.WriteLine("Starting " & game) Console.WriteLine("Starting " & game)
Process.Start(filename) Dim p As Process = Process.Start(filename)
p.WaitForExit()
End End
End Sub End Sub

View File

@ -1,7 +1,7 @@
# alterware-launcher # alterware-launcher
1. Download [latest release](https://github.com/mxve/alterware-launcher/releases/latest/download/alterware-launcher.exe) 1. Download [latest release](https://github.com/mxve/alterware-launcher/releases/latest/download/alterware-launcher.exe)
2. Please alterware-launcher.exe in MW2/MW3 game directory 2. Place alterware-launcher.exe in MW2/MW3 game directory
3. Run alterware-launcher.exe 3. Run alterware-launcher.exe
If the launcher doesn't work make sure you have dotnet 6.0 installed. Also try running the launcher as administrator. If the launcher doesn't work make sure you have dotnet 6.0 installed. Also try running the launcher as administrator.

View File

@ -12,7 +12,7 @@
<PackageProjectUrl>https://github.com/mxve/alterware-launcher</PackageProjectUrl> <PackageProjectUrl>https://github.com/mxve/alterware-launcher</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon> <PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<FileVersion>0.1.0</FileVersion> <FileVersion>0.1.1</FileVersion>
<AssemblyVersion>0.1.0</AssemblyVersion> <AssemblyVersion>0.1.0</AssemblyVersion>
</PropertyGroup> </PropertyGroup>