Skip to content

Commit 0821f7f

Browse files
authored
Add wiki page creator; add frigate calculator (#17)
2 parents ce2b4cb + a70db6f commit 0821f7f

File tree

7 files changed

+43
-26
lines changed

7 files changed

+43
-26
lines changed

.github/workflows/BuildAndDeploy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@ on:
77
push:
88
branches: ['main']
99

10+
env:
11+
node-version: 20
12+
1013
jobs:
1114
build:
1215
environment: github-pages
1316
runs-on: ubuntu-latest
1417

15-
strategy:
16-
matrix:
17-
node-version: [19.x]
18-
1918
steps:
2019
- uses: actions/checkout@v4
21-
- name: Use Node.js ${{ matrix.node-version }}
20+
- name: Use Node.js ${{ env.node-version }}
2221
uses: actions/setup-node@v4
2322
with:
24-
node-version: ${{ matrix.node-version }}
23+
node-version: ${{ env.node-version }}
2524
cache: 'npm'
2625

2726
- name: Setup Secrets

.github/workflows/TestBuild.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Test Build
20-
uses: Lenni009/test-build-vite-action@main
20+
uses: Lenni009/test-build-vite-action@main
21+
with:
22+
node-version: 20

package-lock.json

Lines changed: 3 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nmscd.web",
3-
"version": "2.3.0",
3+
"version": "2.4.0",
44
"scripts": {
55
"build": "npm-run-all --sequential setup:* live:* sass:* template:*",
66
"setup": "npm i && npm-run-all --sequential setup:* live:*",
@@ -23,7 +23,7 @@
2323
"description": "NMSCD Home Website",
2424
"homepage": "https://nmscd.com",
2525
"author": "Kurt Lourens",
26-
"license": "ISC",
26+
"license": "GPL-3.0-only",
2727
"devDependencies": {
2828
"alive-server": "^1.3.0",
2929
"canvas": "^2.11.2",
99.8 KB
Loading

public/assets/img/wikipagecreator.png

38.2 KB
Loading

template/data/projects.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,36 @@
339339
"url": "https://github.com/roie-r/exml_2_lua"
340340
}
341341
]
342+
},
343+
{
344+
"title": "NMS Wiki Page Creator",
345+
"description": "This project/website allows you to easily make the necessary code so that you can easily upload your discoveries to the No Man's Sky wiki.",
346+
"imageUrl": "/assets/img/wikipagecreator.png",
347+
"links": [
348+
{
349+
"title": "View project website",
350+
"url": "https://wiki.nmscd.com/"
351+
},
352+
{
353+
"title": "View repository",
354+
"url": "https://github.com/NMSCD/NMSWikiPageCreator"
355+
}
356+
]
357+
},
358+
{
359+
"title": "Frigate Calculator",
360+
"description": "Get a rating for a frigate before buying it.",
361+
"imageUrl": "/assets/img/frigate-calculator.png",
362+
"links": [
363+
{
364+
"title": "View project website",
365+
"url": "https://nmscd.com/frigate-calculator"
366+
},
367+
{
368+
"title": "View repository",
369+
"url": "https://github.com/NMSCD/frigate-calculator"
370+
}
371+
]
342372
}
343373
]
344374
}

0 commit comments

Comments
 (0)