vault backup: 2023-06-28 18:58:07
This commit is contained in:
parent
a4a32e3395
commit
298ac6134a
6 changed files with 21 additions and 11 deletions
|
@ -19,6 +19,7 @@
|
|||
"width": "400",
|
||||
"dynamicStyling": "colorful",
|
||||
"isLeftHanded": false,
|
||||
"iframeMatchExcalidrawTheme": true,
|
||||
"matchTheme": false,
|
||||
"matchThemeAlways": false,
|
||||
"matchThemeTrigger": false,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "1.9.3",
|
||||
"version": "1.9.6",
|
||||
"minAppVersion": "1.1.6",
|
||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||
"author": "Zsolt Viczian",
|
||||
|
|
|
@ -344,4 +344,16 @@ div.excalidraw-draginfo {
|
|||
|
||||
.excalidraw [data-radix-popper-content-wrapper] {
|
||||
position: absolute !important;
|
||||
}
|
||||
|
||||
.excalidraw__iframe-container .view-header {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.excalidraw__iframe-container input {
|
||||
background: initial;
|
||||
}
|
||||
|
||||
.excalidraw .HelpDialog__key {
|
||||
background-color: var(--color-gray-80) !important;
|
||||
}
|
9
.obsidian/plugins/obsidian-git/main.js
vendored
9
.obsidian/plugins/obsidian-git/main.js
vendored
|
@ -31065,6 +31065,7 @@ var IsomorphicGit = class extends GitManager {
|
|||
"110": "DA",
|
||||
// Technically, two files: first one is deleted "D " and second one is untracked "??"
|
||||
"111": " ",
|
||||
"113": "MM",
|
||||
"120": "DA",
|
||||
// Same as "110"
|
||||
"121": " M",
|
||||
|
@ -32181,7 +32182,7 @@ var ObsidianGitSettingsTab = class extends import_obsidian8.PluginSettingTab {
|
|||
})
|
||||
);
|
||||
new import_obsidian8.Setting(containerEl).setName("Commit message on auto backup/commit").setDesc(
|
||||
"Available placeholders: {{date}} (see below), {{hostname}} (see below) and {{numFiles}} (number of changed files in the commit)"
|
||||
"Available placeholders: {{date}} (see below), {{hostname}} (see below), {{numFiles}} (number of changed files in the commit) and {{files}} (changed files in commit message)"
|
||||
).addText(
|
||||
(text2) => text2.setPlaceholder("vault backup: {{date}}").setValue(plugin.settings.autoCommitMessage).onChange((value) => {
|
||||
plugin.settings.autoCommitMessage = value;
|
||||
|
@ -32191,7 +32192,7 @@ var ObsidianGitSettingsTab = class extends import_obsidian8.PluginSettingTab {
|
|||
containerEl.createEl("br");
|
||||
containerEl.createEl("h3", { text: "Commit message" });
|
||||
new import_obsidian8.Setting(containerEl).setName("Commit message on manual backup/commit").setDesc(
|
||||
"Available placeholders: {{date}} (see below), {{hostname}} (see below) and {{numFiles}} (number of changed files in the commit)"
|
||||
"Available placeholders: {{date}} (see below), {{hostname}} (see below), {{numFiles}} (number of changed files in the commit) and {{files}} (changed files in commit message)"
|
||||
).addText(
|
||||
(text2) => text2.setPlaceholder("vault backup: {{date}}").setValue(
|
||||
plugin.settings.commitMessage ? plugin.settings.commitMessage : ""
|
||||
|
@ -43127,10 +43128,6 @@ var ObsidianGit = class extends import_obsidian30.Plugin {
|
|||
committedFiles = await this.gitManager.commit(cmtMessage);
|
||||
} else {
|
||||
committedFiles = await this.gitManager.commitAll({
|
||||
// A type error occurs here because `this.settings.autoCommitMessage` is possibly undefined.
|
||||
// However, since `this.settings.autoCommitMessage` is always set to string in `this.migrateSettings`,
|
||||
// `undefined` is never passed here. Therefore, temporarily ignore this error.
|
||||
// @ts-ignore
|
||||
message: cmtMessage,
|
||||
status: status2,
|
||||
unstagedFiles
|
||||
|
|
2
.obsidian/plugins/obsidian-git/manifest.json
vendored
2
.obsidian/plugins/obsidian-git/manifest.json
vendored
|
@ -5,5 +5,5 @@
|
|||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"js": "main.js",
|
||||
"version": "2.20.3"
|
||||
"version": "2.20.4"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue