vault backup: 2026-05-27 15:20:56
This commit is contained in:
+7
-2
@@ -15,7 +15,6 @@
|
||||
"timelineEndColor": "#4d194d",
|
||||
"timestampFormat": "HH:mm",
|
||||
"hourFormat": "HH",
|
||||
"dataviewSource": "\"Journal\" OR #process/task",
|
||||
"extendDurationUntilNext": false,
|
||||
"defaultDurationMinutes": 30,
|
||||
"minimalDurationMinutes": 10,
|
||||
@@ -24,7 +23,7 @@
|
||||
"showUnscheduledNestedTasks": true,
|
||||
"showNow": true,
|
||||
"showNext": true,
|
||||
"pluginVersion": "0.28.0",
|
||||
"pluginVersion": "0.30.0",
|
||||
"showCompletedTasks": true,
|
||||
"showSubtasksInTaskBlocks": true,
|
||||
"icals": [],
|
||||
@@ -35,6 +34,12 @@
|
||||
"sortTasksInPlanAfterEdit": true,
|
||||
"firstDayOfWeek": "monday",
|
||||
"multiDayRange": "full-week",
|
||||
"showTimelineInSidebar": true,
|
||||
"timelineColumns": {
|
||||
"planner": true,
|
||||
"timeTracker": false
|
||||
},
|
||||
"dataviewSource": "\"Journal\" OR #process/task",
|
||||
"showTimeTracker": false,
|
||||
"showActiveClocks": true,
|
||||
"editMode": "simple",
|
||||
|
||||
+1395
-112
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-day-planner",
|
||||
"name": "Day Planner",
|
||||
"version": "0.28.0",
|
||||
"version": "0.30.0",
|
||||
"minAppVersion": "0.16.0",
|
||||
"description": "A day planner with clean UI and readable syntax",
|
||||
"author": "James Lynch, continued by Ivan Lednev",
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
+258
-295
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,5 +6,5 @@
|
||||
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"version": "2.38.2"
|
||||
"version": "2.38.3"
|
||||
}
|
||||
|
||||
+20
-25
@@ -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 {
|
||||
border: 2px solid var(--interactive-accent);
|
||||
border-radius: var(--radius-s);
|
||||
@@ -108,7 +99,7 @@
|
||||
display: flex;
|
||||
}
|
||||
.git-tools .buttons > * {
|
||||
padding: 0 0;
|
||||
padding: 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
@@ -175,7 +166,7 @@ which itself is adapted from the diff2html library with the following original l
|
||||
--git-change-bg: #ffd55840;
|
||||
--git-selected: #3572b0;
|
||||
|
||||
--git-delete: #c33;
|
||||
--git-delete: #cc3333;
|
||||
--git-insert: #399839;
|
||||
--git-change: #d0b44c;
|
||||
--git-move: #3572b0;
|
||||
@@ -538,13 +529,24 @@ which itself is adapted from the diff2html library with the following original l
|
||||
.d2h-diff-tbody {
|
||||
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 ====================== */
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter {
|
||||
/* 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-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;
|
||||
height: 100%; /* ensure, that age-based background color occupies entire parent */
|
||||
text-align: right;
|
||||
padding: 0px 6px 0px 6px;
|
||||
padding: 0px 6px;
|
||||
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 {
|
||||
.cm-gutterElement {
|
||||
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;
|
||||
}
|
||||
|
||||
.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 */
|
||||
.cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) {
|
||||
margin-inline-end: 0;
|
||||
|
||||
Vendored
+29
-19
@@ -42,13 +42,14 @@
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"mode": "default",
|
||||
"focus": true
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -99,13 +100,14 @@
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"focus": true,
|
||||
"mode": "default"
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -207,13 +209,14 @@
|
||||
},
|
||||
"openFile": false,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"focus": true,
|
||||
"mode": "default"
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -314,13 +317,14 @@
|
||||
},
|
||||
"openFile": false,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"focus": true,
|
||||
"mode": "default"
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -387,13 +391,14 @@
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"focus": true,
|
||||
"mode": "default"
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -445,13 +450,14 @@
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"focus": true,
|
||||
"mode": "default"
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -558,13 +564,14 @@
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"mode": "default",
|
||||
"focus": true
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -614,13 +621,14 @@
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false,
|
||||
"fileOpening": {
|
||||
"location": "tab",
|
||||
"direction": "vertical",
|
||||
"mode": "default",
|
||||
"focus": true
|
||||
},
|
||||
"fileExistsBehavior": {
|
||||
"kind": "prompt"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -690,7 +698,7 @@
|
||||
"devMode": false,
|
||||
"templateFolderPath": "Resources/Templates",
|
||||
"announceUpdates": "all",
|
||||
"version": "2.12.0",
|
||||
"version": "2.12.2",
|
||||
"globalVariables": {},
|
||||
"onePageInputEnabled": false,
|
||||
"disableOnlineFeatures": true,
|
||||
@@ -764,6 +772,8 @@
|
||||
"migrateFileOpeningSettings": true,
|
||||
"setProviderModelDiscoveryMode": true,
|
||||
"backfillFileOpeningDefaults": true,
|
||||
"migrateProviderApiKeysToSecretStorage": true
|
||||
}
|
||||
"migrateProviderApiKeysToSecretStorage": true,
|
||||
"consolidateFileExistsBehavior": true
|
||||
},
|
||||
"macros": []
|
||||
}
|
||||
Vendored
+67
-79
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "quickadd",
|
||||
"name": "QuickAdd",
|
||||
"version": "2.12.0",
|
||||
"version": "2.12.2",
|
||||
"minAppVersion": "1.11.4",
|
||||
"description": "Quickly add new pages or content to your vault.",
|
||||
"author": "Christian B. B. Houmann",
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+21
-21
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,7 +6,7 @@
|
||||
"description": "Improved table navigation, formatting, manipulation, and formulas.",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "1.0.0",
|
||||
"version": "0.22.2",
|
||||
"version": "0.23.2",
|
||||
"fundingUrl": {
|
||||
"Github Sponsor": "https://github.com/sponsors/tgrosinger",
|
||||
"Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@
|
||||
}
|
||||
|
||||
[data-type="advanced-tables-toolbar"] .nav-buttons-container {
|
||||
column-gap: 0.2rem;
|
||||
gap: 0.2rem;
|
||||
margin: 0.2rem 0 0.2rem 0;
|
||||
justify-content: start;
|
||||
}
|
||||
|
||||
+17
-17
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "2.20.3",
|
||||
"description": "Create and use templates",
|
||||
"version": "2.20.5",
|
||||
"description": "Advanced templating and automation using handlebars-like syntax.",
|
||||
"minAppVersion": "1.12.2",
|
||||
"author": "SilentVoid",
|
||||
"authorUrl": "https://github.com/SilentVoid13",
|
||||
|
||||
+1
-1
@@ -221,6 +221,6 @@ textarea.templater-prompt-input:focus {
|
||||
}
|
||||
|
||||
li.CodeMirror-hint-active {
|
||||
background: #08f;
|
||||
background: #0088ff;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
journal: Zyklus
|
||||
journal-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
|
||||
---
|
||||
```interval-nav
|
||||
|
||||
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user