Add custom builder

This commit is contained in:
RedBigz 2024-06-12 08:29:32 +10:00
parent 79bdba573b
commit 8952997d2d
5 changed files with 31 additions and 0 deletions

3
.gitignore vendored
View File

@ -2,6 +2,9 @@
lib/*
!lib/.gitkeep
.build
SpookTubeEX.zip
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##

5
build.sh Normal file
View File

@ -0,0 +1,5 @@
mkdir -p .build/BepInEx/plugins
cp buildResources/* .build
dotnet build -c release
cp -r bin/Release/net472/com.redbigz.SpookTubeEX.dll .build/BepInEx/plugins
jar -cf SpookTubeEX.zip -C .build/ .

View File

@ -0,0 +1,14 @@
### 1.1.0
- Add indicators during upload
### 1.0.3
- Made logs more readable
### 1.0.2
- Fixed RCE vulnerability in browser opener
### 1.0.1
- Fix file structure
### 1.0.0
- First release

BIN
buildResources/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,9 @@
{
"name": "SpookTubeEX",
"description": "Submit your home videos of monsters to THE DEEP DARK WEB and share them, completely for free!*",
"version_number": "1.1.0",
"website_url": "https://spook.redbigz.com/",
"dependencies": [
"BepInEx-BepInExPack-5.4.2100"
]
}