Skip to content

Commit 349b432

Browse files
authored
refactor!: update to 9.6.1 (#547)
## Description **Describe the changes** **What is the current behavior?** (You can also link to an open issue here) **What is the new behavior?** (if this is a feature change) **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?) **Other information**: <br /> ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentations <br /> ## Submission checklist <!--- Put an `x` in all the boxes that apply: --> - [ ] I have checked the project can be compiled - [ ] I have tested my changes and it worked as expected ### Patches (if there are any changes related to Harmony patches) - [ ] I have checked no IL patching errors in the console ### Other - [ ] Still requires more testing
2 parents 75b4621 + 6e57175 commit 349b432

File tree

240 files changed

+3991
-2586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+3991
-2586
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
id-token: write
1313

1414
env:
15-
EXILED_REFERENCES_URL: https://exmod-team.github.io/SL-References/Master.zip
15+
EXILED_REFERENCES_URL: https://Exmod-team.github.io/SL-References/Master.zip
1616
EXILED_REFERENCES_PATH: ${{ github.workspace }}/EXILED/References
1717

1818
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defaults:
1313
working-directory: ./EXILED
1414

1515
env:
16-
EXILED_REFERENCES_URL: https://exmod-team.github.io/SL-References/Master.zip
16+
EXILED_REFERENCES_URL: https://Exmod-team.github.io/SL-References/Master.zip
1717
EXILED_REFERENCES_PATH: ${{ github.workspace }}/EXILED/References
1818

1919
jobs:

.github/workflows/push_nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010
working-directory: ./EXILED
1111

1212
env:
13-
EXILED_REFERENCES_URL: https://ExMod-Team.github.io/SL-References/Dev.zip
13+
EXILED_REFERENCES_URL: https://exmod-team.github.io/SL-References/Dev.zip
1414
EXILED_REFERENCES_PATH: ${{ github.workspace }}/EXILED/References
1515

1616
jobs:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ defaults:
1111
working-directory: ./EXILED
1212

1313
env:
14-
EXILED_REFERENCES_URL: https://exmod-team.github.io/SL-References/Dev.zip
14+
EXILED_REFERENCES_URL: https://Exmod-team.github.io/SL-References/Dev.zip
1515
EXILED_REFERENCES_PATH: ${{ github.workspace }}/EXILED/References
16-
EXILED_DLL_ARCHIVER_URL: https://github.com/ExMod-Team/EXILED-DLL-Archiver/releases/latest/download/EXILED-DLL-Archiver.exe
16+
EXILED_DLL_ARCHIVER_URL: https://github.com/Exmod-Team/EXILED-DLL-Archiver/releases/download/v1.8.1/EXILED-DLL-Archiver.exe
1717

1818
jobs:
1919
build:

EXILED/EXILED.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<PropertyGroup>
1717
<!-- This is the global version and is used for all projects that don't have a version -->
18-
<Version Condition="$(Version) == ''">9.5.1</Version>
18+
<Version Condition="$(Version) == ''">9.6.1</Version>
1919
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
2020
<PublicBeta>false</PublicBeta>
2121

@@ -25,8 +25,8 @@
2525

2626
<Copyright>Copyright © $(Authors) 2020 - $([System.DateTime]::Now.ToString("yyyy"))</Copyright>
2727
<RepositoryType>Git</RepositoryType>
28-
<RepositoryUrl>https://github.com/ExMod-Team/EXILED</RepositoryUrl>
29-
<PackageProjectUrl>https://github.com/ExMod-Team/EXILED</PackageProjectUrl>
28+
<RepositoryUrl>https://github.com/Exmod-Team/EXILED</RepositoryUrl>
29+
<PackageProjectUrl>https://github.com/Exmod-Team/EXILED</PackageProjectUrl>
3030
<PackageLicenseExpression>CC-BY-SA-3.0</PackageLicenseExpression>
3131

3232
<DefineConstants Condition="$(PublicBeta) == 'true'">$(DefineConstants);PUBLIC_BETA</DefineConstants>

EXILED/Exiled.API/Enums/AdminToyType.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,25 @@ public enum AdminToyType
3232
/// Speaker toy.
3333
/// </summary>
3434
Speaker,
35+
36+
/// <summary>
37+
/// Capybara toy.
38+
/// </summary>
39+
Capybara,
40+
41+
/// <summary>
42+
/// InvisibleInteractable toy.
43+
/// </summary>
44+
InvisibleInteractableToy,
45+
46+
/// <summary>
47+
/// Camera Object toy.
48+
/// </summary>
49+
CameraToy,
50+
51+
/// <summary>
52+
/// Text toy.
53+
/// </summary>
54+
TextToy,
3555
}
3656
}

