mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-04-09 02:18:43 +00:00
- Property encryption detection now works correctly (On Self-hosted LiveSync, it was not broken, but as a library, it was not working correctly).
- Initialising the chunk splitter is now surely performed.
- DirectFileManipulator now works fine (as a library)
- Old `DirectFileManipulatorV1` is now removed.
### Refactored
- Removed some unnecessary intermediate files.
8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
import { PersistentMap } from "octagonal-wheels/dataobject/PersistentMap";
|
|
|
|
export let sameChangePairs: PersistentMap<number[]>;
|
|
|
|
export function initializeStores(vaultName: string) {
|
|
sameChangePairs = new PersistentMap<number[]>(`ls-persist-same-changes-${vaultName}`);
|
|
}
|