mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 07:15:51 +01:00
- use CSS contain wherever possible to reduce subtrees of forced reflows - reduced dependency between note and note_contents updates which will reduce number of updates to components - optimization of "many rows" querying
20 lines
523 B
JavaScript
20 lines
523 B
JavaScript
"use strict";
|
|
|
|
const build = require('./build');
|
|
const packageJson = require('../../package');
|
|
const {TRILIUM_DATA_DIR} = require('./data_dir');
|
|
|
|
const APP_DB_VERSION = 166;
|
|
const SYNC_VERSION = 16;
|
|
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
|
|
};
|