From b5996d93aca0c8984511a41b97825dc69e0ac39c Mon Sep 17 00:00:00 2001 From: arthomnix <35371030+arthomnix@users.noreply.github.com> Date: Fri, 17 Jul 2020 20:27:24 +0100 Subject: [PATCH 1/3] Add 2019.4 patch for windows --- src/Patcher/Patches.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Patcher/Patches.cs b/src/Patcher/Patches.cs index 52c5b5b..9916030 100644 --- a/src/Patcher/Patches.cs +++ b/src/Patcher/Patches.cs @@ -39,6 +39,12 @@ public static class Patches DarkPattern = new byte[] {0x74, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49} }, new PatchInfo + { + Version = "2019.4", + LightPattern = new byte[] {0x75, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49}, + DarkPattern = new byte[] {0x74, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49} + } + new PatchInfo { Version = "2020.1", LightPattern = new byte[] {0x75, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49}, From 802ccd25a06dfc355f3faa842fbcaff58529ac1e Mon Sep 17 00:00:00 2001 From: arthomnix <35371030+arthomnix@users.noreply.github.com> Date: Fri, 17 Jul 2020 20:30:33 +0100 Subject: [PATCH 2/3] Update Patches.cs --- src/Patcher/Patches.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Patcher/Patches.cs b/src/Patcher/Patches.cs index 9916030..1ead0bc 100644 --- a/src/Patcher/Patches.cs +++ b/src/Patcher/Patches.cs @@ -43,7 +43,7 @@ public static class Patches Version = "2019.4", LightPattern = new byte[] {0x75, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49}, DarkPattern = new byte[] {0x74, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49} - } + }, new PatchInfo { Version = "2020.1", From ead671c749d32a9e3a4a714b0d2dd604a52cfd46 Mon Sep 17 00:00:00 2001 From: arthomnix <35371030+arthomnix@users.noreply.github.com> Date: Sat, 18 Jul 2020 10:23:32 +0100 Subject: [PATCH 3/3] update table in README.md to show support for 2019.4 on Windows --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cca6b1c..af19045 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Currently, the following OS and Unity version combinations are supported: |---------|:------------------:|:------------------:|:------------------:| | 2020.2a | :x: | :white_check_mark: | :white_check_mark: | | 2020.1b | :white_check_mark: | :white_check_mark: | :white_check_mark: | -| 2019.4 | :x: | :white_check_mark: | :white_check_mark: | +| 2019.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | 2019.3 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | 2019.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | 2019.1 | :x: | :white_check_mark: | :white_check_mark: |