vault backup: 2025-04-15 20:26:09

Affected files:
.obsidian/plugins/dataview/main.js
.obsidian/plugins/dataview/manifest.json
.obsidian/plugins/dataview/styles.css
.obsidian/plugins/obsidian-git/main.js
.obsidian/plugins/obsidian-git/manifest.json
.obsidian/plugins/obsidian-quiet-outline/main.js
.obsidian/plugins/obsidian-quiet-outline/manifest.json
.obsidian/plugins/obsidian-quiet-outline/styles.css
.obsidian/plugins/obsidian-tasks-plugin/main.js
.obsidian/plugins/obsidian-tasks-plugin/manifest.json
This commit is contained in:
2025-04-15 20:26:09 +08:00
parent 15e53fec9c
commit cf8502959f
10 changed files with 635 additions and 478 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{ {
"id": "dataview", "id": "dataview",
"name": "Dataview", "name": "Dataview",
"version": "0.5.67", "version": "0.5.68",
"minAppVersion": "0.13.11", "minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.", "description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>", "author": "Michael Brenan <blacksmithgu@gmail.com>",

View File

@@ -1,8 +1,3 @@
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
line-height: 1.0;
}
.block-language-dataview { .block-language-dataview {
overflow-y: auto; overflow-y: auto;
} }
@@ -74,7 +69,7 @@
padding-right: 8px; padding-right: 8px;
font-family: var(--font-monospace); font-family: var(--font-monospace);
background-color: var(--background-primary-alt); background-color: var(--background-primary-alt);
color: var(--text-nav-selected); color: var(--nav-item-color-selected);
} }
.dataview.inline-field-value { .dataview.inline-field-value {
@@ -82,7 +77,7 @@
padding-right: 8px; padding-right: 8px;
font-family: var(--font-monospace); font-family: var(--font-monospace);
background-color: var(--background-secondary-alt); background-color: var(--background-secondary-alt);
color: var(--text-nav-selected); color: var(--nav-item-color-selected);
} }
.dataview.inline-field-standalone-value { .dataview.inline-field-standalone-value {
@@ -90,7 +85,7 @@
padding-right: 8px; padding-right: 8px;
font-family: var(--font-monospace); font-family: var(--font-monospace);
background-color: var(--background-secondary-alt); background-color: var(--background-secondary-alt);
color: var(--text-nav-selected); color: var(--nav-item-color-selected);
} }
/***************/ /***************/

File diff suppressed because one or more lines are too long

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.32.0" "version": "2.32.1"
} }

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{ {
"id": "obsidian-quiet-outline", "id": "obsidian-quiet-outline",
"name": "Quiet Outline", "name": "Quiet Outline",
"version": "0.3.40", "version": "0.3.43",
"minAppVersion": "0.15.6", "minAppVersion": "0.15.6",
"description": "Make outline quiet and more powerful, including no-auto-expand, rendering heading as markdown, and search support.", "description": "Make outline quiet and more powerful, including no-auto-expand, rendering heading as markdown, and search support.",
"author": "the_tree", "author": "the_tree",

View File

@@ -27,10 +27,11 @@
white-space: nowrap; white-space: nowrap;
} }
.quiet-outline .n-tree.ellipsis .n-tree-node-content__text { .quiet-outline .n-tree.ellipsis .n-tree-node-content__text {
width: 100%; overflow: hidden;
} }
.quiet-outline .n-tree.ellipsis .n-tree-node-content { .quiet-outline .n-tree.ellipsis .n-tree-node-content {
width: 90%; overflow: hidden;
flex: 1;
} }
.quiet-outline .n-tree.n-tree--block-line .n-tree-node:not(.n-tree-node--disabled):hover { .quiet-outline .n-tree.n-tree--block-line .n-tree-node:not(.n-tree-node--disabled):hover {
color: var(--nav-item-color-active); color: var(--nav-item-color-active);
@@ -133,6 +134,9 @@
} }
/* main.css */ /* main.css */
.quiet-outline .n-tree {
padding-top: 5px;
}
.quiet-outline .n-tree .n-tree-node-indent { .quiet-outline .n-tree .n-tree-node-indent {
content: ""; content: "";
height: unset; height: unset;
@@ -143,28 +147,28 @@
.quiet-outline .level-4 .n-tree-node-indent:first-child, .quiet-outline .level-4 .n-tree-node-indent:first-child,
.quiet-outline .level-5 .n-tree-node-indent:first-child, .quiet-outline .level-5 .n-tree-node-indent:first-child,
.quiet-outline .level-6 .n-tree-node-indent:first-child { .quiet-outline .level-6 .n-tree-node-indent:first-child {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor1); border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor1);
} }
.quiet-outline .level-3 .n-tree-node-indent, .quiet-outline .level-3 .n-tree-node-indent,
.quiet-outline .level-4 .n-tree-node-indent:nth-child(2), .quiet-outline .level-4 .n-tree-node-indent:nth-child(2),
.quiet-outline .level-5 .n-tree-node-indent:nth-child(2), .quiet-outline .level-5 .n-tree-node-indent:nth-child(2),
.quiet-outline .level-6 .n-tree-node-indent:nth-child(2) { .quiet-outline .level-6 .n-tree-node-indent:nth-child(2) {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor2); border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor2);
} }
.quiet-outline .level-4 .n-tree-node-indent, .quiet-outline .level-4 .n-tree-node-indent,
.quiet-outline .level-5 .n-tree-node-indent:nth-child(3), .quiet-outline .level-5 .n-tree-node-indent:nth-child(3),
.quiet-outline .level-6 .n-tree-node-indent:nth-child(3) { .quiet-outline .level-6 .n-tree-node-indent:nth-child(3) {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor3); border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor3);
} }
.quiet-outline .level-5 .n-tree-node-indent, .quiet-outline .level-5 .n-tree-node-indent,
.quiet-outline .level-6 .n-tree-node-indent:nth-child(4) { .quiet-outline .level-6 .n-tree-node-indent:nth-child(4) {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor4); border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor4);
} }
.quiet-outline .level-6 .n-tree-node-indent { .quiet-outline .level-6 .n-tree-node-indent {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor5); border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor5);
} }
.n-tree-node.located p { .n-tree-node.located p {
color: var(--8de97876-locatedColor); color: var(--61117f8c-locatedColor);
} }
.quiet-outline .n-tree .n-tree-node .n-tree-node-content .n-tree-node-content__prefix { .quiet-outline .n-tree .n-tree-node .n-tree-node-content .n-tree-node-content__prefix {
margin-right: 0; margin-right: 0;

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{ {
"id": "obsidian-tasks-plugin", "id": "obsidian-tasks-plugin",
"name": "Tasks", "name": "Tasks",
"version": "7.18.1", "version": "7.19.0",
"minAppVersion": "1.4.0", "minAppVersion": "1.4.0",
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.", "description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
"helpUrl": "https://publish.obsidian.md/tasks/", "helpUrl": "https://publish.obsidian.md/tasks/",