refs #4975 Uploaded version number
This commit is contained in:
parent
fd805e952a
commit
42c1426ff7
18
src/main.js
18
src/main.js
|
@ -1,6 +1,6 @@
|
||||||
var Conf = {
|
var Conf = {
|
||||||
appName: 'Verdnatura',
|
appName: 'Verdnatura',
|
||||||
odbcPath: 'HKCU\\Software\\ODBC\\ODBC.INI\\',
|
odbcPath: 'HKCU\\SOFTWARE\\ODBC\\ODBC.INI\\',
|
||||||
regPath: 'HKCU\\SOFTWARE\\Verdnatura\\vn-access',
|
regPath: 'HKCU\\SOFTWARE\\Verdnatura\\vn-access',
|
||||||
defaultModule: 'vn',
|
defaultModule: 'vn',
|
||||||
defaultLocale: 'es',
|
defaultLocale: 'es',
|
||||||
|
@ -12,7 +12,7 @@ var Conf = {
|
||||||
maxCorruptSize: 600,
|
maxCorruptSize: 600,
|
||||||
odbcDriver: 'MySQL ODBC 8.0 Unicode Driver',
|
odbcDriver: 'MySQL ODBC 8.0 Unicode Driver',
|
||||||
driverPath: '\\MySQL\\Connector ODBC 8.0\\myodbc8w.dll',
|
driverPath: '\\MySQL\\Connector ODBC 8.0\\myodbc8w.dll',
|
||||||
version: 4,
|
version: 5,
|
||||||
cdnURL: 'https://cdn.verdnatura.es/vn-access',
|
cdnURL: 'https://cdn.verdnatura.es/vn-access',
|
||||||
identifier: '.vn'
|
identifier: '.vn'
|
||||||
};
|
};
|
||||||
|
@ -86,7 +86,7 @@ var App = {
|
||||||
var path = 'HKCU\\Software\\Microsoft\\Office\\11.0\\Access\\';
|
var path = 'HKCU\\Software\\Microsoft\\Office\\11.0\\Access\\';
|
||||||
|
|
||||||
// Creates the Access configuration entries
|
// Creates the Access configuration entries
|
||||||
this.regWrites(path + 'Settings', {
|
this.regWrites(path +'Settings', {
|
||||||
'Confirm Document Deletions': false,
|
'Confirm Document Deletions': false,
|
||||||
'Confirm Action Queries': false,
|
'Confirm Action Queries': false,
|
||||||
'Confirm Record Changes': false
|
'Confirm Record Changes': false
|
||||||
|
@ -99,11 +99,11 @@ var App = {
|
||||||
this.regWrite(Conf.regPath, 'remoteURL', Conf.defaultRemoteURL);
|
this.regWrite(Conf.regPath, 'remoteURL', Conf.defaultRemoteURL);
|
||||||
this.regWrite(Conf.regPath, 'lastExecutedVersion', Conf.version);
|
this.regWrite(Conf.regPath, 'lastExecutedVersion', Conf.version);
|
||||||
|
|
||||||
// Delete old strings values (REMOVE IN VERSION 5)
|
// Delete old strings values (REMOVE IN VERSION 6)
|
||||||
this.regDelete(Conf.regPath + 'configured');
|
this.regDelete(Conf.regPath +'\\configured');
|
||||||
this.regDelete(Conf.regPath + 'remember');
|
this.regDelete(Conf.regPath + '\\remember');
|
||||||
this.regDelete(Conf.odbcPath + 'verdnatura');
|
this.regDelete(Conf.odbcPath +'verdnatura\\');
|
||||||
this.regDelete(Conf.odbcPath + 'ODBC Data Sources\\verdnatura');
|
this.regDelete(Conf.odbcPath +'ODBC Data Sources\\verdnatura');
|
||||||
}
|
}
|
||||||
|
|
||||||
var notSignOut = this.regRead(Conf.regPath, 'notSignOut');
|
var notSignOut = this.regRead(Conf.regPath, 'notSignOut');
|
||||||
|
@ -144,7 +144,7 @@ var App = {
|
||||||
selectDatarouce.options.add(option[y])
|
selectDatarouce.options.add(option[y])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// In case old general odbc (REMOVE IN VERSION 5)
|
// In case old general odbc (REMOVE IN VERSION 6)
|
||||||
if (this.dsName == 'verdnatura') {
|
if (this.dsName == 'verdnatura') {
|
||||||
this.dsName = Conf.defaultDatasource;
|
this.dsName = Conf.defaultDatasource;
|
||||||
this.$('datasource').value = this.dsName + Conf.identifier;
|
this.$('datasource').value = this.dsName + Conf.identifier;
|
||||||
|
|
Loading…
Reference in New Issue