Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.8.13 version + changelog #601

Merged
merged 1 commit into from
Mar 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
13 changes: 5 additions & 8 deletions .github/scripts/thunderstore_bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async function main() {
copyApiIcon();
copyReadme();
copyApiReadme();
appendChangelog();
copyChangelog();
appendApiChangelog();
copyLicenses();
copyApiLicense();
Expand Down Expand Up @@ -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"
};
Expand Down Expand Up @@ -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() {
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changelog

0.8.13:

- @starfi5h: Fix compilation with 0.9.27.15466
- @starfi5h: Add -newgame launch option for dedicated server

<details>
<summary>All changes</summary>

0.8.12:

- @PhantomGamers: Remove exe targeting to support game pass version
Expand Down Expand Up @@ -239,3 +247,5 @@
0.2.0:

- initial release on thunderstore

</details>
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
<details>
<summary>Here is a short list of what is currently implemented</summary>

- [x] Server / Client communication
- [x] Custom Multiplayer menu in-game
Expand Down Expand Up @@ -58,6 +60,8 @@ Here is a short list of what is currently implemented
- [x] Server state persistence
- [x] Power network syncing

</details>

## 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).
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down