mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-02-22 20:18:48 +00:00
Improved - New Translation: `es` (Spanish) by @zeedif (Thank you so much)! - Now all of messages can be selectable and copyable, also on the iPhone, iPad, and Android devices. Now we can copy or share the messages easily. New Feature - Peer-to-Peer Synchronisation has been implemented! Fixed - No longer memory or resource leaks when the plug-in is disabled. - Now deleted chunks are correctly detected on conflict resolution, and we are guided to resurrect them. - Hanging issue during the initial synchronisation has been fixed. - Some unnecessary logs have been removed. - Now all modal dialogues are correctly closed when the plug-in is disabled. Refactor - Several interfaces have been moved to the separated library. - Translations have been moved to each language file, and during the build, they are merged into one file. - Non-mobile friendly code has been removed and replaced with the safer code. - Started writing Platform impedance-matching-layer. - Svelte has been updated to v5. - Some function have got more robust type definitions. - Terser optimisation has slightly improved. - During the build, analysis meta-file of the bundled codes will be generated.
40 lines
1020 B
TypeScript
40 lines
1020 B
TypeScript
import { WorkspaceLeaf } from "../../../deps.ts";
|
|
import GlobalHistoryComponent from "./GlobalHistory.svelte";
|
|
import type ObsidianLiveSyncPlugin from "../../../main.ts";
|
|
import { SvelteItemView } from "../../../common/SvelteItemView.ts";
|
|
import { mount } from "svelte";
|
|
|
|
export const VIEW_TYPE_GLOBAL_HISTORY = "global-history";
|
|
export class GlobalHistoryView extends SvelteItemView {
|
|
instantiateComponent(target: HTMLElement) {
|
|
return mount(GlobalHistoryComponent, {
|
|
target: target,
|
|
props: {
|
|
plugin: this.plugin,
|
|
},
|
|
});
|
|
}
|
|
|
|
plugin: ObsidianLiveSyncPlugin;
|
|
icon = "clock";
|
|
title: string = "";
|
|
navigation = true;
|
|
|
|
getIcon(): string {
|
|
return "clock";
|
|
}
|
|
|
|
constructor(leaf: WorkspaceLeaf, plugin: ObsidianLiveSyncPlugin) {
|
|
super(leaf);
|
|
this.plugin = plugin;
|
|
}
|
|
|
|
getViewType() {
|
|
return VIEW_TYPE_GLOBAL_HISTORY;
|
|
}
|
|
|
|
getDisplayText() {
|
|
return "Vault history";
|
|
}
|
|
}
|