From 00845a6625fc4cfb63643db61ae88186c87b8ba7 Mon Sep 17 00:00:00 2001
From: starfish <50672801+starfi5h@users.noreply.github.com>
Date: Sat, 11 Mar 2023 12:51:12 +0800
Subject: [PATCH] 0.8.13 version + changelog
---
.github/scripts/thunderstore_bundle.js | 13 +++++--------
CHANGELOG.md | 10 ++++++++++
README.md | 8 ++++++--
version.json | 2 +-
4 files changed, 22 insertions(+), 11 deletions(-)
diff --git a/.github/scripts/thunderstore_bundle.js b/.github/scripts/thunderstore_bundle.js
index c88252313..19c6aba04 100644
--- a/.github/scripts/thunderstore_bundle.js
+++ b/.github/scripts/thunderstore_bundle.js
@@ -79,7 +79,7 @@ async function main() {
copyApiIcon();
copyReadme();
copyApiReadme();
- appendChangelog();
+ copyChangelog();
appendApiChangelog();
copyLicenses();
copyApiLicense();
@@ -123,8 +123,8 @@ function generateManifest() {
BEPINEX_DEPENDENCY,
`nebula-${apiPluginInfo.name}-${apiPluginInfo.version}`,
"PhantomGamers-IlLine-1.0.0",
- "CommonAPI-CommonAPI-1.5.6",
- "starfi5h-BulletTime-1.2.9",
+ "CommonAPI-CommonAPI-1.5.7",
+ "starfi5h-BulletTime-1.2.10",
],
website_url: "https://github.com/hubastard/nebula"
};
@@ -172,11 +172,8 @@ function copyApiReadme() {
);
}
-function appendChangelog() {
- appendFileSync(
- join(DIST_NEBULA_FOLDER, README_PATH),
- "\n" + readFileSync(CHANGELOG_PATH)
- );
+function copyChangelog() {
+ copyFileSync(CHANGELOG_PATH, join(DIST_NEBULA_FOLDER, CHANGELOG_PATH));
}
function appendApiChangelog() {
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 13c8aae02..9414972c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
## Changelog
+0.8.13:
+
+- @starfi5h: Fix compilation with 0.9.27.15466
+- @starfi5h: Add -newgame launch option for dedicated server
+
+
+All changes
+
0.8.12:
- @PhantomGamers: Remove exe targeting to support game pass version
@@ -239,3 +247,5 @@
0.2.0:
- initial release on thunderstore
+
+
diff --git a/README.md b/README.md
index 5a75cd639..19157a142 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,7 @@ Please do keep in mind that this mod is still in heavy development, it may still
- Stable version of the mod can be downloaded from [Thunderstore](https://dsp.thunderstore.io/package/nebula/NebulaMultiplayerMod/) (Recommended).
- If you want to install the latest version of the mod, you can install pre-release versions be following the [installation guide](https://github.com/hubastard/nebula/wiki/Installing-a-pre-release-version).
+- To connect, check [hosting and joining guide](https://github.com/hubastard/nebula/wiki/Hosting-and-Joining).
## API Documentation
@@ -25,9 +26,10 @@ The chat window can opened/closed using Alt + Backtick (configurable in game set
## What is the current status?
-The mod is in very early stages of development and still in a proof of concept state. Major refactors will happen while the project grows. Join the [Discord Server](https://discord.gg/UHeB2QvgDa) if you want to see to latest state of our development.
+Major refactors will happen while the project grows. Join the [Discord Server](https://discord.gg/UHeB2QvgDa) if you want to see to latest state of our development.
-Here is a short list of what is currently implemented
+
+Here is a short list of what is currently implemented
- [x] Server / Client communication
- [x] Custom Multiplayer menu in-game
@@ -58,6 +60,8 @@ Here is a short list of what is currently implemented
- [x] Server state persistence
- [x] Power network syncing
+
+
## How can I contribute?
Please join our [Discord Server](https://discord.gg/UHeB2QvgDa) to ask if someone is already working on the task that you want to do. Once, you are done with your modification, simply submit a pull request. Contribution documentation can be found here: [Wiki](https://github.com/hubastard/nebula/wiki/Setting-up-a-development-environment).
diff --git a/version.json b/version.json
index e64be5445..df3ea78ac 100644
--- a/version.json
+++ b/version.json
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
- "version": "0.8.12",
+ "version": "0.8.13",
"assemblyVersion": {
"precision": "build"
},