vault backup: 2024-02-04 12:31:53
This commit is contained in:
parent
c8932231ae
commit
d217fd9825
19628
.obsidian/plugins/obsidian-git/main.js
vendored
19628
.obsidian/plugins/obsidian-git/main.js
vendored
File diff suppressed because one or more lines are too long
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.19.1"
|
||||
"version": "2.22.1"
|
||||
}
|
||||
|
||||
27
.obsidian/plugins/obsidian-git/styles.css
vendored
27
.obsidian/plugins/obsidian-git/styles.css
vendored
@ -8,6 +8,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type='git-view'] .button-border {
|
||||
border: 2px solid var(--interactive-accent);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type='git-view'] .view-content {
|
||||
padding: 0;
|
||||
}
|
||||
@ -484,4 +489,24 @@
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
|
||||
border: 1px solid #3572b0;
|
||||
}
|
||||
}
|
||||
|
||||
/* ====================== 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-style: solid;
|
||||
border-color: var(--background-secondary);
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter > div, .line-author-settings-preview {
|
||||
/* delegate text color to settings */
|
||||
color: var(--obs-git-gutter-text);
|
||||
font-family: monospace;
|
||||
height: 100%; /* ensure, that age-based background color occupies entire parent */
|
||||
text-align: right;
|
||||
padding: 0px 6px 0px 6px;
|
||||
white-space: pre; /* Keep spaces and do not collapse them. */
|
||||
}
|
||||
|
||||
@ -6,5 +6,7 @@
|
||||
"betterTab": true,
|
||||
"selectAll": true,
|
||||
"listLines": true,
|
||||
"listLineAction": "toggle-folding"
|
||||
"listLineAction": "toggle-folding",
|
||||
"dnd": true,
|
||||
"previousRelease": "4.8.0"
|
||||
}
|
||||
3656
.obsidian/plugins/obsidian-outliner/main.js
vendored
3656
.obsidian/plugins/obsidian-outliner/main.js
vendored
File diff suppressed because one or more lines are too long
@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "obsidian-outliner",
|
||||
"name": "Outliner",
|
||||
"version": "4.2.1",
|
||||
"minAppVersion": "1.0.0",
|
||||
"version": "4.8.0",
|
||||
"minAppVersion": "1.1.16",
|
||||
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
||||
"author": "Viacheslav Slinko",
|
||||
"authorUrl": "https://github.com/vslinko",
|
||||
|
||||
42
.obsidian/plugins/obsidian-outliner/styles.css
vendored
42
.obsidian/plugins/obsidian-outliner/styles.css
vendored
@ -1,14 +1,13 @@
|
||||
/* lists */
|
||||
/* lists and bullets */
|
||||
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
||||
padding-top: 0.4em;
|
||||
}
|
||||
|
||||
/* bullets */
|
||||
.outliner-plugin-better-bullets .cm-formatting-list-ul {
|
||||
.outliner-plugin-better-lists .cm-formatting-list-ul {
|
||||
margin-right: 0.3em;
|
||||
}
|
||||
|
||||
.outliner-plugin-better-bullets .list-bullet::after {
|
||||
.outliner-plugin-better-lists .list-bullet::after {
|
||||
width: 0.4em;
|
||||
height: 0.4em;
|
||||
background-color: var(--text-muted);
|
||||
@ -69,3 +68,38 @@
|
||||
.cm-indent::before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* drag-n-drop */
|
||||
.outliner-plugin-dropping-line {
|
||||
background-color: hsla(var(--interactive-accent-hsl), 0.4);
|
||||
}
|
||||
|
||||
.outliner-plugin-dragging-line {
|
||||
opacity: 0.5;
|
||||
background-color: hsla(var(--interactive-accent-hsl), 0.2);
|
||||
}
|
||||
|
||||
.outliner-plugin-drop-zone {
|
||||
width: 300px;
|
||||
height: 4px;
|
||||
background: var(--color-accent);
|
||||
z-index: 999;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.outliner-plugin-drop-zone-padding {
|
||||
position: absolute;
|
||||
height: 4px;
|
||||
}
|
||||
|
||||
body.outliner-plugin-dnd:not(.outliner-plugin-dragging) .cm-formatting-list,
|
||||
body.outliner-plugin-dnd:not(.outliner-plugin-dragging)
|
||||
.cm-fold-indicator
|
||||
.collapse-indicator {
|
||||
cursor: grab !important;
|
||||
}
|
||||
|
||||
html body.outliner-plugin-dnd.outliner-plugin-dragging {
|
||||
cursor: grabbing !important;
|
||||
}
|
||||
|
||||
49192
.obsidian/plugins/table-editor-obsidian/main.js
vendored
49192
.obsidian/plugins/table-editor-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
@ -6,7 +6,12 @@
|
||||
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "1.0.0",
|
||||
"version": "0.18.1",
|
||||
"version": "0.20.1",
|
||||
"js": "main.js",
|
||||
"fundingUrl": {
|
||||
"Github Sponsor": "https://github.com/sponsors/tgrosinger",
|
||||
"Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
|
||||
"Paypal": "https://paypal.me/tgrosinger"
|
||||
},
|
||||
"donation": "https://buymeacoffee.com/tgrosinger"
|
||||
}
|
||||
56
.obsidian/workspace-mobile.json
vendored
56
.obsidian/workspace-mobile.json
vendored
@ -13,7 +13,7 @@
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "journals/2024_01_06.md",
|
||||
"file": "journals/2023_12_25.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
@ -44,7 +44,7 @@
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "Balkon",
|
||||
"query": "Ebusd",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
@ -93,7 +93,7 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "journals/2024_01_06.md",
|
||||
"file": "journals/2023_12_25.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
@ -110,7 +110,7 @@
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "journals/2024_01_06.md",
|
||||
"file": "journals/2023_12_25.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
@ -122,7 +122,7 @@
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "journals/2024_01_06.md"
|
||||
"file": "journals/2023_12_25.md"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -158,36 +158,38 @@
|
||||
},
|
||||
"active": "2cfad2c406dd9960",
|
||||
"lastOpenFiles": [
|
||||
"journals/2024-02-04.md",
|
||||
"journals/2024_01_30.md",
|
||||
"logseq/bak/journals/2024_01_22/2024-01-30T16_15_27.668Z.Desktop.md",
|
||||
"logseq/bak/journals/2024_01_22",
|
||||
"journals/2024_01_29.md",
|
||||
"/logseq/bak/journals/2024_01_22/2024-01-30T16_15_27.668Z.Desktop.md",
|
||||
"/journals/2024_01_30.md",
|
||||
"/journals/2024_01_29.md",
|
||||
"/journals/2024_01_23.md",
|
||||
"/logseq/bak/journals/2024_01_22",
|
||||
"journals/2024-01-25.md",
|
||||
"journals/2024_01_22.md",
|
||||
"journals/2024_01_23.md",
|
||||
"journals/2024_01_19.md",
|
||||
"pages/UUID=FC28449328444EB8.md",
|
||||
"journals/2024_01_17.md",
|
||||
"journals/2024_01_15.md",
|
||||
"/pages/UUID=FC28449328444EB8.md",
|
||||
"/journals/2024_01_22.md",
|
||||
"/journals/2024_01_19.md",
|
||||
"/journals/2024_01_17.md",
|
||||
"/journals/2024_01_15.md",
|
||||
"journals/2024_01_06.md",
|
||||
"journals/2023_07_04.md",
|
||||
"journals/2023_12_28.md",
|
||||
"journals/2024_01_12.md",
|
||||
"journals/2023_12_25.md",
|
||||
"journals/2024_01_08.md",
|
||||
"/journals/2024_01_12.md",
|
||||
"/journals/2024_01_08.md",
|
||||
"/journals/2023_12_28.md",
|
||||
"/journals/2023_12_25.md",
|
||||
"journals/2024_01_06.md",
|
||||
"journals/2023_04_19.md",
|
||||
"assets/image_1704534305071_0.png",
|
||||
"/journals/2024_01_06.md",
|
||||
"/assets/image_1704534305071_0.png",
|
||||
"logseq/bak/journals/2023_07_03/2023-07-10T17_18_16.751Z.Desktop.md",
|
||||
"journals/2023_07_03.md",
|
||||
"journals/2023-12-26.md",
|
||||
"assets/wartungsanleitung-vaillant-ecotec-plus.pdf",
|
||||
"journals/2023-12-25.md",
|
||||
"journals/2023-01-21.md",
|
||||
"logseq/bak/pages/Portugal/2023-07-02T04_47_23.990Z.Desktop.md",
|
||||
"journals/2023_10_09.md",
|
||||
"journals/2023_04_03.md",
|
||||
"journals/2023_04_21.md",
|
||||
"assets/image_1702995078665_0.png",
|
||||
"journals/2023_08_10.md",
|
||||
"journals/2023_09_05.md",
|
||||
"journals/2023_11_13.md",
|
||||
"journals/2023_12_17.md",
|
||||
"journals/2023_08_11.md",
|
||||
"assets/image_1702631638356_0.png",
|
||||
"logseq/bak/journals/2023_07_03",
|
||||
"logseq/bak/journals/2023_02_22",
|
||||
@ -196,8 +198,6 @@
|
||||
"logseq/bak/journals/2023_05_22",
|
||||
"logseq/bak/journals/2023_06_01",
|
||||
"logseq/bak/pages/Portugal",
|
||||
"logseq/bak/journals/2023_08_11",
|
||||
"logseq/bak/journals/2023_07_21",
|
||||
"/assets/image_1702995078665_0.png",
|
||||
"/assets/image_1702631638356_0.png",
|
||||
"Untitled.canvas",
|
||||
|
||||
0
journals/2024-01-25.md
Normal file
0
journals/2024-01-25.md
Normal file
0
journals/2024-02-04.md
Normal file
0
journals/2024-02-04.md
Normal file
Loading…
x
Reference in New Issue
Block a user