Skip to content

Commit e12cc76

Browse files
authored
Merge pull request #601 from starfi5h/pr-changelog
0.8.13 version + changelog
2 parents d07500a + 00845a6 commit e12cc76

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

.github/scripts/thunderstore_bundle.js

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ async function main() {
7979
copyApiIcon();
8080
copyReadme();
8181
copyApiReadme();
82-
appendChangelog();
82+
copyChangelog();
8383
appendApiChangelog();
8484
copyLicenses();
8585
copyApiLicense();
@@ -123,8 +123,8 @@ function generateManifest() {
123123
BEPINEX_DEPENDENCY,
124124
`nebula-${apiPluginInfo.name}-${apiPluginInfo.version}`,
125125
"PhantomGamers-IlLine-1.0.0",
126-
"CommonAPI-CommonAPI-1.5.6",
127-
"starfi5h-BulletTime-1.2.9",
126+
"CommonAPI-CommonAPI-1.5.7",
127+
"starfi5h-BulletTime-1.2.10",
128128
],
129129
website_url: "https://github.com/hubastard/nebula"
130130
};
@@ -172,11 +172,8 @@ function copyApiReadme() {
172172
);
173173
}
174174

175-
function appendChangelog() {
176-
appendFileSync(
177-
join(DIST_NEBULA_FOLDER, README_PATH),
178-
"\n" + readFileSync(CHANGELOG_PATH)
179-
);
175+
function copyChangelog() {
176+
copyFileSync(CHANGELOG_PATH, join(DIST_NEBULA_FOLDER, CHANGELOG_PATH));
180177
}
181178

182179
function appendApiChangelog() {

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## Changelog
22

3+
0.8.13:
4+
5+
- @starfi5h: Fix compilation with 0.9.27.15466
6+
- @starfi5h: Add -newgame launch option for dedicated server
7+
8+
<details>
9+
<summary>All changes</summary>
10+
311
0.8.12:
412

513
- @PhantomGamers: Remove exe targeting to support game pass version
@@ -239,3 +247,5 @@
239247
0.2.0:
240248

241249
- initial release on thunderstore
250+
251+
</details>

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Please do keep in mind that this mod is still in heavy development, it may still
1414

1515
- Stable version of the mod can be downloaded from [Thunderstore](https://dsp.thunderstore.io/package/nebula/NebulaMultiplayerMod/) (Recommended).
1616
- 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).
17+
- To connect, check [hosting and joining guide](https://github.com/hubastard/nebula/wiki/Hosting-and-Joining).
1718

1819
## API Documentation
1920

@@ -25,9 +26,10 @@ The chat window can opened/closed using Alt + Backtick (configurable in game set
2526

2627
## What is the current status?
2728

28-
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.
29+
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.
2930

30-
Here is a short list of what is currently implemented
31+
<details>
32+
<summary>Here is a short list of what is currently implemented</summary>
3133

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

63+
</details>
64+
6165
## How can I contribute?
6266

6367
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).

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "0.8.12",
3+
"version": "0.8.13",
44
"assemblyVersion": {
55
"precision": "build"
66
},

0 commit comments

Comments
 (0)