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,
|
"file-recovery": true,
|
||||||
"publish": false,
|
"publish": false,
|
||||||
"sync": 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",
|
"note-composer",
|
||||||
"command-palette",
|
"command-palette",
|
||||||
"editor-status",
|
"editor-status",
|
||||||
"starred",
|
"bookmarks",
|
||||||
"markdown-importer",
|
"markdown-importer",
|
||||||
"word-count",
|
"word-count",
|
||||||
"file-recovery"
|
"file-recovery"
|
||||||
|
|
362
.obsidian/plugins/dataview/main.js
vendored
362
.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",
|
"id": "dataview",
|
||||||
"name": "Dataview",
|
"name": "Dataview",
|
||||||
"version": "0.5.55",
|
"version": "0.5.56",
|
||||||
"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>",
|
||||||
|
|
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",
|
"id": "obsidian-kanban",
|
||||||
"name": "Kanban",
|
"name": "Kanban",
|
||||||
"version": "1.5.2",
|
"version": "1.5.3",
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.0.0",
|
||||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||||
"author": "mgmeyers",
|
"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",
|
"id": "obsidian-tasks-plugin",
|
||||||
"name": "Tasks",
|
"name": "Tasks",
|
||||||
"version": "3.3.0",
|
"version": "4.0.1",
|
||||||
"minAppVersion": "0.14.6",
|
"minAppVersion": "1.1.1",
|
||||||
"description": "Task management for Obsidian",
|
"description": "Task management for Obsidian",
|
||||||
"author": "Martin Schenck and Clare Macrae",
|
"author": "Martin Schenck and Clare Macrae",
|
||||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
"authorUrl": "https://github.com/obsidian-tasks-group",
|
||||||
|
|
|
@ -134,7 +134,7 @@
|
||||||
|
|
||||||
.tasks-modal-priorities {
|
.tasks-modal-priorities {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 4em 5em 5em 7em 5em;
|
grid-template-columns: 4em 8em 8em 8em;
|
||||||
grid-column-gap: 1.33em;
|
grid-column-gap: 1.33em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,6 +146,9 @@
|
||||||
.tasks-modal-priorities label {
|
.tasks-modal-priorities label {
|
||||||
border-radius: var(--input-radius);
|
border-radius: var(--input-radius);
|
||||||
padding: 2px 3px;
|
padding: 2px 3px;
|
||||||
|
grid-column: 1;
|
||||||
|
grid-row-start: 1;
|
||||||
|
grid-row-end: 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks-modal-priorities input:focus + label {
|
.tasks-modal-priorities input:focus + label {
|
||||||
|
@ -153,11 +156,11 @@
|
||||||
border-color: var(--background-modifier-border-focus);
|
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;
|
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%);
|
filter: grayscale(100%) opacity(60%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -207,7 +210,7 @@
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
}
|
}
|
||||||
.tasks-modal-priorities > label {
|
.tasks-modal-priorities > label {
|
||||||
grid-row: 1 / span 2;
|
grid-row: 1 / span 7;
|
||||||
}
|
}
|
||||||
.tasks-modal-dates {
|
.tasks-modal-dates {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
|
@ -231,7 +234,7 @@
|
||||||
grid-template-columns: 4em auto;
|
grid-template-columns: 4em auto;
|
||||||
}
|
}
|
||||||
.tasks-modal-priorities > label {
|
.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",
|
"type": "starred",
|
||||||
"state": {}
|
"state": {}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "5d5a45f54056e11c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue