Skip to content

Commit fa025c3

Browse files
committed
Version 0.15 alpha.
1 parent 05a76ba commit fa025c3

File tree

6 files changed

+34
-8
lines changed

6 files changed

+34
-8
lines changed

platform-windows/json-scada.nsi

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ RequestExecutionLevel admin
1515

1616
;--------------------------------
1717

18-
!define VERSION "v.0.14"
19-
!define VERSION_ "0.14.0.0"
18+
!define VERSION "v.0.15"
19+
!define VERSION_ "0.15.0.0"
2020

2121
Function .onInit
2222
System::Call 'keexrnel32::CreateMutexA(i 0, i 0, t "MutexJsonScadaInstall") i .r1 ?e'
@@ -237,7 +237,7 @@ SetRegView 64
237237
File /a "..\platform-windows\*.ps1"
238238
File /a "..\platform-windows\nssm.exe"
239239
File /a "..\platform-windows\vc_redist.x64.exe"
240-
File /a "..\platform-windows\dotnet-runtime-5.0.8-win-x64.exe"
240+
File /a "..\platform-windows\dotnet-runtime-5.0.10-win-x64.exe"
241241

242242
; Visual C redist: needed for timescaledb
243243
;ReadRegStr $0 HKLM "SOFTWARE\Microsoft\VisualStudio\14.0\VC\Runtimes\x86" "Major"
@@ -251,7 +251,7 @@ SetRegView 64
251251
Sleep 1000
252252
Exec '"$INSTDIR\platform-windows\vc_redist.x64.exe" /install /passive /quiet'
253253
Sleep 1000
254-
Exec '"$INSTDIR\platform-windows\dotnet-runtime-5.0.8-win-x64.exe" /install /passive /quiet'
254+
Exec '"$INSTDIR\platform-windows\dotnet-runtime-5.0.10-win-x64.exe" /install /passive /quiet'
255255

256256
SetOutPath $INSTDIR\platform-windows\nodejs-runtime
257257
File /a /r "..\platform-windows\nodejs-runtime\*.*"
@@ -335,6 +335,9 @@ SetRegView 64
335335
SetOutPath $INSTDIR\src\shell-api
336336
File /a /r "..\src\shell-api\*.*"
337337

338+
SetOutPath $INSTDIR\src\backup-mongo
339+
File /a /r "..\src\backup-mongo\*.*"
340+
338341
SetOutPath $INSTDIR\src\oshmi2json
339342
File /a /r "..\src\oshmi2json\*.*"
340343

platform-windows/release_notes.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,29 @@ Inkscape+SAGE:
122122

123123
-------------------------------------------------------------------
124124

125+
Notes for version 0.15:
126+
127+
- Default login credentials: username=admin password=jsonscada
128+
- Chromium updated to 93.0.4577.82.
129+
- Telegraf updated to 1.20.0.
130+
- Grafana updated to 8.1.3.
131+
- Possibility of multiple cs_data_processor instances.
132+
- Possibility to direct mongo queries to secondary servers for various modules using environement variables.
133+
- New tool to create backup scripts.
134+
- Various fixes and enhancements for viewers.
135+
- Fixed tags created by UI, protocol source addressing fields recorded as numeric type whenever possible.
136+
- DotNet runtime updated to 5.0.10.
137+
138+
Requirements:
139+
140+
- Windows 10 64 bits or Server 2016, Windows PowerShell.
141+
- Administrative rights. Corporative Windows policies may cause problems with the creation of services and use of TCP ports.
142+
- Free TCP ports 27017, 5432, 80, 8080, 3000, 9000. Other ports may be required for optional services and protocols.
143+
- If the server already has MongoDB, PostgreSQL, Grafana, Nginx or another webserver, please uninstall, disable or watch out for possible conflicts.
144+
- Do not update previously installed JSON-SCADA. Please uninstall previous JSON-SCADA versions before installing a new version.
145+
146+
-------------------------------------------------------------------
147+
125148
Notes for version 0.14:
126149

127150
- Default login credentials: username=admin password=jsonscada

src/htdocs/i18n/messages_i18n-en_us.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.14',
7+
VersaoProduto: '0.15',
88

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

src/htdocs/i18n/messages_i18n-pt_br.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.14',
7+
VersaoProduto: '0.15',
88

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

src/htdocs/i18n/messages_i18n-uk_ua.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.14',
7+
VersaoProduto: '0.15',
88

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

src/htdocs/i18n/messages_i18n.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: '{json:scada}',
7-
VersaoProduto: '0.14',
7+
VersaoProduto: '0.15',
88

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

0 commit comments

Comments
 (0)