Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
de908a6
Migrate to the latest MiraAPI
CallOfCreator Feb 22, 2025
e1af32f
Migrate to the latest MiraAPI
CallOfCreator Feb 22, 2025
14f5d58
fix
CallOfCreator Feb 22, 2025
af10011
Actually fixed bugs this time
CallOfCreator Feb 28, 2025
599125d
Add 3 new roles (Revenant, Specialist, W.I.P Overload), reorganize bu…
CallOfCreator Mar 18, 2025
a71f9fa
Added support for saving and loading custom role states.
CallOfCreator Mar 18, 2025
8750328
updated button for SpecialAgent
andries659 Mar 19, 2025
964bf83
added button image for SpecialAgent
andries659 Mar 19, 2025
6a993de
fixed the name
andries659 Mar 19, 2025
6835546
Bug fixes for Overload, possibly fixed ghostRenderer color
CallOfCreator Mar 30, 2025
10ecdef
Add support for v2025.3.25 (v16.0.0)
CallOfCreator Mar 31, 2025
8eb9cca
Implement GitHub CI workflow
CallOfCreator Mar 31, 2025
aec6e47
Update to .NET 8.0
CallOfCreator Mar 31, 2025
7348515
Should it work?
CallOfCreator Mar 31, 2025
e8abf03
Revert: "Update to .NET8.0"
CallOfCreator Mar 31, 2025
63452cd
Probably fixed?
CallOfCreator Mar 31, 2025
13ac272
...
CallOfCreator Mar 31, 2025
2c35f10
bumb MiraAPI to v0.2.0-rc.5 and update SupportedAmongUsVersion
CallOfCreator Apr 11, 2025
e6a3b46
Fixed RPC issues causing player disconnects, Fixed endgame triggering…
CallOfCreator Apr 12, 2025
1740aa6
Merge remote-tracking branch 'origin/dev' into au-2025.3.25
CallOfCreator Apr 12, 2025
9d8307b
Fix LoadStats issue
CallOfCreator Apr 12, 2025
5721124
Add Android support
CallOfCreator Apr 12, 2025
4163596
Fix CI
CallOfCreator Apr 27, 2025
d7cd1f3
Add LP compatibility, Update README.md, Add support for v16.0.5 (2025…
CallOfCreator Jun 16, 2025
6bc27b9
Fixed plugin loading issue due to LP compatibility, Fixed Logo not sh…
CallOfCreator Jun 17, 2025
ca68dd7
Add 1 new role and 2 modifiers
CallOfCreator Jun 21, 2025
fb000f1
Fix CI
CallOfCreator Jun 21, 2025
c329ec4
Merge pull request #2 from CallOfCreator/au-2025.3.25
CallOfCreator Jun 21, 2025
13d0201
Implement Overload fix, update README.md, and allow players to paste …
CallOfCreator Jun 23, 2025
a677d1f
bump version
CallOfCreator Jun 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: NewMod CI

on:
push:
branches:
- main
- dev
- au-2025.3.25
pull_request:
branches:
- main
- dev
- au-2025.3.25
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
env:
BuildingInsideCI: true

steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true

- name: Cache Dependencies
uses: actions/cache@v4
with:
path: |
~/.nuget/packages
~/.cache/bepinex
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Restore NuGet Packages
run: dotnet restore NewMod/NewMod.csproj

- name: Build NewMod (Release)
run: dotnet build NewMod/NewMod.csproj --configuration Release --no-restore

- name: Build NewMod (Debug)
run: dotnet build NewMod/NewMod.csproj --configuration Debug --no-restore

- name: Upload NewMod DLL (Release)
uses: actions/upload-artifact@v4
with:
name: NewMod
path: NewMod/bin/Release/net6.0/NewMod.dll

- name: Upload NewMod DLL (Debug)
uses: actions/upload-artifact@v4
with:
name: NewMod-Debug
path: NewMod/bin/Debug/net6.0/NewMod.dll

release:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'

steps:
- name: Download Release DLL
uses: actions/download-artifact@v4
with:
name: NewMod

- name: Publish GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: v1.2.${{ github.run_number }}
files: NewMod/bin/Release/net6.0/NewMod.dll
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
bin/
obj/
libs/*
References/
/packages/
riderModule.iml
Expand Down
6 changes: 4 additions & 2 deletions New-Mod.sln → NewMod.sln
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Expand All @@ -9,12 +8,15 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
ANDROID|Any CPU = ANDROID|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FC05DD49-CE3A-41F4-8452-37686FE23D0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC05DD49-CE3A-41F4-8452-37686FE23D0A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC05DD49-CE3A-41F4-8452-37686FE23D0A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC05DD49-CE3A-41F4-8452-37686FE23D0A}.Release|Any CPU.Build.0 = Release|Any CPU
{FC05DD49-CE3A-41F4-8452-37686FE23D0A}.ANDROID|Any CPU.ActiveCfg = ANDROID|Any CPU
{FC05DD49-CE3A-41F4-8452-37686FE23D0A}.ANDROID|Any CPU.Build.0 = ANDROID|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
133 changes: 0 additions & 133 deletions NewMod/Buttons/AssignButton.cs

This file was deleted.

33 changes: 0 additions & 33 deletions NewMod/Buttons/CaptureButton.cs

This file was deleted.

60 changes: 0 additions & 60 deletions NewMod/Buttons/DrainButton.cs

This file was deleted.

Loading
Loading