Skip to content

Commit

Permalink
Version 0.15 alpha.
Browse files Browse the repository at this point in the history
  • Loading branch information
riclolsen committed Sep 24, 2021
1 parent 05a76ba commit fa025c3
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 8 deletions.
11 changes: 7 additions & 4 deletions platform-windows/json-scada.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ RequestExecutionLevel admin

;--------------------------------

!define VERSION "v.0.14"
!define VERSION_ "0.14.0.0"
!define VERSION "v.0.15"
!define VERSION_ "0.15.0.0"

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

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

SetOutPath $INSTDIR\platform-windows\nodejs-runtime
File /a /r "..\platform-windows\nodejs-runtime\*.*"
Expand Down Expand Up @@ -335,6 +335,9 @@ SetRegView 64
SetOutPath $INSTDIR\src\shell-api
File /a /r "..\src\shell-api\*.*"

SetOutPath $INSTDIR\src\backup-mongo
File /a /r "..\src\backup-mongo\*.*"

SetOutPath $INSTDIR\src\oshmi2json
File /a /r "..\src\oshmi2json\*.*"

Expand Down
23 changes: 23 additions & 0 deletions platform-windows/release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,29 @@ Inkscape+SAGE:

-------------------------------------------------------------------

Notes for version 0.15:

- Default login credentials: username=admin password=jsonscada
- Chromium updated to 93.0.4577.82.
- Telegraf updated to 1.20.0.
- Grafana updated to 8.1.3.
- Possibility of multiple cs_data_processor instances.
- Possibility to direct mongo queries to secondary servers for various modules using environement variables.
- New tool to create backup scripts.
- Various fixes and enhancements for viewers.
- Fixed tags created by UI, protocol source addressing fields recorded as numeric type whenever possible.
- DotNet runtime updated to 5.0.10.

Requirements:

- Windows 10 64 bits or Server 2016, Windows PowerShell.
- Administrative rights. Corporative Windows policies may cause problems with the creation of services and use of TCP ports.
- Free TCP ports 27017, 5432, 80, 8080, 3000, 9000. Other ports may be required for optional services and protocols.
- If the server already has MongoDB, PostgreSQL, Grafana, Nginx or another webserver, please uninstall, disable or watch out for possible conflicts.
- Do not update previously installed JSON-SCADA. Please uninstall previous JSON-SCADA versions before installing a new version.

-------------------------------------------------------------------

Notes for version 0.14:

- Default login credentials: username=admin password=jsonscada
Expand Down
2 changes: 1 addition & 1 deletion src/htdocs/i18n/messages_i18n-en_us.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
VersaoProduto: '0.14',
VersaoProduto: '0.15',

NomeVisorTelas: 'Display Viewer',
NomeVisorEventos: 'Events Viewer',
Expand Down
2 changes: 1 addition & 1 deletion src/htdocs/i18n/messages_i18n-pt_br.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
VersaoProduto: '0.14',
VersaoProduto: '0.15',

NomeVisorTelas: 'Visor de Telas',
NomeVisorEventos: 'Visor de Eventos',
Expand Down
2 changes: 1 addition & 1 deletion src/htdocs/i18n/messages_i18n-uk_ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
VersaoProduto: '0.14',
VersaoProduto: '0.15',

NomeVisorTelas: 'Перегляд ',
NomeVisorEventos: 'Події',
Expand Down
2 changes: 1 addition & 1 deletion src/htdocs/i18n/messages_i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var Msg =
{
NomeProduto: '{json:scada}',
VersaoProduto: '0.14',
VersaoProduto: '0.15',

NomeVisorTelas: 'Display Viewer',
NomeVisorEventos: 'Events Viewer',
Expand Down

0 comments on commit fa025c3

Please sign in to comment.