Skip to content

Commit 5f4c8ed

Browse files
Merge pull request #49 from Chia-Network/develop
Release 0.1.1
2 parents 87408fd + 9ffe11a commit 5f4c8ed

13 files changed

+505
-242
lines changed

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@ dist
44
dist-ssr
55
*.local
66
apps
7-
build
7+
build
8+
theme.json
9+
ExplorerCustom.svg
10+
RegistryCustom.svg
11+
TokenizationCustom.svg
12+
HeaderBrandingCustom.svg

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18.16

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ The Core Registry UI can be hosted as a web application, either for internal use
1616

1717
To host the UI on the web, use the [web-build.tar.gz file from the releases page](https://github.com/Chia-Network/core-registry-ui/releases). One of the simplest solutions is to uncompress these files into a [public S3 bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteAccessPermissionsReqd.html). These files could also be served by any webserver, such as Nginx or Apache.
1818

19+
#### Customize Colors and Icons
20+
21+
The Core Registry UI supports color and icon customization by site administrators. To customize the UI colors, copy the `theme.json.example` file to `theme.json` in the web root directory. Edit the new `theme.json` file and replace the default colors with any valid css color definitions.
22+
23+
To customize icons, place SVG files in the web root with the following names:
24+
25+
* RegistryCustom.svg
26+
* TokenizationCustom.svg
27+
* ExplorerCustom.svg
28+
* HeaderBrandingCustom.svg
29+
1930
## Contributing
2031

2132
Upon your first commit, you will automatically be added to the package.json file as a contributor.

app-builds.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module.exports = {
22
cadt: {
3-
tag: "1.3.10",
3+
tag: "1.3.11",
44
url: "https://github.com/Chia-Network/core-registry-cadt-ui/releases/download/{{tag}}/core-registry-cadt-ui-web-build.tar.gz",
55
},
66
climate_explorer: {
7-
tag: "1.1.13",
7+
tag: "1.1.14",
88
url: "https://github.com/Chia-Network/climate-explorer-ui/releases/download/{{tag}}/climate-explorer-ui-web-build.tar.gz",
99
},
1010
climate_tokenization_engine: {
11-
tag: "1.1.9",
11+
tag: "1.1.10",
1212
url: "https://github.com/Chia-Network/Climate-Tokenization-Engine-UI/releases/download/{{tag}}/climate-tokenization-engine-ui-web-build.tar.gz",
1313
},
1414
};

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "core-registry-ui",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"scripts": {
55
"start": "nf start -p 3001",
66
"electron": "electron .",
77
"electron-start": "node src/start-react",
88
"react-start": "vite --port 3000",
99
"react-start-browser": "vite --port 3001 --open",
1010
"sync-ui-apps": "rm -rf apps && node sync-apps.js",
11-
"build": "rm -rf dist && rm -rf build && npm run sync-ui-apps && vite build && cp -r apps build/apps",
11+
"build": "rm -rf dist && rm -rf build && npm run sync-ui-apps && vite build && cp -r apps build/apps && cp theme.json.example build",
1212
"serve": "vite preview",
1313
"test": "vitest",
1414
"electron:package:mac": "npm run build && electron-builder -m -c.extraMetadata.main=build/electron.js",

0 commit comments

Comments
 (0)