Skip to content

Commit a827d61

Browse files
Update 1.0.0.3.
Been almost two years since this was updated, now up-to-date with latest MCGalaxy.
1 parent 29d0906 commit a827d61

File tree

713 files changed

+45234
-32811
lines changed

Some content is hidden

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

713 files changed

+45234
-32811
lines changed

.github/actions/notify_success/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
type: string
99
BOT_AVATAR:
1010
description: 'URL to use for the avatar of the discord bot message'
11-
default: 'https://cdn.discordapp.com/attachments/1169445073159725080/1192165081795010680/Nebula.jpg'
11+
default: 'https://raw.githubusercontent.com/RandomStrangers/MCNebula/master/GUI/Nebula.jpg'
1212
required: false
1313
type: string
1414
NOTIFY_MESSAGE:
@@ -31,7 +31,7 @@ inputs:
3131
runs:
3232
using: "composite"
3333
steps:
34-
- uses: actions/upload-artifact@v3
34+
- uses: actions/upload-artifact@v4
3535
with:
3636
name: ${{ inputs.DEST_NAME }}
3737
path: ${{ inputs.SOURCE_FILE }}

.github/actions/upload_build/action.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Build latest
2-
on: [push]
2+
on:
3+
push:
4+
workflow_dispatch:
5+
schedule:
6+
# Every Monday at 12am
7+
- cron: '0 0 * * 1'
38

49
concurrency:
510
group: ${{ github.ref }}-latest
@@ -8,9 +13,9 @@ concurrency:
813
jobs:
914
build-mono:
1015
if: github.ref_name == github.event.repository.default_branch
11-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1217
steps:
13-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1419
- name: Compile MCNebula using mono
1520
shell: bash
1621
id: compile
@@ -21,7 +26,7 @@ jobs:
2126
msbuild MCNebula/MCNebula_.csproj /p:Configuration=Release /t:Rebuild /p:DefineConstants="DEV"
2227
2328
- uses: ./.github/actions/notify_failure
24-
if: ${{ always() && steps.compile.outcome == 'failure' }}
29+
if: failure()
2530
with:
2631
NOTIFY_MESSAGE: 'Failed to compile MCNebula .NET build! <@999409543001931788>'
2732
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'

CLI/MCNebulaCLI.csproj

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
1818
<NoStdLib>False</NoStdLib>
1919
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
20-
<NuGetPackageImportStamp>
21-
</NuGetPackageImportStamp>
20+
<LangVersion>9.0</LangVersion>
2221
</PropertyGroup>
2322
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
2423
<PlatformTarget>x86</PlatformTarget>
@@ -63,13 +62,9 @@
6362
</ItemGroup>
6463
<ItemGroup>
6564
<ProjectReference Include="..\MCNebula\MCNebula_.csproj">
66-
<Project>{12597db0-7c34-4de1-88ea-9250ff3372eb}</Project>
65+
<Project>{12597DB0-7C34-4DE1-88EA-9250FF3372EB}</Project>
6766
<Name>MCNebula_</Name>
6867
</ProjectReference>
6968
</ItemGroup>
7069
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
71-
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
72-
<PropertyGroup>
73-
</PropertyGroup>
74-
</Target>
7570
</Project>

CLI/MCNebulaCLI_dotnet.csproj

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)