Skip to content

Commit a034f89

Browse files
author
ricardolo
committed
Version 6.20
1 parent 8f6141a commit a034f89

19 files changed

+271
-26
lines changed

db/db_cold/create_hist.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ CREATE TABLE "hist" (
44
"VALOR" Real NOT NULL,
55
"FLAGS" Integer NOT NULL,
66
"DATA" Integer NOT NULL,
7-
PRIMARY KEY (NPONTO, DATA)
7+
"FIELDTS" Integer DEFAULT 0,
8+
PRIMARY KEY (NPONTO, DATA, FIELDTS)
89
);
910
-- CREATE INDEX ind_data on "hist" ( DATA );
1011

db/pragmas_hist.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.timeout 9000
22
PRAGMA temp_store = MEMORY;
3-
PRAGMA synchronous = NORMAL;
3+
PRAGMA synchronous = OFF;
44
PRAGMA journal_mode = WAL;
55

73 Bytes
Binary file not shown.

htdocs/annotation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
{
9292
$pdo = new PDO( 'sqlite:../db/notes.sl3','','', [
9393
PDO::ATTR_TIMEOUT => ($filtag!="" || $filcontent!="")?0:5,
94-
PDO::SQLITE_ATTR_OPEN_FLAGS => PDO::SQLITE_OPEN_READONLY,
94+
// PDO::SQLITE_ATTR_OPEN_FLAGS => PDO::SQLITE_OPEN_READONLY, // THIS FLAG CAUSES ERRORS
9595
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
9696
] );
9797
$pdo->exec ( "PRAGMA query_only=TRUE" );

htdocs/annotation_readonly.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
{
9292
$pdo = new PDO( 'sqlite:../db/notes.sl3','','', [
9393
PDO::ATTR_TIMEOUT => ($filtag!="" || $filcontent!="")?0:5,
94-
PDO::SQLITE_ATTR_OPEN_FLAGS => PDO::SQLITE_OPEN_READONLY,
94+
// PDO::SQLITE_ATTR_OPEN_FLAGS => PDO::SQLITE_OPEN_READONLY, // THIS FLAG CAUSES ERRORS
9595
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
9696
] );
9797
$pdo->exec ( "PRAGMA query_only=TRUE" );

i18n/go-uk_ua.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cd c:\oshmi\i18n
2+
copy messages_i18n-uk_ua.ini messages_i18n.ini
3+
copy messages_i18n-uk_ua.js messages_i18n.js
4+
cd c:\oshmi\docs
5+
copy oshmi_operation_manual-en_us.pdf oshmi_operation_manual.pdf

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: 'OSHMI',
7-
VersaoProduto: '6.18',
7+
VersaoProduto: '6.20',
88

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

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: 'OSHMI',
7-
VersaoProduto: '6.18',
7+
VersaoProduto: '6.20',
88

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

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: 'OSHMI',
7-
VersaoProduto: '6.18',
7+
VersaoProduto: '6.20',
88

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

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: 'OSHMI',
7-
VersaoProduto: '6.18',
7+
VersaoProduto: '6.20',
88

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

0 commit comments

Comments
 (0)