Skip to content

Commit 2be346f

Browse files
committed
Version 6.26.
1 parent a748c2b commit 2be346f

8 files changed

+38
-9
lines changed

htdocs/timepntserver.php

100755100644
+5-2
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,13 @@
134134
WHERE
135135
(nponto = '$pnt' or
136136
nponto in (select nponto from dumpdb where id='$pnt')) and
137-
data = (select data from hist where nponto=$pnt and data<=$FILTDH
137+
data = (select data from hist where nponto=
138+
(select nponto from dumpdb where id='$pnt' or nponto='$pnt' limit 1)
139+
AND data<=$FILTDH
138140
ORDER BY
139141
data desc limit 1) ";
140142
}
143+
141144
$uni = " UNION ";
142145
$cntsql++;
143146
if ( $cntsql > 50 )
@@ -200,7 +203,7 @@
200203
$dbpnt->exec ( "PRAGMA synchronous = NORMAL" );
201204
$dbpnt->exec ( "PRAGMA journal_mode = WAL" );
202205
$dbpnt->exec ( "PRAGMA locking_mode = NORMAL" );
203-
$sql = "SELECT NPONTO, LIMS, LIMI from dumpdb where nponto = $pnt" ;
206+
$sql = "SELECT NPONTO, LIMS, LIMI from dumpdb where nponto = (select nponto from dumpdb where id='$pnt' or nponto='$pnt' limit 1)" ;
204207
foreach ( $dbpnt->query( $sql ) as $row )
205208
{
206209
$nponto = $row['NPONTO'];

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.24',
7+
VersaoProduto: '6.26',
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.24',
7+
VersaoProduto: '6.26',
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.24',
7+
VersaoProduto: '6.26',
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.24',
7+
VersaoProduto: '6.26',
88

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

installer/README.txt

+13
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,19 @@ Inkscape+SAGE:
186186

187187
-------------------------------------------------------------------
188188

189+
Notes for version 6.26:
190+
191+
Screen Viewer:
192+
- Fixed problem with Time Machine.
193+
194+
Chromium:
195+
- Updated to version 98.0.4758.102.
196+
197+
SQLite:
198+
- Updated to version 3.37.2.
199+
200+
-------------------------------------------------------------------
201+
189202
Notes for version 6.25:
190203

191204
Chromium:

installer/oshmi.nsi

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

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

14-
!define VERSION "v.6.24"
15-
!define VERSION_ "6.24.0.0"
14+
!define VERSION "v.6.26"
15+
!define VERSION_ "6.26.0.0"
1616

1717
Function .onInit
1818
System::Call 'keexrnel32::CreateMutexA(i 0, i 0, t "MutexOshmiInstall") i .r1 ?e'
@@ -46,7 +46,7 @@ VIProductVersion ${VERSION_}
4646
VIAddVersionKey ProductName "OSHMI (Open Substation HMI)"
4747
VIAddVersionKey Comments "SCADA HMI Software"
4848
VIAddVersionKey CompanyName "Ricardo Olsen"
49-
VIAddVersionKey LegalCopyright "Copyright 2008-2020 Ricardo L. Olsen"
49+
VIAddVersionKey LegalCopyright "Copyright 2008-2022 Ricardo L. Olsen"
5050
VIAddVersionKey FileDescription "OSHMI Installer"
5151
VIAddVersionKey FileVersion ${VERSION}
5252
VIAddVersionKey ProductVersion ${VERSION}

installer/release_notes.txt

+13
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,19 @@ Inkscape+SAGE:
186186

187187
-------------------------------------------------------------------
188188

189+
Notes for version 6.26:
190+
191+
Screen Viewer:
192+
- Fixed problem with Time Machine.
193+
194+
Chromium:
195+
- Updated to version 98.0.4758.102.
196+
197+
SQLite:
198+
- Updated to version 3.37.2.
199+
200+
-------------------------------------------------------------------
201+
189202
Notes for version 6.25:
190203

191204
Chromium:

0 commit comments

Comments
 (0)