Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ✨ Add support for warcraft I/II remastered #96

Merged
merged 3 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/bnetlauncher-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup MSBuild Path
uses: microsoft/setup-msbuild@v1.0.3
uses: microsoft/setup-msbuild@v2

- name: Setup NuGet
uses: NuGet/setup-nuget@v1
uses: NuGet/setup-nuget@v2

- name: Restore NuGet Packages
run: nuget restore bnetlauncher.sln
Expand All @@ -33,7 +33,7 @@ jobs:
# Write-Host "version=$($r.Matches.Groups.Value)" >> $env:GITHUB_ENV

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: "bnetlauncher"
path: |
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ with minimal/no interaction with the battle.net client while still being automat
|owptr | Overwatch Public Test Realm |
|scr | Starcraft Remastered |
|sc2 | Starcraft 2 |
|w1r | Warfraft I: Remastered |
|w2r | Warfraft II: Remastered |
|w3 | Warcraft 3: Reforged |
|wow | World of Warcraft |
|wowclassic | World of Warcraft Classic |
Expand Down Expand Up @@ -182,3 +184,4 @@ Explaining what each part does:
* github Sectimus for Diablo IV support
* github Sectimus for WoW Classic Era support
* github LazymanOnGithub for MW3 2023 support
* github Aqvilinus for Warcraft I/II remastered support
12 changes: 12 additions & 0 deletions bnetlauncher/Resources/gamesdb.ini
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,18 @@ client=battlenet
cmd=ANBS
exe=DiabloImmortal.exe

[w1r]
name=Warcraft I: Remastered
client=battlenet2
cmd=w1r
exe=Warcraft.exe

[w2r]
name=Warcraft II: Remastered
client=battlenet2
cmd=w2r
exe=Warcraft II.exe

[w3]
name=Warcraft 3: Reforged
client=battlenet
Expand Down