Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Misaka-ZeroTwo authored Oct 6, 2024
2 parents 30dcb74 + d968bea commit 7f21479
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
shell: pwsh
run: |
./build.ps1 -BuildNuGet
$File = (Get-ChildItem -Path . -Include 'EXILEDOFFICIAL.*.nupkg' -Recurse).Name
$File = (Get-ChildItem -Path . -Include 'EXILED-OFFICIAL.*.nupkg' -Recurse).Name
Out-File -FilePath ${{ github.env }} -InputObject "PackageFile=$File" -Encoding utf-8 -Append
- name: Upload nuget package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
shell: pwsh
run: |
./build.ps1 -BuildNuGet
$File = (Get-ChildItem -Path . -Include 'EXILEDOFFICIAL.*.nupkg' -Recurse).Name
$File = (Get-ChildItem -Path . -Include 'EXILED-OFFICIAL.*.nupkg' -Recurse).Name
Out-File -FilePath ${{ github.env }} -InputObject "PackageFile=$File" -Encoding utf-8 -Append
- name: Upload artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shell: pwsh
run: |
./build.ps1 -BuildNuGet
$File = (Get-ChildItem -Path . -Include 'EXILEDOFFICIAL.*.nupkg' -Recurse).Name
$File = (Get-ChildItem -Path . -Include 'EXILED-OFFICIAL.*.nupkg' -Recurse).Name
Out-File -FilePath ${{ github.env }} -InputObject "PackageFile=$File" -Encoding utf-8 -Append
- name: Push NuGet
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shell: pwsh
run: |
./build.ps1
$File = (Get-ChildItem -Path . -Include 'EXILEDOFFICIAL.*.nupkg' -Recurse).Name
$File = (Get-ChildItem -Path . -Include 'EXILED-OFFICIAL.*.nupkg' -Recurse).Name
Out-File -FilePath ${{ github.env }} -InputObject "PackageFile=$File" -Encoding utf-8 -Append
- name: Get references
Expand Down
2 changes: 1 addition & 1 deletion EXILED/EXILED.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<PropertyGroup>
<!-- This is the global version and is used for all projects that don't have a version -->
<Version Condition="$(Version) == ''">8.12.1</Version>
<Version Condition="$(Version) == ''">8.12.2</Version>
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
<PublicBeta>false</PublicBeta>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,9 @@ private static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstructi
ListPool<CodeInstruction>.Pool.Return(newInstructions);
}

private static bool CheckPermissions(BaseKeycardPickup keycard, DoorPermissions permissions)
private static bool CheckPermissions(BaseKeycardPickup keycard, DoorVariant door)
{
DoorPermissions permissions = door.RequiredPermissions;
if (permissions.RequiredPermissions == KeycardPermissions.None)
{
return true;
Expand Down
6 changes: 3 additions & 3 deletions EXILED/Exiled/Exiled.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>

<id>EXILEDOFFICIAL</id>
<id>EXILED-OFFICIAL</id>
<title>ExMod-Team</title>
<version>$version$</version>
<authors>ExMod-Team</authors>
Expand All @@ -12,7 +12,7 @@
<repository type="Git" url="https://github.com/ExMod-Team/EXILED" />
<licenseUrl>https://github.com/ExMod-Team/EXILED/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/ExMod-Team/EXILED</projectUrl>
<icon>images\Exiled_Icon.jpg</icon>
<icon>images\Exiled_Icon.png</icon>
<description>Plugin framework for SCP: Secret Laboratory.</description>

<dependencies>
Expand Down Expand Up @@ -51,7 +51,7 @@
<!-- Project files -->

<!-- Icon -->
<file src="..\assets\Exiled_Icon.jpg" target="images" />
<file src="..\assets\Exiled_Icon.png" target="images" />
</files>

</package>
Binary file added EXILED/assets/Exiled_Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7f21479

Please sign in to comment.