EXILED/Exiled.API/Enums/CameraType.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ public enum CameraType
5858
Hcz106Recontainment,
5959
HczChkptEz,
6060
HczChkptHcz,
61+
[System.Obsolete("This Camera no longer exist.")]
6162
HczHIDChamber,
63+
[System.Obsolete("This Camera no longer exist.")]
6264
HczHIDHallway,
6365
Hcz939,
6466
HczArmory,
@@ -119,7 +121,9 @@ public enum CameraType
119121
Hcz173Outside,
120122
Hcz173Stairs,
121123
Hcz173ContChamber,
124+
[System.Obsolete("This Camera no longer exist.")]
122125
Hcz173Hallway,
126+
[System.Obsolete("This Camera no longer exist.")]
123127
HczCurve,
124128
HczJunkMain,
125129
HczJunkHallway,
@@ -134,6 +138,19 @@ public enum CameraType
134138
HczWarheadPortElevator,
135139
HczMicroHIDLab,
136140
HczPipesMain,
141+
HczScp127Lab,
142+
HczScp127Containment,
143+
HczServersUpperStorage,
144+
HczLowerServerStorage,
145+
HczServerStaircase,
146+
#endregion
147+
148+
#region custom
149+
EzArmCameraToy,
150+
EzCameraToy,
151+
HczCameraToy,
152+
LczCameraToy,
153+
SzCameraToy,
137154
#endregion
138155
}
139156
}

EXILED/Exiled.API/Enums/DamageType.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,5 +269,10 @@ public enum DamageType
269269
/// Damage caused by <see cref="ItemType.Snowball"/>.
270270
/// </summary>
271271
SnowBall,
272+
273+
/// <summary>
274+
/// Damage caused by <see cref="ItemType.GunSCP127"/>.
275+
/// </summary>
276+
Scp127,
272277
}
273278
}

EXILED/Exiled.API/Enums/DoorType.cs

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,20 @@ public enum DoorType
167167
/// <summary>
168168
/// Represents the HID_UPPER door.
169169
/// </summary>
170+
[Obsolete("This Door has been renamed too HID_LAB.")]
170171
HIDUpper,
171172

173+
/// <summary>
174+
/// Represents the HID_LAB door.
175+
/// </summary>
176+
#pragma warning disable CS0618
177+
HIDLab = HIDUpper,
178+
#pragma warning restore CS0618
179+
172180
/// <summary>
173181
/// Represents the HID_LOWER door.
174182
/// </summary>
183+
[Obsolete("This Door has been removed from the game.")]
175184
HIDLower,
176185

177186
/// <summary>
@@ -241,8 +250,9 @@ public enum DoorType
241250
CheckpointGateB,
242251

243252
/// <summary>
244-
/// Represents the Gate in the Checkpoint between EZ and HCZ.
253+
/// Represents a door than Yamato never implemented.
245254
/// </summary>
255+
[Obsolete("This Door has never been in the game.")]
246256
SurfaceDoor,
247257

248258
/// <summary>
@@ -319,5 +329,15 @@ public enum DoorType
319329
/// Represents the ESCAPE_FINAL door.
320330
/// </summary>
321331
EscapeFinal,
332+
333+
/// <summary>
334+
/// Represents the Elevator door for <see cref="ElevatorGroup.ServerRoom"/>.
335+
/// </summary>
336+
ElevatorServerRoom,
337+
338+
/// <summary>
339+
/// Represents the HCZ_127_LAB door.
340+
/// </summary>
341+
Hcz127Lab,
322342
}
323343
}

EXILED/Exiled.API/Enums/EffectType.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,5 +283,10 @@ public enum EffectType
283283
/// </summary>
284284
[Obsolete("Only availaible for Christmas and AprilFools.")]
285285
Snowed,
286+
287+
/// <summary>
288+
/// <see cref="CustomPlayerEffects.Scp1344Detected"/>.
289+
/// </summary>
290+
Scp1344Detected,
286291
}
287292
}

0 commit comments

Comments
 (0)