Skip to content

Commit 851521c

Browse files
authored
Upgrade Doorstop to 4.3.0 (#901)
1 parent 3ba398f commit 851521c

File tree

6 files changed

+22
-2
lines changed

6 files changed

+22
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ A more comprehensive comparison list of features and compatibility is available
5757

5858
## Used libraries
5959

60-
- [NeighTools/UnityDoorstop](https://github.com/NeighTools/UnityDoorstop) - v4.2.0
60+
- [NeighTools/UnityDoorstop](https://github.com/NeighTools/UnityDoorstop) - v4.3.0
6161
- [BepInEx/HarmonyX](https://github.com/BepInEx/HarmonyX) - v2.10.1
6262
- [0x0ade/MonoMod](https://github.com/0x0ade/MonoMod) - v22.5.1.1
6363
- [jbevain/cecil](https://github.com/jbevain/cecil) - v0.10.4

Runtimes/Unity/Doorstop/doorstop_config_il2cpp.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ target_assembly = BepInEx\core\BepInEx.Unity.IL2CPP.dll
1111
# If true, Unity's output log is redirected to <current folder>\output_log.txt
1212
redirect_output_log = false
1313

14+
# Overrides the default boot.config file path
15+
boot_config_override =
16+
1417
# If enabled, DOORSTOP_DISABLE env var value is ignored
1518
# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
1619
ignore_disable_switch = false

Runtimes/Unity/Doorstop/doorstop_config_mono.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ target_assembly = BepInEx\core\BepInEx.Unity.Mono.Preloader.dll
1111
# If true, Unity's output log is redirected to <current folder>\output_log.txt
1212
redirect_output_log = false
1313

14+
# Overrides the default boot.config file path
15+
boot_config_override =
16+
1417
# If enabled, DOORSTOP_DISABLE env var value is ignored
1518
# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
1619
ignore_disable_switch = false

Runtimes/Unity/Doorstop/run_bepinex_il2cpp.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ enabled="1"
2525
# NOTE: The entrypoint must be of format `static void Doorstop.Entrypoint.Start()`
2626
target_assembly="BepInEx/core/BepInEx.Unity.IL2CPP.dll"
2727

28+
# Overrides the default boot.config file path
29+
boot_config_override=
30+
2831
# If enabled, DOORSTOP_DISABLE env var value is ignored
2932
# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
3033
ignore_disable_switch="0"
@@ -218,6 +221,10 @@ while :; do
218221
target_assembly="$2"
219222
shift
220223
;;
224+
--doorstop-boot-config-override)
225+
boot_config_override="$2"
226+
shift
227+
;;
221228
--doorstop-mono-dll-search-path-override)
222229
dll_search_path_override="$2"
223230
shift

Runtimes/Unity/Doorstop/run_bepinex_mono.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ enabled="1"
2525
# NOTE: The entrypoint must be of format `static void Doorstop.Entrypoint.Start()`
2626
target_assembly="BepInEx/core/BepInEx.Unity.Mono.Preloader.dll"
2727

28+
# Overrides the default boot.config file path
29+
boot_config_override=
30+
2831
# If enabled, DOORSTOP_DISABLE env var value is ignored
2932
# USE THIS ONLY WHEN ASKED TO OR YOU KNOW WHAT THIS MEANS
3033
ignore_disable_switch="0"
@@ -219,6 +222,10 @@ while :; do
219222
target_assembly="$2"
220223
shift
221224
;;
225+
--doorstop-boot-config-override)
226+
boot_config_override="$2"
227+
shift
228+
;;
222229
--doorstop-mono-dll-search-path-override)
223230
dll_search_path_override="$2"
224231
shift

build/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public enum ProjectBuildType
3232
BleedingEdge
3333
}
3434

35-
public const string DoorstopVersion = "4.2.0";
35+
public const string DoorstopVersion = "4.3.0";
3636
public const string DotnetRuntimeVersion = "6.0.7";
3737
public const string DobbyVersion = "1.0.5";
3838

0 commit comments

Comments
 (0)