Skip to content

Commit

Permalink
Version 6.26.
Browse files Browse the repository at this point in the history
  • Loading branch information
riclolsen committed Feb 19, 2022
1 parent a748c2b commit 2be346f
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 9 deletions.
7 changes: 5 additions & 2 deletions htdocs/timepntserver.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,13 @@
WHERE
(nponto = '$pnt' or
nponto in (select nponto from dumpdb where id='$pnt')) and
data = (select data from hist where nponto=$pnt and data<=$FILTDH
data = (select data from hist where nponto=
(select nponto from dumpdb where id='$pnt' or nponto='$pnt' limit 1)
AND data<=$FILTDH
ORDER BY
data desc limit 1) ";
}

$uni = " UNION ";
$cntsql++;
if ( $cntsql > 50 )
Expand Down Expand Up @@ -200,7 +203,7 @@
$dbpnt->exec ( "PRAGMA synchronous = NORMAL" );
$dbpnt->exec ( "PRAGMA journal_mode = WAL" );
$dbpnt->exec ( "PRAGMA locking_mode = NORMAL" );
$sql = "SELECT NPONTO, LIMS, LIMI from dumpdb where nponto = $pnt" ;
$sql = "SELECT NPONTO, LIMS, LIMI from dumpdb where nponto = (select nponto from dumpdb where id='$pnt' or nponto='$pnt' limit 1)" ;
foreach ( $dbpnt->query( $sql ) as $row )
{
$nponto = $row['NPONTO'];
Expand Down
2 changes: 1 addition & 1 deletion 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: 'OSHMI',
VersaoProduto: '6.24',
VersaoProduto: '6.26',

NomeVisorTelas: 'Screen Viewer',
NomeVisorEventos: 'Events Viewer',
Expand Down
2 changes: 1 addition & 1 deletion 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: 'OSHMI',
VersaoProduto: '6.24',
VersaoProduto: '6.26',

NomeVisorTelas: 'Visor de Telas',
NomeVisorEventos: 'Visor de Eventos',
Expand Down
2 changes: 1 addition & 1 deletion 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: 'OSHMI',
VersaoProduto: '6.24',
VersaoProduto: '6.26',

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

NomeVisorTelas: 'Visor de Telas',
NomeVisorEventos: 'Visor de Eventos',
Expand Down
13 changes: 13 additions & 0 deletions installer/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,19 @@ Inkscape+SAGE:

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

Notes for version 6.26:

Screen Viewer:
- Fixed problem with Time Machine.

Chromium:
- Updated to version 98.0.4758.102.

SQLite:
- Updated to version 3.37.2.

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

Notes for version 6.25:

Chromium:
Expand Down
6 changes: 3 additions & 3 deletions installer/oshmi.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RequestExecutionLevel user

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

!define VERSION "v.6.24"
!define VERSION_ "6.24.0.0"
!define VERSION "v.6.26"
!define VERSION_ "6.26.0.0"

Function .onInit
System::Call 'keexrnel32::CreateMutexA(i 0, i 0, t "MutexOshmiInstall") i .r1 ?e'
Expand Down Expand Up @@ -46,7 +46,7 @@ VIProductVersion ${VERSION_}
VIAddVersionKey ProductName "OSHMI (Open Substation HMI)"
VIAddVersionKey Comments "SCADA HMI Software"
VIAddVersionKey CompanyName "Ricardo Olsen"
VIAddVersionKey LegalCopyright "Copyright 2008-2020 Ricardo L. Olsen"
VIAddVersionKey LegalCopyright "Copyright 2008-2022 Ricardo L. Olsen"
VIAddVersionKey FileDescription "OSHMI Installer"
VIAddVersionKey FileVersion ${VERSION}
VIAddVersionKey ProductVersion ${VERSION}
Expand Down
13 changes: 13 additions & 0 deletions installer/release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,19 @@ Inkscape+SAGE:

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

Notes for version 6.26:

Screen Viewer:
- Fixed problem with Time Machine.

Chromium:
- Updated to version 98.0.4758.102.

SQLite:
- Updated to version 3.37.2.

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

Notes for version 6.25:

Chromium:
Expand Down

0 comments on commit 2be346f

Please sign in to comment.