diff --git a/.gitignore b/.gitignore index ed57140..4758fbf 100644 --- a/.gitignore +++ b/.gitignore @@ -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. ## diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..58ea2c0 --- /dev/null +++ b/build.sh @@ -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/ . \ No newline at end of file diff --git a/buildResources/CHANGELOG.md b/buildResources/CHANGELOG.md new file mode 100644 index 0000000..5df5983 --- /dev/null +++ b/buildResources/CHANGELOG.md @@ -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 \ No newline at end of file diff --git a/buildResources/icon.png b/buildResources/icon.png new file mode 100644 index 0000000..b5c73ee Binary files /dev/null and b/buildResources/icon.png differ diff --git a/buildResources/manifest.json b/buildResources/manifest.json new file mode 100644 index 0000000..3caddb4 --- /dev/null +++ b/buildResources/manifest.json @@ -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" + ] +} \ No newline at end of file