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

Add wiki page creator; add frigate calculator #17

Merged
merged 9 commits into from
Aug 5, 2024
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
11 changes: 5 additions & 6 deletions .github/workflows/BuildAndDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,20 @@ on:
push:
branches: ['main']

env:
node-version: 20

jobs:
build:
environment: github-pages
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [19.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ env.node-version }}
cache: 'npm'

- name: Setup Secrets
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/TestBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ jobs:
uses: actions/checkout@v4

- name: Test Build
uses: Lenni009/test-build-vite-action@main
uses: Lenni009/test-build-vite-action@main
with:
node-version: 20
20 changes: 3 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nmscd.web",
"version": "2.3.0",
"version": "2.4.0",
"scripts": {
"build": "npm-run-all --sequential setup:* live:* sass:* template:*",
"setup": "npm i && npm-run-all --sequential setup:* live:*",
Expand All @@ -23,7 +23,7 @@
"description": "NMSCD Home Website",
"homepage": "https://nmscd.com",
"author": "Kurt Lourens",
"license": "ISC",
"license": "GPL-3.0-only",
"devDependencies": {
"alive-server": "^1.3.0",
"canvas": "^2.11.2",
Expand Down
Binary file added public/assets/img/frigate-calculator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/img/wikipagecreator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions template/data/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,36 @@
"url": "https://github.com/roie-r/exml_2_lua"
}
]
},
{
"title": "NMS Wiki Page Creator",
"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.",
"imageUrl": "/assets/img/wikipagecreator.png",
"links": [
{
"title": "View project website",
"url": "https://wiki.nmscd.com/"
},
{
"title": "View repository",
"url": "https://github.com/NMSCD/NMSWikiPageCreator"
}
]
},
{
"title": "Frigate Calculator",
"description": "Get a rating for a frigate before buying it.",
"imageUrl": "/assets/img/frigate-calculator.png",
"links": [
{
"title": "View project website",
"url": "https://nmscd.com/frigate-calculator"
},
{
"title": "View repository",
"url": "https://github.com/NMSCD/frigate-calculator"
}
]
}
]
}