Skip to content

Commit

Permalink
Refact mod source code and add offline mod compatibility (#3)
Browse files Browse the repository at this point in the history
* Add utils submodule

* Add BepInEx-Utils submodule

* Move code to src

* update plugin version

* Fix multi server mission issue

* Update remote submodule

* remove spaces between usings

* Refact the source code

* Add offline progress mod compatibility

* Update actions to checkout submodules
  • Loading branch information
caioreix authored Nov 22, 2022
1 parent bcd1e70 commit 99ec169
Show file tree
Hide file tree
Showing 28 changed files with 263 additions and 514 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -401,4 +401,5 @@ FodyWeavers.xsd

Config.xml
build
dist
dist
.vscode
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "BepInEx-Utils"]
path = BepInEx-Utils
url = https://github.com/caioreix/BepInEx-Utils
1 change: 1 addition & 0 deletions BepInEx-Utils
Submodule BepInEx-Utils added at bec8d0
2 changes: 1 addition & 1 deletion BetterMissions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>BetterMissions</AssemblyName>
<Description>An VRising mod to do a better control of the servant missions.</Description>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
60 changes: 0 additions & 60 deletions Database/Database.cs

This file was deleted.

17 changes: 0 additions & 17 deletions Database/Mission.cs

This file was deleted.

14 changes: 0 additions & 14 deletions Entities/ServantMission.cs

This file was deleted.

25 changes: 0 additions & 25 deletions Entities/World.cs

This file was deleted.

34 changes: 0 additions & 34 deletions Logger/Config.cs

This file was deleted.

83 changes: 0 additions & 83 deletions Logger/Log.cs

This file was deleted.

67 changes: 0 additions & 67 deletions Logger/Pretty.cs

This file was deleted.

20 changes: 0 additions & 20 deletions Patch/PrefabCollectionSystem.cs

This file was deleted.

Loading

0 comments on commit 99ec169

Please sign in to comment.