Skip to content

Commit ec37d96

Browse files
authored
Update for Hearthstone 11.1.1.24589. (#62)
1 parent e5e1dc5 commit ec37d96

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Hearthstone® Bot Engine https://yangyuan.github.io/hearthrock
66

77
## News
88

9+
- Hearthrock 0.6.4 Alpha for 11.1.1.24589. (May 26, 2018)
910
- Hearthrock 0.6.3 Alpha for 11.1.0.24377. (May 19, 2018)
1011
- Hearthrock 0.6.2 Alpha for 11.0.0.23966. (Apr 23, 2018)
1112
- Hearthrock 0.6.1 Alpha for 10.4.0.23576. (Mar 13, 2018)
@@ -14,9 +15,6 @@ Hearthstone® Bot Engine https://yangyuan.github.io/hearthrock
1415
- Hearthrock 0.5.4 Alpha for 10.0.0.22611. (Dec 12, 2017)
1516
- Hearthrock 0.5.3 Alpha for 9.4.0.22115. (Nov 18, 2017)
1617
- Hearthrock (AI) received $5,000 credits from NUTech AWS Grant.
17-
- Hearthrock 0.5.2 Alpha for 9.2.0.22017. (Oct 26, 2017)
18-
- Hearthrock 0.5.1 Alpha for 9.1.0.20970. (Sept 20, 2017)
19-
- Hearthrock 0.5.0 Alpha for 9.0.0.20457. (Aug 9, 2017)
2018

2119
## Purposes and Features
2220

src/Hearthrock.Client/Hacking/Patcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ private string ReadPegasusVersion()
375375
string productInfo = File.ReadAllText(hearthstoneProductPath, Encoding.ASCII);
376376
string version = string.Empty;
377377

378-
Regex regex = new Regex("([0-9]+\\.[0-9]+\\.[0-0]+\\.[0-9]+)");
378+
Regex regex = new Regex("([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)");
379379
var versions = regex.Matches(productInfo);
380380
if (versions.Count == 1)
381381
{

src/Hearthrock.Client/pegasus.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"checksum": "82F6D17FBFF163898F2FEB9FA5462AF60B5633AA",
3-
"version": "11.1.0.24377"
2+
"checksum": "DC629C7157F9D91EE4C14517DC2FBC6EE760D4C8",
3+
"version": "11.1.1.24589"
44
}

src/Hearthrock/Hearthrock.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@
3232
</PropertyGroup>
3333
<ItemGroup>
3434
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
35-
<HintPath>..\packages\Hearthrock.Stone.11.1.0.18\lib\net20\Assembly-CSharp.dll</HintPath>
35+
<HintPath>..\packages\Hearthrock.Stone.11.1.1.19\lib\net20\Assembly-CSharp.dll</HintPath>
3636
</Reference>
3737
<Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
38-
<HintPath>..\packages\Hearthrock.Stone.11.1.0.18\lib\net20\Assembly-CSharp-firstpass.dll</HintPath>
38+
<HintPath>..\packages\Hearthrock.Stone.11.1.1.19\lib\net20\Assembly-CSharp-firstpass.dll</HintPath>
3939
</Reference>
4040
<Reference Include="Assembly-UnityScript, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
41-
<HintPath>..\packages\Hearthrock.Stone.11.1.0.18\lib\net20\Assembly-UnityScript.dll</HintPath>
41+
<HintPath>..\packages\Hearthrock.Stone.11.1.1.19\lib\net20\Assembly-UnityScript.dll</HintPath>
4242
</Reference>
4343
<Reference Include="System" />
4444
<Reference Include="System.Xml" />
4545
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
46-
<HintPath>..\packages\Hearthrock.Stone.11.1.0.18\lib\net20\UnityEngine.dll</HintPath>
46+
<HintPath>..\packages\Hearthrock.Stone.11.1.1.19\lib\net20\UnityEngine.dll</HintPath>
4747
</Reference>
4848
</ItemGroup>
4949
<ItemGroup>

src/Hearthrock/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Hearthrock.Stone" version="11.1.0.18" targetFramework="net35" />
3+
<package id="Hearthrock.Stone" version="11.1.1.19" targetFramework="net35" />
44
</packages>

0 commit comments

Comments
 (0)