mirror of
https://github.com/zadam/trilium.git
synced 2025-01-17 12:39:51 +08:00
19 lines
No EOL
522 B
JavaScript
19 lines
No EOL
522 B
JavaScript
"use strict";
|
|
|
|
const build = require('./build');
|
|
const packageJson = require('../../package');
|
|
const {TRILIUM_DATA_DIR} = require('./data_dir');
|
|
|
|
const APP_DB_VERSION = 155;
|
|
const SYNC_VERSION = 13;
|
|
const CLIPPER_PROTOCOL_VERSION = "1.0";
|
|
|
|
module.exports = {
|
|
appVersion: packageJson.version,
|
|
dbVersion: APP_DB_VERSION,
|
|
syncVersion: SYNC_VERSION,
|
|
buildDate: build.buildDate,
|
|
buildRevision: build.buildRevision,
|
|
dataDirectory: TRILIUM_DATA_DIR,
|
|
clipperProtocolVersion: CLIPPER_PROTOCOL_VERSION
|
|
}; |