chore(server): increase sync version to avoid data loss due to unsupported note type

This commit is contained in:
Elian Doran 2026-03-03 20:25:33 +02:00
parent 6bfbc2d35e
commit 6aec7eae00
No known key found for this signature in database

View File

@ -1,11 +1,12 @@
import path from "path";
import build from "./build.js";
import packageJson from "../../package.json" with { type: "json" };
import dataDir from "./data_dir.js";
import { AppInfo } from "@triliumnext/commons";
import path from "path";
import packageJson from "../../package.json" with { type: "json" };
import build from "./build.js";
import dataDir from "./data_dir.js";
const APP_DB_VERSION = 234;
const SYNC_VERSION = 36;
const SYNC_VERSION = 37;
const CLIPPER_PROTOCOL_VERSION = "1.0";
export default {