Update latest plugins
This commit is contained in:
parent
f6ae8717ad
commit
f4c5cfa2d2
10 changed files with 352 additions and 202 deletions
3
.obsidian/core-plugins-migration.json
vendored
3
.obsidian/core-plugins-migration.json
vendored
|
@ -25,5 +25,6 @@
|
|||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false,
|
||||
"canvas": true
|
||||
"canvas": true,
|
||||
"bookmarks": true
|
||||
}
|
2
.obsidian/core-plugins.json
vendored
2
.obsidian/core-plugins.json
vendored
|
@ -11,7 +11,7 @@
|
|||
"note-composer",
|
||||
"command-palette",
|
||||
"editor-status",
|
||||
"starred",
|
||||
"bookmarks",
|
||||
"markdown-importer",
|
||||
"word-count",
|
||||
"file-recovery"
|
||||
|
|
256
.obsidian/plugins/dataview/main.js
vendored
256
.obsidian/plugins/dataview/main.js
vendored
File diff suppressed because one or more lines are too long
2
.obsidian/plugins/dataview/manifest.json
vendored
2
.obsidian/plugins/dataview/manifest.json
vendored
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.55",
|
||||
"version": "0.5.56",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
|
|
68
.obsidian/plugins/obsidian-kanban/main.js
vendored
68
.obsidian/plugins/obsidian-kanban/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-kanban",
|
||||
"name": "Kanban",
|
||||
"version": "1.5.2",
|
||||
"version": "1.5.3",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||
"author": "mgmeyers",
|
||||
|
|
90
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
90
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "3.3.0",
|
||||
"minAppVersion": "0.14.6",
|
||||
"version": "4.0.1",
|
||||
"minAppVersion": "1.1.1",
|
||||
"description": "Task management for Obsidian",
|
||||
"author": "Martin Schenck and Clare Macrae",
|
||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
||||
|
|
|
@ -134,7 +134,7 @@
|
|||
|
||||
.tasks-modal-priorities {
|
||||
display: grid;
|
||||
grid-template-columns: 4em 5em 5em 7em 5em;
|
||||
grid-template-columns: 4em 8em 8em 8em;
|
||||
grid-column-gap: 1.33em;
|
||||
}
|
||||
|
||||
|
@ -146,6 +146,9 @@
|
|||
.tasks-modal-priorities label {
|
||||
border-radius: var(--input-radius);
|
||||
padding: 2px 3px;
|
||||
grid-column: 1;
|
||||
grid-row-start: 1;
|
||||
grid-row-end: 7;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:focus + label {
|
||||
|
@ -153,11 +156,11 @@
|
|||
border-color: var(--background-modifier-border-focus);
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:checked + label > span:first-child {
|
||||
.tasks-modal-priorities input:checked + label > span {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:not(:checked) + label > span:nth-child(2) {
|
||||
.tasks-modal-priorities input:not(:checked) + label > span:nth-child(4) {
|
||||
filter: grayscale(100%) opacity(60%);
|
||||
}
|
||||
|
||||
|
@ -207,7 +210,7 @@
|
|||
margin-bottom: -10px;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1 / span 2;
|
||||
grid-row: 1 / span 7;
|
||||
}
|
||||
.tasks-modal-dates {
|
||||
grid-template-columns: 1fr;
|
||||
|
@ -231,7 +234,7 @@
|
|||
grid-template-columns: 4em auto;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1 / span 4;
|
||||
grid-row: 1 / span 7;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
8
.obsidian/workspace.json
vendored
8
.obsidian/workspace.json
vendored
|
@ -60,6 +60,14 @@
|
|||
"type": "starred",
|
||||
"state": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "5d5a45f54056e11c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue