vault backup: 2026-05-27 15:20:56

This commit is contained in:
Thomas Peetz
2026-05-27 15:20:56 +02:00
parent 5476eca7bf
commit ca323718a7
19 changed files with 1835 additions and 582 deletions
+7 -2
View File
@@ -15,7 +15,6 @@
"timelineEndColor": "#4d194d", "timelineEndColor": "#4d194d",
"timestampFormat": "HH:mm", "timestampFormat": "HH:mm",
"hourFormat": "HH", "hourFormat": "HH",
"dataviewSource": "\"Journal\" OR #process/task",
"extendDurationUntilNext": false, "extendDurationUntilNext": false,
"defaultDurationMinutes": 30, "defaultDurationMinutes": 30,
"minimalDurationMinutes": 10, "minimalDurationMinutes": 10,
@@ -24,7 +23,7 @@
"showUnscheduledNestedTasks": true, "showUnscheduledNestedTasks": true,
"showNow": true, "showNow": true,
"showNext": true, "showNext": true,
"pluginVersion": "0.28.0", "pluginVersion": "0.30.0",
"showCompletedTasks": true, "showCompletedTasks": true,
"showSubtasksInTaskBlocks": true, "showSubtasksInTaskBlocks": true,
"icals": [], "icals": [],
@@ -35,6 +34,12 @@
"sortTasksInPlanAfterEdit": true, "sortTasksInPlanAfterEdit": true,
"firstDayOfWeek": "monday", "firstDayOfWeek": "monday",
"multiDayRange": "full-week", "multiDayRange": "full-week",
"showTimelineInSidebar": true,
"timelineColumns": {
"planner": true,
"timeTracker": false
},
"dataviewSource": "\"Journal\" OR #process/task",
"showTimeTracker": false, "showTimeTracker": false,
"showActiveClocks": true, "showActiveClocks": true,
"editMode": "simple", "editMode": "simple",
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"id": "obsidian-day-planner", "id": "obsidian-day-planner",
"name": "Day Planner", "name": "Day Planner",
"version": "0.28.0", "version": "0.30.0",
"minAppVersion": "0.16.0", "minAppVersion": "0.16.0",
"description": "A day planner with clean UI and readable syntax", "description": "A day planner with clean UI and readable syntax",
"author": "James Lynch, continued by Ivan Lednev", "author": "James Lynch, continued by Ivan Lednev",
File diff suppressed because one or more lines are too long
+258 -295
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -6,5 +6,5 @@
"description": "Integrate Git version control with automatic backup and other advanced features.", "description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false, "isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent", "fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.38.2" "version": "2.38.3"
} }
+20 -25
View File
@@ -8,15 +8,6 @@
} }
} }
.git-signs-gutter {
.cm-gutterElement {
/* Needed to align the sign properly for different line heigts. Such as
* when having a heading or list item.
*/
padding-top: 0 !important;
}
}
.workspace-leaf-content[data-type="git-view"] .button-border { .workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent); border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s); border-radius: var(--radius-s);
@@ -108,7 +99,7 @@
display: flex; display: flex;
} }
.git-tools .buttons > * { .git-tools .buttons > * {
padding: 0 0; padding: 0;
height: auto; height: auto;
} }
@@ -175,7 +166,7 @@ which itself is adapted from the diff2html library with the following original l
--git-change-bg: #ffd55840; --git-change-bg: #ffd55840;
--git-selected: #3572b0; --git-selected: #3572b0;
--git-delete: #c33; --git-delete: #cc3333;
--git-insert: #399839; --git-insert: #399839;
--git-change: #d0b44c; --git-change: #d0b44c;
--git-move: #3572b0; --git-move: #3572b0;
@@ -538,13 +529,24 @@ which itself is adapted from the diff2html library with the following original l
.d2h-diff-tbody { .d2h-diff-tbody {
position: relative; position: relative;
} }
/* My additions */
.cm-merge-revert {
width: 4em;
}
/* Ensure that merge revert markers are positioned correctly */
.cm-merge-revert > * {
position: absolute;
background-color: var(--background-secondary);
display: flex;
}
} }
/* ====================== Line Authoring Information ====================== */ /* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter { .cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */ /* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px; border-width: 0px 2px 0.2px;
border-style: solid; border-style: solid;
border-color: var(--background-secondary); border-color: var(--background-secondary);
background-color: var(--background-secondary); background-color: var(--background-secondary);
@@ -557,7 +559,7 @@ which itself is adapted from the diff2html library with the following original l
font-family: monospace; font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */ height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right; text-align: right;
padding: 0px 6px 0px 6px; padding: 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */ white-space: pre; /* Keep spaces and do not collapse them. */
} }
@@ -602,6 +604,11 @@ which itself is adapted from the diff2html library with the following original l
.git-signs-gutter { .git-signs-gutter {
.cm-gutterElement { .cm-gutterElement {
display: grid; display: grid;
/* Needed to align the sign properly for different line heigts. Such as
* when having a heading or list item.
*/
padding-top: 0 !important;
} }
} }
@@ -669,18 +676,6 @@ div:hover > .git-gutter-marker.git-changedelete {
opacity: 0.5; opacity: 0.5;
} }
.git-diff {
.cm-merge-revert {
width: 4em;
}
/* Ensure that merge revert markers are positioned correctly */
.cm-merge-revert > * {
position: absolute;
background-color: var(--background-secondary);
display: flex;
}
}
/* Prevent shifting of the editor when git signs gutter is the only gutter present */ /* Prevent shifting of the editor when git signs gutter is the only gutter present */
.cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) { .cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) {
margin-inline-end: 0; margin-inline-end: 0;
+29 -19
View File
@@ -42,13 +42,14 @@
}, },
"openFile": true, "openFile": true,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"mode": "default", "mode": "default",
"focus": true "focus": true
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
} }
@@ -99,13 +100,14 @@
}, },
"openFile": true, "openFile": true,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"focus": true, "focus": true,
"mode": "default" "mode": "default"
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
}, },
@@ -207,13 +209,14 @@
}, },
"openFile": false, "openFile": false,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"focus": true, "focus": true,
"mode": "default" "mode": "default"
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
}, },
@@ -314,13 +317,14 @@
}, },
"openFile": false, "openFile": false,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"focus": true, "focus": true,
"mode": "default" "mode": "default"
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
}, },
@@ -387,13 +391,14 @@
}, },
"openFile": true, "openFile": true,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"focus": true, "focus": true,
"mode": "default" "mode": "default"
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
} }
@@ -445,13 +450,14 @@
}, },
"openFile": true, "openFile": true,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"focus": true, "focus": true,
"mode": "default" "mode": "default"
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
}, },
@@ -558,13 +564,14 @@
}, },
"openFile": true, "openFile": true,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"mode": "default", "mode": "default",
"focus": true "focus": true
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
} }
@@ -614,13 +621,14 @@
}, },
"openFile": true, "openFile": true,
"openFileInMode": "default", "openFileInMode": "default",
"fileExistsMode": "Increment the file name",
"setFileExistsBehavior": false,
"fileOpening": { "fileOpening": {
"location": "tab", "location": "tab",
"direction": "vertical", "direction": "vertical",
"mode": "default", "mode": "default",
"focus": true "focus": true
},
"fileExistsBehavior": {
"kind": "prompt"
} }
} }
}, },
@@ -690,7 +698,7 @@
"devMode": false, "devMode": false,
"templateFolderPath": "Resources/Templates", "templateFolderPath": "Resources/Templates",
"announceUpdates": "all", "announceUpdates": "all",
"version": "2.12.0", "version": "2.12.2",
"globalVariables": {}, "globalVariables": {},
"onePageInputEnabled": false, "onePageInputEnabled": false,
"disableOnlineFeatures": true, "disableOnlineFeatures": true,
@@ -764,6 +772,8 @@
"migrateFileOpeningSettings": true, "migrateFileOpeningSettings": true,
"setProviderModelDiscoveryMode": true, "setProviderModelDiscoveryMode": true,
"backfillFileOpeningDefaults": true, "backfillFileOpeningDefaults": true,
"migrateProviderApiKeysToSecretStorage": true "migrateProviderApiKeysToSecretStorage": true,
} "consolidateFileExistsBehavior": true
},
"macros": []
} }
+67 -79
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"id": "quickadd", "id": "quickadd",
"name": "QuickAdd", "name": "QuickAdd",
"version": "2.12.0", "version": "2.12.2",
"minAppVersion": "1.11.4", "minAppVersion": "1.11.4",
"description": "Quickly add new pages or content to your vault.", "description": "Quickly add new pages or content to your vault.",
"author": "Christian B. B. Houmann", "author": "Christian B. B. Houmann",
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -6,7 +6,7 @@
"description": "Improved table navigation, formatting, manipulation, and formulas.", "description": "Improved table navigation, formatting, manipulation, and formulas.",
"isDesktopOnly": false, "isDesktopOnly": false,
"minAppVersion": "1.0.0", "minAppVersion": "1.0.0",
"version": "0.22.2", "version": "0.23.2",
"fundingUrl": { "fundingUrl": {
"Github Sponsor": "https://github.com/sponsors/tgrosinger", "Github Sponsor": "https://github.com/sponsors/tgrosinger",
"Buy me a Coffee": "https://buymeacoffee.com/tgrosinger", "Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
+1 -1
View File
@@ -15,7 +15,7 @@
} }
[data-type="advanced-tables-toolbar"] .nav-buttons-container { [data-type="advanced-tables-toolbar"] .nav-buttons-container {
column-gap: 0.2rem; gap: 0.2rem;
margin: 0.2rem 0 0.2rem 0; margin: 0.2rem 0 0.2rem 0;
justify-content: start; justify-content: start;
} }
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -1,8 +1,8 @@
{ {
"id": "templater-obsidian", "id": "templater-obsidian",
"name": "Templater", "name": "Templater",
"version": "2.20.3", "version": "2.20.5",
"description": "Create and use templates", "description": "Advanced templating and automation using handlebars-like syntax.",
"minAppVersion": "1.12.2", "minAppVersion": "1.12.2",
"author": "SilentVoid", "author": "SilentVoid",
"authorUrl": "https://github.com/SilentVoid13", "authorUrl": "https://github.com/SilentVoid13",
+1 -1
View File
@@ -221,6 +221,6 @@ textarea.templater-prompt-input:focus {
} }
li.CodeMirror-hint-active { li.CodeMirror-hint-active {
background: #08f; background: #0088ff;
color: white; color: white;
} }
+1 -1
View File
@@ -2,7 +2,7 @@
journal: Zyklus journal: Zyklus
journal-date: 2026-04-30 journal-date: 2026-04-30
journal-start-date: 2026-04-30 journal-start-date: 2026-04-30
journal-end-date: 2026-05-27 journal-end-date: 2026-05-25
journal-index: 89 journal-index: 89
--- ---
```interval-nav ```interval-nav
+9
View File
@@ -0,0 +1,9 @@
---
journal: Zyklus
journal-date: 2026-05-26
journal-start-date: 2026-05-26
journal-end-date: 2026-06-22
journal-index: 90
---
```interval-nav
```