Skip to content

Commit 87f61bd

Browse files
authored
Merge branch 'master' into GogoVega-patch-2
2 parents 9402968 + 95156a9 commit 87f61bd

File tree

446 files changed

+21114
-7241
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

446 files changed

+21114
-7241
lines changed

.github/workflows/deploy-github.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ jobs:
1313
node-version: '16'
1414

1515
- name: Install dependencies
16-
run: yarn install --frozen-lockfile
16+
run: npm ci
1717

1818
- name: Check for linting errors
19-
run: yarn test
19+
run: npm run test
2020

2121
- name: Build production website
22-
run: yarn build
22+
run: npm run build
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2325

2426
- name: Deploy to GitHub Pages
2527
uses: peaceiris/actions-gh-pages@v3

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,21 @@ jobs:
1212
node-version: "16"
1313

1414
- name: Install dependencies
15-
run: yarn install --frozen-lockfile
15+
run: npm ci
1616

1717
- name: Check for linting errors
18-
run: yarn lint
18+
run: npm run lint
1919

2020
- name: Build production website
21-
run: yarn build
21+
run: npm run build:preview
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2224

2325
- name: Netlify Actions
2426
uses: nwtgck/[email protected]
2527
with:
2628
publish-dir: "./public"
2729
github-token: ${{ secrets.GITHUB_TOKEN }}
28-
netlify-config-path: ./netlify.toml
2930
env:
3031
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN_NRCHKB_WIKI }}
3132
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_NRCHKB_WIKI }}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ bin
77
.vscode
88

99
*.iml
10+
11+
12+
data/nrchkb/contributors.json
13+
data/nrchkb/contributorsMap.json

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn lint
4+
npm run lint

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.51.0](https://github.com/NRCHKB/NRCHKB.github.io/compare/v1.50.3...v1.51.0) (2022-02-22)
6+
7+
8+
### Features
9+
10+
* add relation between Camera* Services to Camera Control Service ([5ae7c84](https://github.com/NRCHKB/NRCHKB.github.io/commit/5ae7c8496e5e29de481e83b34cee51d6a830c5c8))
11+
* disable bottom alert ([49915b0](https://github.com/NRCHKB/NRCHKB.github.io/commit/49915b0e256eee609f8a4bd7af57cc1adbc16c84))
12+
* Faucet Service + Valve Service ([#103](https://github.com/NRCHKB/NRCHKB.github.io/issues/103)) ([2086fff](https://github.com/NRCHKB/NRCHKB.github.io/commit/2086fff8a5552bc4a5ff14c02acdc73ce8441c19))
13+
* Main page improvements ([7e00e9b](https://github.com/NRCHKB/NRCHKB.github.io/commit/7e00e9bd8fc9dc68ada7b8c20e3be90d4ba372d2))
14+
* make alert background on light theme more contrast ([ba6a07d](https://github.com/NRCHKB/NRCHKB.github.io/commit/ba6a07da9d118b1c84fde642b863b795ad91c95d))
15+
* Update HomePage, Introduction and Nodes + Alert Style ([#112](https://github.com/NRCHKB/NRCHKB.github.io/issues/112)) ([0f3d2c8](https://github.com/NRCHKB/NRCHKB.github.io/commit/0f3d2c82935e9c1db0e2be7ba5e7d94b22cb5ce3))
16+
17+
18+
### Bug Fixes
19+
20+
* Custom config path for netlify ([#115](https://github.com/NRCHKB/NRCHKB.github.io/issues/115)) ([f99e451](https://github.com/NRCHKB/NRCHKB.github.io/commit/f99e451dc54fbba8754d823eaa517a6b24d89364))
21+
* netlify preview url ([622caa8](https://github.com/NRCHKB/NRCHKB.github.io/commit/622caa8c8b06bc02eb6b5f16f1ceb0773a263141))
22+
* netlify.toml lines nesting ([ad027fc](https://github.com/NRCHKB/NRCHKB.github.io/commit/ad027fcb80c0eff73e75d215071aede881e965e6))
23+
* Probably correct netlify preview config ([9cff781](https://github.com/NRCHKB/NRCHKB.github.io/commit/9cff7818b8dc6951d81bfff52701f87667fff433))
24+
* Resolve Problem with non-stationary sidebar ([c40a7b0](https://github.com/NRCHKB/NRCHKB.github.io/commit/c40a7b0deb90c7b6dcf4fea26b1bf8aa9fc7ef26))
25+
* Resolve Problem with Scrollbar (docs-menu) ([9dc652a](https://github.com/NRCHKB/NRCHKB.github.io/commit/9dc652a2ad37c1f57938d4b941c137e08ef5bc8c))
26+
527
### [1.50.3](https://github.com/NRCHKB/NRCHKB.github.io/compare/v1.50.2...v1.50.3) (2022-01-06)
628

729

archetypes/blog.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ title: "{{ replace .Name "-" " " | title }}"
33
description: ""
44
lead: ""
55
date: {{ .Date }}
6-
lastmod: {{ .Date }}
76
draft: true
87
weight: 50
98
images: ["{{ .Name | urlize }}.jpg"]
10-
contributors: []
119
---
1210

1311
{{< img src="{{ .Name | urlize }}.jpg" alt="{{ replace .Name "-" " " | title }}" caption="{{ replace .Name "-" " " | title }}" class="wide" >}}

archetypes/default.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "{{ replace .Name "-" " " | title }}"
33
description: ""
44
date: {{ .Date }}
5-
lastmod: {{ .Date }}
65
draft: true
76
images: []
87
---

archetypes/wiki.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "{{ replace .Name "-" " " | title }}"
33
description: ""
44
lead: ""
55
date: {{ .Date }}
6-
lastmod: {{ .Date }}
76
draft: true
87
images: []
98
menu:
@@ -15,7 +14,6 @@ service:
1514
name: ""
1615
weight: 999
1716
toc: true
18-
contributors: []
1917
---
2018

2119
{{< img src="{{ .Name | urlize }}.jpg" alt="{{ replace .Name "-" " " | title }}" caption="{{ replace .Name "-" " " | title }}" >}}

assets/scss/common/_global.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ body {
107107
position: -webkit-sticky;
108108
position: sticky;
109109
top: 4rem;
110-
z-index: 1000;
111110
height: calc(100vh - 4rem);
112111
}
113112
}

assets/scss/components/_alerts.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030

3131
.alert-warning {
32-
background: $beige;
32+
background: #1b1f221f;
3333
color: $black;
3434
}
3535

0 commit comments

Comments
 (0)