Skip to content

Commit

Permalink
Documentation update and version bump
Browse files Browse the repository at this point in the history
- updated documentation
- added overwatch ptr
- bumped version in preparation for release
  • Loading branch information
dafzor committed Aug 16, 2019
1 parent 5430720 commit 00b6b7f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ Note: If the Battle.net client isn't running when starting the game it will be c
| code | game |
| ------------- | ----------------------------------------------------- |
|wow | World of Warcraft |
|wowclassic | World of Warcraft Classic |
|wowptr | World of Warcraft Public Test Realm |
|d3 | Diablo 3 |
|d3ptr | Diablo 3 Public Test Realm |
|hs | Heartstone |
|ow | Overwatch |
|owptr | Overwatch Public Test Realm |
|sc2 | Starcraft 2 |
|hots | Heroes of the Storm |
|scr | Starcraft Remastered |
Expand Down Expand Up @@ -83,9 +87,12 @@ Exemple entry:
Explaining what each part does:

* `[codbo4]` the id that's passed to bnetlauncher to select the game ie `bnetlauncher.exe codbo4`
* `name=Call of Duty: Black Ops 4` a friendly name for the game
* `client=battlenet` the client the game uses, currently only battlenet is supported
* `cmd=VIPR` command to launch the game in the client
* `name=Call of Duty: Black Ops 4` a friendly name for the game used for error and help messages
* `client=battlenet` the client module used to launch the game, currently there's battlenet and battlenet2,
difference bettwen the two is that battlenet2 can launch ptr/classic version but might be less reliable.
* `cmd=VIPR` command to launch the game in the client depending on the client module used. Commands can be discovered by looking at logs in different locations:
- for battlenet `'%LOCALAPPDATA%\Battle.net\Logs\battle.net*.log'`
- for battlenet2 `'C:\ProgramData\Battle.net\Setup\<game>\*.log'`
* `exe=BlackOps4.exe` game exe that bnetlauncher will look for after launch, can use `%` as a wildcard ie `Diablo III%.exe`
to support 32 and 64 bit builds of the game.
* `options=noargs,waitforexit` list of comma separated options, currently supported:
Expand Down
2 changes: 1 addition & 1 deletion bnetlauncher/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public virtual void ShowWindow()
return;
}

Logger.Information($"Openting {Id} Window and waiting 3 seconds.");
Logger.Information($"Opening {Id} Window and waiting 3 seconds.");
Process.Start(Path.Combine(InstallPath, Exe));
}

Expand Down
4 changes: 2 additions & 2 deletions bnetlauncher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.03.*")]
//[assembly: AssemblyFileVersion("2.03.*")]
[assembly: AssemblyVersion("2.05.*")]
//[assembly: AssemblyFileVersion("2.05.*")]
8 changes: 7 additions & 1 deletion bnetlauncher/Resources/gamesdb.ini
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,10 @@ exe=WowT.exe
name=Diablo 3 Public Test Realm
client=battlenet2
cmd=d3t
exe=Diablo III%.exe
exe=Diablo III%.exe

[owptr]
name=Overwatch Public Test Realm
client=battlenet2
cmd=prot
exe=Overwatch.exe
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Version History
---------------
2.05
+ added capability to launch ptr and classic versions of games
* improved documentation a bit

2.03 (pre-release)
+ Preliminar support for Call of Duty: Modern Warfare 2019
* Updated .NET Framework to 4.7.2
Expand Down

0 comments on commit 00b6b7f

Please sign in to comment.