From 6d7e53b19da9466801de7ee195a6f1946ae36172 Mon Sep 17 00:00:00 2001 From: f-w Date: Fri, 27 Dec 2024 11:01:35 -0800 Subject: [PATCH] adjust dark mode --- client/src/components/shared/combo-table.vue | 2 +- client/src/components/shared/editor.vue | 18 ++++++++++++++++++ docs/docs/getting-started/installation.md | 4 ++-- docs/docs/miscellaneous/developer-notes.md | 2 +- docs/docs/miscellaneous/upgrade.md | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 7 files changed, 27 insertions(+), 9 deletions(-) diff --git a/client/src/components/shared/combo-table.vue b/client/src/components/shared/combo-table.vue index 0b59fe283..1040d6bd0 100644 --- a/client/src/components/shared/combo-table.vue +++ b/client/src/components/shared/combo-table.vue @@ -89,7 +89,7 @@ - + diff --git a/docs/docs/getting-started/installation.md b/docs/docs/getting-started/installation.md index feba339f2..46d453e42 100644 --- a/docs/docs/getting-started/installation.md +++ b/docs/docs/getting-started/installation.md @@ -89,10 +89,10 @@ Installation approach differs by your purpose - wait till console displays `Server is running at http://0.0.0.0:3000/api` - browse to http://localhost:3000 -The above commands installs the _main_ version, i.e. main branch tip of _NotifyBC_ GitHub repository. To install a specific version, say _v6.0.2_, run +The above commands installs the _main_ version, i.e. main branch tip of _NotifyBC_ GitHub repository. To install a specific version, say _v6.0.3_, run ```sh - git checkout tags/v6.0.2 -b v6.0.2 + git checkout tags/v6.0.3 -b v6.0.3 ``` after `cd NotifyBC`. A list of versions can be found [here](https://github.com/bcgov/NotifyBC/tags). diff --git a/docs/docs/miscellaneous/developer-notes.md b/docs/docs/miscellaneous/developer-notes.md index eec1ad1f5..3917a5f71 100644 --- a/docs/docs/miscellaneous/developer-notes.md +++ b/docs/docs/miscellaneous/developer-notes.md @@ -52,7 +52,7 @@ You can now browse to the local docs site [http://localhost:8080/NotifyBC](http: 1. update _version_ in _package.json_ 2. run `npm i` -3. globally find and replace older version number referenced in _docs_ folder +3. globally find and replace older version number referenced in _docs_ folder wherever appropriate 4. update _version_ _appVersion_ in _helm/Chart.yaml_ (major/minor only) 5. update [What's new](../getting-started/what's-new.md) (major/minor only) 6. create a new Github release diff --git a/docs/docs/miscellaneous/upgrade.md b/docs/docs/miscellaneous/upgrade.md index 38cf31862..8df400e2c 100644 --- a/docs/docs/miscellaneous/upgrade.md +++ b/docs/docs/miscellaneous/upgrade.md @@ -91,7 +91,7 @@ After above changes are addressed, to upgrade _NotifyBC_ to v6, Replace - - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.2_. + - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.3_. - if _NotifyBC_ is deployed to Kubernetes using Helm, 1. backup MongoDB database @@ -102,7 +102,7 @@ After above changes are addressed, to upgrade _NotifyBC_ to v6, helm upgrade -f helm/platform-specific/.yaml -f helm/values.local.yaml helm ``` Replace - - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.2_. + - _v6.x.x_ with a v6 release, preferably latest, found in GitHub such as _v6.0.3_. - \ with installed helm release name - \ with _openshift_ or _aks_ depending on your platform diff --git a/package-lock.json b/package-lock.json index 26a5d9925..64a9a40a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "notify-bc", - "version": "6.0.2", + "version": "6.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "notify-bc", - "version": "6.0.2", + "version": "6.0.3", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index c506471b3..ae4fac536 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notify-bc", - "version": "6.0.2", + "version": "6.0.3", "dbSchemaVersion": "0.9.0", "description": "A versatile notification API server", "author": "f-w",