Update plugins
This commit is contained in:
parent
d155153b69
commit
ca2c2189b7
19 changed files with 5692 additions and 6776 deletions
29
.obsidian/core-plugins-migration.json
vendored
Normal file
29
.obsidian/core-plugins-migration.json
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"outgoing-link": false,
|
||||
"tag-pane": true,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": false,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": false,
|
||||
"editor-status": true,
|
||||
"starred": true,
|
||||
"markdown-importer": true,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": false,
|
||||
"word-count": true,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false,
|
||||
"canvas": true
|
||||
}
|
1
.obsidian/core-plugins.json
vendored
1
.obsidian/core-plugins.json
vendored
|
@ -4,6 +4,7 @@
|
|||
"switcher",
|
||||
"graph",
|
||||
"backlink",
|
||||
"canvas",
|
||||
"tag-pane",
|
||||
"page-preview",
|
||||
"daily-notes",
|
||||
|
|
9762
.obsidian/plugins/dataview/main.js
vendored
9762
.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.47",
|
||||
"version": "0.5.55",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
|
|
4
.obsidian/plugins/dataview/styles.css
vendored
4
.obsidian/plugins/dataview/styles.css
vendored
|
@ -3,6 +3,10 @@
|
|||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
|
48
.obsidian/plugins/obsidian-kanban/main.js
vendored
48
.obsidian/plugins/obsidian-kanban/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"id": "obsidian-kanban",
|
||||
"name": "Kanban",
|
||||
"version": "1.4.6",
|
||||
"minAppVersion": "0.15.3",
|
||||
"version": "1.5.2",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||
"author": "mgmeyers",
|
||||
"authorUrl": "https://github.com/mgmeyers/obsidian-kanban",
|
||||
|
|
2
.obsidian/plugins/obsidian-kanban/styles.css
vendored
2
.obsidian/plugins/obsidian-kanban/styles.css
vendored
File diff suppressed because one or more lines are too long
117
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
117
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "1.15.1",
|
||||
"version": "2.0.1",
|
||||
"minAppVersion": "0.14.6",
|
||||
"description": "Task management for Obsidian",
|
||||
"author": "Martin Schenck and Clare Macrae",
|
||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
||||
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
|
274
.obsidian/plugins/obsidian-tasks-plugin/styles.css
vendored
274
.obsidian/plugins/obsidian-tasks-plugin/styles.css
vendored
|
@ -1,13 +1,52 @@
|
|||
:root {
|
||||
--tasks-details-icon: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.58L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.42z'/></svg>");
|
||||
|
||||
}
|
||||
|
||||
.plugin-tasks-query-explanation{
|
||||
/* Prevent long explanation lines wrapping, so they are more readable,
|
||||
especially on small screens.
|
||||
|
||||
A horizontal scroll bar will be displayed, if the explanation
|
||||
is too wide to fit.
|
||||
*/
|
||||
--code-white-space: pre;
|
||||
}
|
||||
|
||||
.tasks-count {
|
||||
color: var(--text-faint);
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
/* Tooltip pop up above the description in short mode */
|
||||
.tooltip.pop-up {
|
||||
animation: pop-up-animation 200ms forwards ease-in-out;
|
||||
}
|
||||
@keyframes pop-up-animation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-100%) scale(1);
|
||||
}
|
||||
20% {
|
||||
opacity: 0.7;
|
||||
transform: translateY(-100%) scale(1.02);
|
||||
}
|
||||
40% {
|
||||
opacity: 1;
|
||||
transform: translateY(-100%) scale(1.05);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(-100%) scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Pencil icon. */
|
||||
.tasks-edit {
|
||||
background-color: var(--text-faint);
|
||||
mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20width%3D%221em%22%20height%3D%221em%22%20style%3D%22-ms-transform%3A%20rotate(360deg)%3B%20-webkit-transform%3A%20rotate(360deg)%3B%20transform%3A%20rotate(360deg)%3B%22%20preserveAspectRatio%3D%22xMidYMid%20meet%22%20viewBox%3D%220%200%201536%201536%22%3E%3Cpath%20d%3D%22M363%201408l91-91l-235-235l-91%2091v107h128v128h107zm523-928q0-22-22-22q-10%200-17%207l-542%20542q-7%207-7%2017q0%2022%2022%2022q10%200%2017-7l542-542q7-7%207-17zm-54-192l416%20416l-832%20832H0v-416zm683%2096q0%2053-37%2090l-166%20166l-416-416l166-165q36-38%2090-38q53%200%2091%2038l235%20234q37%2039%2037%2091z%22%20fill%3D%22%23626262%22%2F%3E%3C%2Fsvg%3E");
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20width%3D%221em%22%20height%3D%221em%22%20style%3D%22-ms-transform%3A%20rotate(360deg)%3B%20-webkit-transform%3A%20rotate(360deg)%3B%20transform%3A%20rotate(360deg)%3B%22%20preserveAspectRatio%3D%22xMidYMid%20meet%22%20viewBox%3D%220%200%201536%201536%22%3E%3Cpath%20d%3D%22M363%201408l91-91l-235-235l-91%2091v107h128v128h107zm523-928q0-22-22-22q-10%200-17%207l-542%20542q-7%207-7%2017q0%2022%2022%2022q10%200%2017-7l542-542q7-7%207-17zm-54-192l416%20416l-832%20832H0v-416zm683%2096q0%2053-37%2090l-166%20166l-416-416l166-165q36-38%2090-38q53%200%2091%2038l235%20234q37%2039%2037%2091z%22%20fill%3D%22%23626262%22%2F%3E%3C%2Fsvg%3E");
|
||||
mask-size: contain;
|
||||
-webkit-mask-size: contain;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
|
@ -49,23 +88,240 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tasks-modal label {
|
||||
margin: 5px 0 5px 0;
|
||||
/**------------------------------------------------------------------------
|
||||
** MODAL
|
||||
*------------------------------------------------------------------------**/
|
||||
|
||||
.tasks-modal-section + .tasks-modal-section {
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.tasks-modal input[type=text] {
|
||||
.tasks-modal-section label {
|
||||
display: inline-block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.tasks-modal-section label > span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.tasks-modal .with-accesskeys .accesskey-first::first-letter,
|
||||
.tasks-modal .with-accesskeys .accesskey {
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 1pt;
|
||||
}
|
||||
|
||||
.tasks-modal-buttons {
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 1fr;
|
||||
column-gap: .5em;
|
||||
}
|
||||
|
||||
.tasks-modal label + input[type="checkbox"] {
|
||||
margin-left: 0.67em;
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
.tasks-modal input[type="text"] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tasks-modal hr {
|
||||
margin: 10px 0 10px 0;
|
||||
.tasks-modal textarea {
|
||||
width: 100%;
|
||||
min-height: calc(var(--input-height) * 2);
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.tasks-modal-date {
|
||||
margin-bottom: 10px;
|
||||
.tasks-modal-priorities {
|
||||
display: grid;
|
||||
grid-template-columns: 4em 5em 5em 7em 5em;
|
||||
grid-column-gap: 1.33em;
|
||||
}
|
||||
|
||||
.tasks-modal label + input[type=checkbox] {
|
||||
margin-left: 0.67em;
|
||||
.tasks-modal-priorities span {
|
||||
line-height: 1.41;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities label {
|
||||
border-radius: var(--input-radius);
|
||||
padding: 2px 3px;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:focus + label {
|
||||
box-shadow: 0 0 0 2px var(--background-modifier-border-focus);
|
||||
border-color: var(--background-modifier-border-focus);
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:checked + label > span:first-child {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:not(:checked) + label > span:nth-child(2) {
|
||||
filter: grayscale(100%) opacity(60%);
|
||||
}
|
||||
|
||||
.tasks-modal-dates {
|
||||
display: grid;
|
||||
grid-template-columns: 5.5em auto;
|
||||
column-gap: .5em;
|
||||
row-gap: 5px;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > label {
|
||||
grid-column: 1;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > input, .tasks-modal-dates > code {
|
||||
grid-column: 2;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > code {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > div {
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 3;
|
||||
}
|
||||
|
||||
.tasks-modal-status {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.tasks-modal-error {
|
||||
border: 1px solid red !important;
|
||||
}
|
||||
|
||||
.tasks-modal button:disabled {
|
||||
pointer-events: none !important;
|
||||
opacity: 0.3 !important;
|
||||
}
|
||||
|
||||
@media (max-width: 649px) {
|
||||
.tasks-modal-priorities {
|
||||
grid-template-columns: 4em 7.5em 5em;
|
||||
margin-bottom: -10px;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1 / span 2;
|
||||
}
|
||||
.tasks-modal-dates {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.tasks-modal-dates > label {
|
||||
margin: 0;
|
||||
}
|
||||
.tasks-modal-dates > input, .tasks-modal-dates > code {
|
||||
grid-column: 1;
|
||||
}
|
||||
.tasks-modal-dates > div {
|
||||
grid-column-end: 1;
|
||||
}
|
||||
.tasks-modal-status {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 399px) {
|
||||
.tasks-modal-priorities {
|
||||
grid-template-columns: 4em auto;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1 / span 4;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 259px) {
|
||||
.tasks-modal-priorities {
|
||||
grid-template-columns: 1fr;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/**------------------------------------------------------------------------
|
||||
** SETTINGS
|
||||
*------------------------------------------------------------------------**/
|
||||
|
||||
.tasks-settings-is-invalid {
|
||||
/* Dark red text on pale background*/
|
||||
color: var(--text-error) !important;
|
||||
background-color: rgba(var(--background-modifier-error-rgb), 0.2) !important;
|
||||
}
|
||||
|
||||
|
||||
.tasks-settings .additional {
|
||||
margin: 6px 12px;
|
||||
}
|
||||
.tasks-settings .additional > .setting-item {
|
||||
border-top: 0;
|
||||
padding-top: 9px;
|
||||
}
|
||||
|
||||
|
||||
.tasks-settings details > summary {
|
||||
outline: none;
|
||||
display: block !important;
|
||||
list-style: none !important;
|
||||
list-style-type: none !important;
|
||||
min-height: 1rem;
|
||||
border-top-left-radius: 0.1rem;
|
||||
border-top-right-radius: 0.1rem;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tasks-settings details > summary::-webkit-details-marker,
|
||||
.tasks-settings details > summary::marker {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.tasks-settings details > summary > .collapser {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 8px;
|
||||
transform: translateY(-50%);
|
||||
content: "";
|
||||
}
|
||||
|
||||
.tasks-settings details > summary > .collapser > .handle {
|
||||
transform: rotate(0deg);
|
||||
transition: transform 0.25s;
|
||||
background-color: currentColor;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
-webkit-mask-image: var(--tasks-details-icon);
|
||||
mask-image: var(--tasks-details-icon);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.tasks-settings details[open] > summary > .collapser > .handle {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.tasks-nested-settings .setting-item {
|
||||
border: 0px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.tasks-nested-settings {
|
||||
padding-bottom: 18px;
|
||||
}
|
||||
.tasks-nested-settings[open] .setting-item-heading,
|
||||
.tasks-nested-settings:not(details) .setting-item-heading {
|
||||
border-top: 0px;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.tasks-settings .row-for-status {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
|
2177
.obsidian/plugins/templater-obsidian/main.js
vendored
2177
.obsidian/plugins/templater-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "1.14.3",
|
||||
"version": "1.16.0",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "0.11.13",
|
||||
"author": "SilentVoid",
|
||||
|
|
|
@ -24,6 +24,10 @@
|
|||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_donating {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.templater_title {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -110,10 +114,6 @@ textarea.templater-prompt-input:focus {
|
|||
color: #c0d700;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-raw-tag {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||
color: #00a7aa;
|
||||
font-weight: normal;
|
||||
|
|
25
.obsidian/workspace.json
vendored
25
.obsidian/workspace.json
vendored
|
@ -4,11 +4,11 @@
|
|||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "434a9f0c9ae5636b",
|
||||
"id": "6417598fdcb52d4e",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "7c409d481aab556b",
|
||||
"id": "d90aec04c6889134",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
|
@ -152,17 +152,28 @@
|
|||
"direction": "horizontal",
|
||||
"width": 760
|
||||
},
|
||||
"ribbon": {
|
||||
"mostRecentAction": ""
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Open quick switcher": false,
|
||||
"graph:Open graph view": false,
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"command-palette:Open command palette": false,
|
||||
"markdown-importer:Open format converter": false,
|
||||
"templater-obsidian:Templater": false
|
||||
}
|
||||
},
|
||||
"active": "7c409d481aab556b",
|
||||
"active": "d90aec04c6889134",
|
||||
"lastOpenFiles": [
|
||||
"_Templates/Daily Note Template.md",
|
||||
"_Templates/Meeting Template.md",
|
||||
"_Templates/Task Template.md",
|
||||
"_Templates/Note Template.md",
|
||||
"_Dashboard.md",
|
||||
"README.md",
|
||||
"_Attachments/preview.png",
|
||||
"Daily Notes/2022-01-05.md",
|
||||
"Daily Notes/2022-01-04.md",
|
||||
"_Dashboard.md",
|
||||
"_Templates/Daily Note Template.md",
|
||||
"Notes/Tasks.md",
|
||||
"_Kanban.md",
|
||||
"Tasks/Untitled.md",
|
||||
|
|
|
@ -3,8 +3,6 @@ creation date: <% tp.date.now("YYYY-MM-DD") %>
|
|||
tags: [<% tp.file.title %>, daily]
|
||||
---
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
<< [[Daily Notes/<% tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD") %>]] | [[Daily Notes/<% tp.date.now("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") %>]] >>
|
||||
|
||||
##### Missed: Due
|
||||
|
@ -42,4 +40,3 @@ path does not include _Templates
|
|||
## Day Planner
|
||||
|
||||
- [ ] Link [[<% tp.file.title %>]] to Day Planner
|
||||
- [ ]
|
|
@ -3,7 +3,5 @@ creation date: <% tp.date.now("YYYY-MM-DD") %>
|
|||
tags: [meeting]
|
||||
---
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
Date:
|
||||
Attendees:
|
|
@ -3,6 +3,6 @@ creation date: <% tp.date.now("YYYY-MM-DD") %>
|
|||
tags: [note]
|
||||
---
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,6 @@ creation date: <% tp.date.now("YYYY-MM-DD") %>
|
|||
tags: []
|
||||
---
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue