Skip to content

Commit 7877e13

Browse files
committed
Version 0.46-alpha.
1 parent ced0724 commit 7877e13

11 files changed

+123
-41
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
4848
- MongoDB as the real-time core database, persistence layer, config store, SOE historian.
4949
- Event-based realtime async data processing with MongoDB Change Streams.
5050
- Portability and modular interoperability over Linux, Windows, Mac OSX, x86/64, ARM.
51-
- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.45-alpha).
51+
- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.46-alpha).
5252
- Unlimited tags, servers, and users.
5353
- Horizontal scalability, from a single computer to big clusters (MongoDB-sharding), Docker containers, VMs, Kubernetes, cloud, or hybrid deployments.
5454
- Modular distributed architecture. Lightweight redundant data acquisition nodes can connect securely over TLS to the database server. E.g. a Raspberry PI can be a data acquisition node.
@@ -90,8 +90,10 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
9090
## Documentation
9191

9292
- [Generic Install Guide](https://github.com/riclolsen/json-scada/blob/master/docs/install.md)
93-
- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.45-alpha)
94-
- [RedHat/Rocky Linux Installer](https://github.com/riclolsen/json-scada/blob/master/docs/install.md#rhel94-and-compatible-systems-automated-installation)
93+
- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.46-alpha)
94+
- [RedHat/Rocky Linux Installer Script](https://github.com/riclolsen/json-scada/blob/master/docs/install.md#rhel94-and-compatible-systems-automated-installation)
95+
- [Ubuntu Linux Installer Script](https://github.com/riclolsen/json-scada/blob/master/docs/install.md#ubuntu-2404-scripted-installation)
96+
- [Generic Install Guide](https://github.com/riclolsen/json-scada/blob/master/docs/install.md)
9597
- [Docker Demo](https://github.com/riclolsen/json-scada/blob/master/demo-docker/README.md)
9698
- [Schema Documentation](https://github.com/riclolsen/json-scada/blob/master/docs/schema.md)
9799
- [Config File](https://github.com/riclolsen/json-scada/blob/master/conf/README.md)
@@ -169,6 +171,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
169171
- [x] Online Demo
170172
- [x] Docker Demo (docker-compose.yaml scripts)
171173
- [x] Install Script for RedHat/Rocky 9.4 Linux x86-64 and arm64
174+
- [x] Install Script for Ubuntu 24.04 Linux x86-64 and arm64
172175
- [ ] Linux Image / VM
173176
- [x] Supervisor (Linux process manager) examples
174177
- [x] Project IDX Configuration

index.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
4848
- MongoDB as the real-time core database, persistence layer, config store, SOE historian.
4949
- Event-based realtime async data processing with MongoDB Change Streams.
5050
- Portability and modular interoperability over Linux, Windows, Mac OSX, x86/64, ARM.
51-
- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.45-alpha).
51+
- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.46-alpha).
5252
- Unlimited tags, servers, and users.
5353
- Horizontal scalability, from a single computer to big clusters (MongoDB-sharding), Docker containers, VMs, Kubernetes, cloud, or hybrid deployments.
5454
- Modular distributed architecture. Lightweight redundant data acquisition nodes can connect securely over TLS to the database server. E.g. a Raspberry PI can be a data acquisition node.
@@ -90,9 +90,10 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
9090
## Documentation
9191

9292
- [Generic Install Guide](docs/install.md)
93-
- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.45-alpha)
94-
- [RedHat/Rocky Linux Installer](docs/install.md#rhel94-and-compatible-systems-automated-installation)
95-
- [Install Guide](docs/install.md)
93+
- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.46-alpha)
94+
- [RedHat/Rocky Linux Installer Script](docs/install.md#rhel94-and-compatible-systems-automated-installation)
95+
- [Ubuntu Linux Installer Script](docs/install.md#ubuntu-2404-scripted-installation)
96+
- [Generic Install Guide](docs/install.md)
9697
- [Docker Demo](demo-docker/README.md)
9798
- [Schema Documentation](docs/schema.md)
9899
- [Config File](conf/README.md)
@@ -171,6 +172,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
171172
- [x] Online Demo
172173
- [x] Docker Demo (docker-compose.yaml scripts)
173174
- [x] Install Script for RedHat/Rocky 9.4 Linux x86-64 and arm64
175+
- [x] Install Script for Ubuntu 24.04 Linux x86-64 and arm64
174176
- [ ] Linux Image / VM
175177
- [x] Supervisor (Linux process manager) examples
176178
- [x] Project IDX Configuration

platform-windows/json-scada.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ RequestExecutionLevel admin
2020

2121
;--------------------------------
2222

23-
!define VERSION "v.0.45"
24-
!define VERSION_ "0.45.0.0"
23+
!define VERSION "v.0.46"
24+
!define VERSION_ "0.46.0.0"
2525

2626
Function .onInit
2727
System::Call 'keexrnel32::CreateMutexA(p0, i1, t "MutexJsonScadaInstall")?e'

platform-windows/release_notes.txt

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,19 +135,47 @@ Inkscape+SAGE:
135135

136136
-------------------------------------------------------------------
137137

138+
Notes for version 0.46:
139+
140+
* NPM packages updated.
141+
* PostgreSQL ingestion: fixed errors when inserting/updating JSON data.
142+
* Events Viewer: limit overflow of columns with ellipsis.
143+
* Update Metabase to version 0.52.5.
144+
* Chromium updated to version 131.0.6778.265.
145+
* Grafana updated to 11.4.0.
146+
147+
To quickly run the system after installed, open the JSON-SCADA desktop folder and:
148+
149+
* On the JSON-SCADA desktop folder: execute "_Start_Services".
150+
* On the JSON-SCADA desktop folder: execute "_JSON SCADA WEB".
151+
* Default login credentials: username=admin password=jsonscada.
152+
* Metabase credentials: [email protected] password=jsonscada123.
153+
154+
Requirements and recommendations:
155+
156+
* Windows 10/11 64 bits or Server >=2019, Windows PowerShell. At least 20GB of free space in the "C:" drive.
157+
* Administrative rights. Corporate Windows policies may cause problems with the creation of services and the opening of TCP ports.
158+
* Free TCP ports 6688, 6689, 27017, 5432, 80, 8080, 3000, 3001, 9000. Other ports may be required for optional services and protocols.
159+
* If the server already has MongoDB, PostgreSQL, Grafana, Metabase, Nginx or another webserver, please uninstall, disable or watch out for possible conflicts.
160+
* Do not update previously installed JSON-SCADA. Please uninstall previous JSON-SCADA versions before installing a new version.
161+
* If using VirtualBox configure "paravirtualization interface"=KVM, otherwise Nodejs errors may occur.
162+
* MongoDB requires AVX instructions on x86 CPU.
163+
164+
-------------------------------------------------------------------
165+
138166
Notes for version 0.45:
139167

140168
* OPC-UA Client: improved performance, auto tagging and data types handling.
141169
* Tabular Viewer: selectable dark/light theme.
142170
* Viewers: better table alignment, improved feedback for commands.
171+
* Updated Excel worksheet config and service.
143172

144173
To quickly run the system after installed, open the JSON-SCADA desktop folder and:
145174

146175
* On the JSON-SCADA desktop folder: execute "_Start_Services".
147176
* On the JSON-SCADA desktop folder: execute "_JSON SCADA WEB".
148177
* Default login credentials: username=admin password=jsonscada.
149178
* Metabase credentials: [email protected] password=jsonscada123.
150-
* Updated Excel worksheet config and service.
151179

152180
Requirements and recommendations:
153181

src/AdminUI/package-lock.json

Lines changed: 42 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/AdminUI/public/i18n/messages_i18n-en_us.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Internationalization Messages
2-
// {json:scada} - Copyright (c) 2008-2024 - Ricardo L. Olsen
2+
// {json:scada} - Copyright (c) 2008-2025 - Ricardo L. Olsen
33

44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.45',
7+
VersaoProduto: '0.46',
88

99
NomeVisorTelas: 'Display Viewer',
1010
NomeVisorEventos: 'Events Viewer',

src/AdminUI/public/i18n/messages_i18n-pt_br.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Internationalization Messages
2-
// {json:scada} - Copyright (c) 2008-2024 - Ricardo L. Olsen
2+
// {json:scada} - Copyright (c) 2008-2025 - Ricardo L. Olsen
33

44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.45',
7+
VersaoProduto: '0.46',
88

99
NomeVisorTelas: 'Visor de Telas',
1010
NomeVisorEventos: 'Visor de Eventos',

src/AdminUI/public/i18n/messages_i18n-uk_ua.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Internationalization Messages
2-
// {json:scada} - Copyright (c) 2008-2024 - Ricardo L. Olsen
2+
// {json:scada} - Copyright (c) 2008-2025 - Ricardo L. Olsen
33

44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.45',
7+
VersaoProduto: '0.46',
88

99
NomeVisorTelas: 'Перегляд ',
1010
NomeVisorEventos: 'Події',

src/AdminUI/public/i18n/messages_i18n.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Internationalization Messages
2-
// {json:scada} - Copyright (c) 2008-2024 - Ricardo L. Olsen
2+
// {json:scada} - Copyright (c) 2008-2025 - Ricardo L. Olsen
33

44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.45',
7+
VersaoProduto: '0.46',
88

99
NomeVisorTelas: 'Display Viewer',
1010
NomeVisorEventos: 'Events Viewer',

src/AdminUI/public/release_notes.txt

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,19 +135,47 @@ Inkscape+SAGE:
135135

136136
-------------------------------------------------------------------
137137

138+
Notes for version 0.46:
139+
140+
* NPM packages updated.
141+
* PostgreSQL ingestion: fixed errors when inserting/updating JSON data.
142+
* Events Viewer: limit overflow of columns with ellipsis.
143+
* Update Metabase to version 0.52.5.
144+
* Chromium updated to version 131.0.6778.265.
145+
* Grafana updated to 11.4.0.
146+
147+
To quickly run the system after installed, open the JSON-SCADA desktop folder and:
148+
149+
* On the JSON-SCADA desktop folder: execute "_Start_Services".
150+
* On the JSON-SCADA desktop folder: execute "_JSON SCADA WEB".
151+
* Default login credentials: username=admin password=jsonscada.
152+
* Metabase credentials: [email protected] password=jsonscada123.
153+
154+
Requirements and recommendations:
155+
156+
* Windows 10/11 64 bits or Server >=2019, Windows PowerShell. At least 20GB of free space in the "C:" drive.
157+
* Administrative rights. Corporate Windows policies may cause problems with the creation of services and the opening of TCP ports.
158+
* Free TCP ports 6688, 6689, 27017, 5432, 80, 8080, 3000, 3001, 9000. Other ports may be required for optional services and protocols.
159+
* If the server already has MongoDB, PostgreSQL, Grafana, Metabase, Nginx or another webserver, please uninstall, disable or watch out for possible conflicts.
160+
* Do not update previously installed JSON-SCADA. Please uninstall previous JSON-SCADA versions before installing a new version.
161+
* If using VirtualBox configure "paravirtualization interface"=KVM, otherwise Nodejs errors may occur.
162+
* MongoDB requires AVX instructions on x86 CPU.
163+
164+
-------------------------------------------------------------------
165+
138166
Notes for version 0.45:
139167

140168
* OPC-UA Client: improved performance, auto tagging and data types handling.
141169
* Tabular Viewer: selectable dark/light theme.
142170
* Viewers: better table alignment, improved feedback for commands.
171+
* Updated Excel worksheet config and service.
143172

144173
To quickly run the system after installed, open the JSON-SCADA desktop folder and:
145174

146175
* On the JSON-SCADA desktop folder: execute "_Start_Services".
147176
* On the JSON-SCADA desktop folder: execute "_JSON SCADA WEB".
148177
* Default login credentials: username=admin password=jsonscada.
149178
* Metabase credentials: [email protected] password=jsonscada123.
150-
* Updated Excel worksheet config and service.
151179

152180
Requirements and recommendations:
153181

src/AdminUI/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
import { useRouter } from 'vue-router'
120120
import { STORAGE_KEY } from './i18n'
121121
122-
const version = ref('v0.45-alpha')
122+
const version = ref('v0.46-alpha')
123123
const router = useRouter()
124124
const theme = ref('dark')
125125
const vuetifyTheme = useTheme()

0 commit comments

Comments
 (0)