Skip to content

Commit 1da2dc9

Browse files
committed
Version 6.31.
1 parent eddef5e commit 1da2dc9

7 files changed

+41
-13
lines changed

i18n/messages_i18n-en_us.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: 'OSHMI',
7-
VersaoProduto: '6.30',
7+
VersaoProduto: '6.31',
88

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

i18n/messages_i18n-pt_br.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: 'OSHMI',
7-
VersaoProduto: '6.30',
7+
VersaoProduto: '6.31',
88

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

i18n/messages_i18n-uk_ua.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: 'OSHMI',
7-
VersaoProduto: '6.30',
7+
VersaoProduto: '6.31',
88

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

i18n/messages_i18n.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var Msg =
55
{
66
NomeProduto: 'OSHMI',
7-
VersaoProduto: '6.30',
7+
VersaoProduto: '6.31',
88

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

installer/README.txt

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
OSHMI - Open Substation HMI
2-
Copyright 2008-2020 - Ricardo L. Olsen
2+
Copyright 2008-2023 - Ricardo L. Olsen
33
(https://www.linkedin.com/in/ricardo-olsen/)
44

55
This program is free software: you can redistribute it and/or modify
@@ -189,9 +189,29 @@ S7 Driver:
189189

190190
Inkscape+SAGE:
191191
- See http://wiki.inkscape.org/wiki/index.php/Compiling_Inkscape_on_Windows_with_MSYS2.
192+
193+
-------------------------------------------------------------------
194+
195+
Notes for version 6.31:
196+
197+
198+
IEC61850:
199+
- IEC61850 Client driver updated to version 0.6.
200+
201+
Chromium:
202+
- Updated to version 109.0.5414.120.
203+
192204

193205
-------------------------------------------------------------------
194206

207+
Notes for version 6.30:
208+
209+
DNP3 Client:
210+
- Dnp3 Client driver updated to version 0.80 based on OpenDNP3 3.1.2.
211+
- Support for pulse off commands.
212+
213+
-------------------------------------------------------------------
214+
195215
Notes for version 6.29:
196216

197217
IEC61850:

installer/oshmi.nsi

+4-8
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ RequestExecutionLevel user
1111

1212
;--------------------------------
1313

14-
!define VERSION "v.6.30"
15-
!define VERSION_ "6.30.0.0"
14+
!define VERSION "v.6.31"
15+
!define VERSION_ "6.31.0.0"
1616

1717
Function .onInit
1818
System::Call 'keexrnel32::CreateMutexA(i 0, i 0, t "MutexOshmiInstall") i .r1 ?e'
@@ -364,12 +364,10 @@ Section "" ; empty string makes it hidden, so would starting with -
364364
File /a "..\htdocs\images\*.*"
365365

366366
SetOutPath $INSTDIR\extprogs
367-
File /a "..\extprogs\dotnet-runtime-6.0.13-win-x86.exe"
367+
File /a "..\extprogs\dotnet-runtime-6.0.24-win-x86.exe"
368368
File /a "..\extprogs\vcredist_x86.exe"
369369
File /a "..\extprogs\vcredist_x86-2012.exe"
370370
File /a "..\extprogs\vcredist_x86-2013.exe"
371-
;File /a "..\extprogs\vcredist_x86-2015.exe"
372-
;File /a "..\extprogs\vcredist_x86-2017.exe"
373371
File /a "..\extprogs\vcredist_x86-15-17-19.exe"
374372

375373
SetOutPath $INSTDIR\browser
@@ -480,10 +478,8 @@ Section "" ; empty string makes it hidden, so would starting with -
480478
nsExec::Exec '"$INSTDIR\extprogs\vcredist_x86.exe" /q'
481479
nsExec::Exec '"$INSTDIR\extprogs\vcredist_x86-2012.exe" /q'
482480
nsExec::Exec '"$INSTDIR\extprogs\vcredist_x86-2013.exe" /q'
483-
;nsExec::Exec '"$INSTDIR\extprogs\vcredist_x86-2015.exe" /q'
484-
;nsExec::Exec '"$INSTDIR\extprogs\vcredist_x86-2017.exe" /q'
485481
nsExec::Exec '"$INSTDIR\extprogs\vcredist_x86-15-17-19.exe" /q'
486-
nsExec::Exec '"$INSTDIR\extprogs\dotnet-runtime-6.0.13-win-x86.exe" /install /passive /quiet'
482+
nsExec::Exec '"$INSTDIR\extprogs\dotnet-runtime-6.0.24-win-x86.exe" /install /passive /quiet'
487483

488484
; MessageBox MB_YESNO "Wish to substitute Windows Shell by the HMIShell? \nWARNING: ANSWERING YES WILL BLOCK THE MACHINE FOR THE OPERATOR" IDNO InstFim
489485
; LabelShell:

installer/release_notes.txt

+12
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,18 @@ S7 Driver:
189189

190190
Inkscape+SAGE:
191191
- See http://wiki.inkscape.org/wiki/index.php/Compiling_Inkscape_on_Windows_with_MSYS2.
192+
193+
-------------------------------------------------------------------
194+
195+
Notes for version 6.31:
196+
197+
198+
IEC61850:
199+
- IEC61850 Client driver updated to version 0.6.
200+
201+
Chromium:
202+
- Updated to version 109.0.5414.120.
203+
192204

193205
-------------------------------------------------------------------
194206

0 commit comments

Comments
 (0)