Skip to content

Commit

Permalink
Merge pull request #601 from starfi5h/pr-changelog
Browse files Browse the repository at this point in the history
0.8.13 version + changelog
  • Loading branch information
starfi5h authored Mar 11, 2023
2 parents d07500a + 00845a6 commit e12cc76
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
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

0 comments on commit e12cc76

Please sign in to comment.