Skip to content

Commit 1fbf218

Browse files
authored
Merge pull request #44 from maximilianmaihoefner/master
Add PatchInfo for Unity 2019.2 and 2019.4 on macOS and 2019.4 on Linux
2 parents d7db7fb + c6a1e85 commit 1fbf218

2 files changed

Lines changed: 22 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ Currently, the following OS and Unity version combinations are supported:
4444

4545
| | Windows | MacOS | Linux |
4646
|---------|:------------------:|:------------------:|:------------------:|
47-
| 2020.2a | :x: | :x: | :white_check_mark: |
47+
| 2020.2a | :x: | :white_check_mark: | :white_check_mark: |
4848
| 2020.1b | :white_check_mark: | :white_check_mark: | :white_check_mark: |
49+
| 2019.4 | :x: | :white_check_mark: | :white_check_mark: |
4950
| 2019.3 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
50-
| 2019.2 | :white_check_mark: | :x: | :white_check_mark: |
51+
| 2019.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
5152
| 2019.1 | :x: | :white_check_mark: | :white_check_mark: |
5253
| 2018.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
5354
| 2018.3 | :white_check_mark: | :x: | :x: |

src/Patcher/Patches.cs

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,29 @@ public static class Patches
5656
},
5757
new PatchInfo
5858
{
59-
Version = "2019.1.0f2",
59+
Version = "2019.1",
6060
DarkPattern = new byte[] {0x75, 0x03, 0x41, 0x8b, 0x06, 0x48},
6161
LightPattern = new byte[] {0x74, 0x03, 0x41, 0x8b, 0x06, 0x48}
6262
},
6363
new PatchInfo
64+
{
65+
Version = "2019.2",
66+
DarkPattern = new byte[] {0x75, 0x04, 0x8b, 0x03, 0xeb, 0x02},
67+
LightPattern = new byte[] {0x74, 0x04, 0x8b, 0x03, 0xeb, 0x02}
68+
},
69+
new PatchInfo
6470
{
6571
Version = "2019.3",
6672
DarkPattern = new byte[] {0x85, 0xD5, 0x00, 0x00, 0x00, 0x8B, 0x03},
6773
LightPattern = new byte[] {0x84, 0xD5, 0x00, 0x00, 0x00, 0x8B, 0x03}
6874
},
6975
new PatchInfo
76+
{
77+
Version = "2019.4",
78+
DarkPattern = new byte[] {0x85, 0xD5, 0x00, 0x00, 0x00, 0x8B, 0x03},
79+
LightPattern = new byte[] {0x84, 0xD5, 0x00, 0x00, 0x00, 0x8B, 0x03}
80+
},
81+
new PatchInfo
7082
{
7183
Version = "2020.1",
7284
DarkPattern = new byte[] {0x75, 0x5E, 0x8B, 0x03, 0xEB},
@@ -107,6 +119,12 @@ public static class Patches
107119
LightPattern = new byte[] {0x74, 0x06, 0x41, 0x8b, 0x04, 0x24, 0xeb, 0x02}
108120
},
109121
new PatchInfo
122+
{
123+
Version = "2019.4",
124+
DarkPattern = new byte[] {0x75, 0x06, 0x41, 0x8b, 0x04, 0x24, 0xeb, 0x02},
125+
LightPattern = new byte[] {0x74, 0x06, 0x41, 0x8b, 0x04, 0x24, 0xeb, 0x02}
126+
},
127+
new PatchInfo
110128
{
111129
Version = "2020.1",
112130
DarkPattern = new byte[] {0x75, 0x05, 0x41, 0x8b, 0x07, 0xeb, 0x02},

0 commit comments

Comments
 (0)