diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e32eb28..05fb4b80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 0.0.5 (2024-09-25) + +### sg2002_recamera_emmc + +- New features: + - update node-red interface style + - supervisor + - add APIs for uploading models and getting model information + - allow CORS + +- Fix bugs: + - fix the problem that some configuration files did not exist + - node-red start failed when reset system + - solve some supervisor bugs + +- Docs: + - add compilation notes + ## 0.0.4 (2024-09-12) ### sg2002_recamera_emmc diff --git a/README.md b/README.md index 92f12661..e2ab4066 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,12 @@ - Recommended OS: Ubuntu 20.04.6 LTS - Recommended C/C++: GCC/G++ 9.4.0 +- Recommended minimum free space: 30 GB - Install dependencies ```bash sudo apt-get update + sudo apt-get install libbz2-dev sudo apt-get install -y build-essential ninja-build automake autoconf libtool wget curl git gcc \ libssl-dev bc slib squashfs-tools android-sdk-libsparse-utils android-sdk-ext4-utils jq \ cmake python3-distutils tclsh scons parallel ssh-client tree python3-dev python3-pip \ diff --git a/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/custom.css b/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/custom.css new file mode 100644 index 00000000..64817a24 --- /dev/null +++ b/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/custom.css @@ -0,0 +1,24 @@ +#red-ui-header { + background-color: white; +} + +#red-ui-header .red-ui-deploy-button { + background: #8CC020; +} + +#red-ui-header .red-ui-deploy-button:hover { + background: #8CC020; +} + +#red-ui-header #red-ui-header-button-deploy.disabled { + background: var(--red-ui-tab-background-inactive); +} + +#red-ui-header #red-ui-header-button-deploy.disabled+#red-ui-header-button-deploy-options { + background: var(--red-ui-tab-background-inactive); +} + +#red-ui-header .button { + border-left: none; + border-right: none; +} diff --git a/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/settings.js b/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/settings.js index d8c834fc..984f27e3 100644 --- a/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/settings.js +++ b/external/buildroot/board/cvitek/CV181X/overlay/usr/lib/node_modules/node-red/settings.js @@ -379,6 +379,15 @@ module.exports = { */ //theme: "", + page: { + title: "reCamera", + css: "/usr/lib/node_modules/node-red/custom.css" + }, + header: { + title: ' ', + image: null, + }, + /** To disable the 'Welcome to Node-RED' tour that is displayed the first * time you access the editor for each release of Node-RED, set this to false */