Update plugins
This commit is contained in:
parent
096c8bdb93
commit
f5f407b1bd
12 changed files with 28093 additions and 9960 deletions
507
.obsidian/plugins/dataview/main.js
vendored
507
.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.61",
|
"version": "0.5.64",
|
||||||
"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>",
|
||||||
|
|
20
.obsidian/plugins/obsidian-day-planner/data.json
vendored
20
.obsidian/plugins/obsidian-day-planner/data.json
vendored
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"circularProgress": true,
|
"snapStepMinutes": 10,
|
||||||
"nowAndNextInStatusBar": true,
|
"progressIndicator": "bar",
|
||||||
"showTaskNotification": true,
|
"showTaskNotification": true,
|
||||||
"zoomLevel": 1,
|
"zoomLevel": 1,
|
||||||
"timelineIcon": "calendar-with-checkmark",
|
"timelineIcon": "calendar-with-checkmark",
|
||||||
|
@ -8,14 +8,28 @@
|
||||||
"startHour": 7,
|
"startHour": 7,
|
||||||
"timelineDateFormat": "LLLL",
|
"timelineDateFormat": "LLLL",
|
||||||
"centerNeedle": true,
|
"centerNeedle": true,
|
||||||
"showHelp": true,
|
|
||||||
"plannerHeading": "Day planner",
|
"plannerHeading": "Day planner",
|
||||||
"plannerHeadingLevel": 1,
|
"plannerHeadingLevel": 1,
|
||||||
"timelineColored": false,
|
"timelineColored": false,
|
||||||
"timelineStartColor": "#006466",
|
"timelineStartColor": "#006466",
|
||||||
"timelineEndColor": "#4d194d",
|
"timelineEndColor": "#4d194d",
|
||||||
"timestampFormat": "HH:mm",
|
"timestampFormat": "HH:mm",
|
||||||
|
"hourFormat": "H",
|
||||||
"dataviewSource": "",
|
"dataviewSource": "",
|
||||||
|
"extendDurationUntilNext": false,
|
||||||
|
"defaultDurationMinutes": 30,
|
||||||
|
"showTimestampInTaskBlock": false,
|
||||||
|
"showUncheduledTasks": true,
|
||||||
|
"showUnscheduledNestedTasks": true,
|
||||||
|
"showNow": true,
|
||||||
|
"showNext": true,
|
||||||
|
"pluginVersion": "0.19.5",
|
||||||
|
"showCompletedTasks": true,
|
||||||
|
"showSubtasksInTaskBlocks": true,
|
||||||
|
"icals": [],
|
||||||
|
"circularProgress": true,
|
||||||
|
"nowAndNextInStatusBar": true,
|
||||||
|
"showHelp": true,
|
||||||
"showDataviewMigrationWarning": true,
|
"showDataviewMigrationWarning": true,
|
||||||
"customFolder": "Day Planners",
|
"customFolder": "Day Planners",
|
||||||
"mode": 1,
|
"mode": 1,
|
||||||
|
|
36864
.obsidian/plugins/obsidian-day-planner/main.js
vendored
36864
.obsidian/plugins/obsidian-day-planner/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-day-planner",
|
"id": "obsidian-day-planner",
|
||||||
"name": "Day Planner",
|
"name": "Day Planner",
|
||||||
"version": "0.11.0",
|
"version": "0.19.5",
|
||||||
"minAppVersion": "0.16.0",
|
"minAppVersion": "0.16.0",
|
||||||
"description": "A day planner with clean UI and readable syntax",
|
"description": "A day planner with clean UI and readable syntax",
|
||||||
"author": "James Lynch, continued by Ivan Lednev",
|
"author": "James Lynch, continued by Ivan Lednev",
|
||||||
|
|
|
@ -385,6 +385,14 @@
|
||||||
background-color: #4CC9D8;
|
background-color: #4CC9D8;
|
||||||
transform: rotate(0.5turn);
|
transform: rotate(0.5turn);
|
||||||
}
|
}
|
||||||
|
@keyframes pulse {
|
||||||
|
from {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 0.2;
|
||||||
|
}
|
||||||
|
}
|
||||||
.day-planner {
|
.day-planner {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -435,12 +443,8 @@
|
||||||
border-left: 20px solid transparent;
|
border-left: 20px solid transparent;
|
||||||
}
|
}
|
||||||
.progress-pie.day-planner {
|
.progress-pie.day-planner {
|
||||||
float: left;
|
|
||||||
display: none;
|
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
margin: 0.3px 10px 0.3px 0;
|
|
||||||
background-color: var(--text-muted);
|
|
||||||
}
|
}
|
||||||
.progress-pie.day-planner::after {
|
.progress-pie.day-planner::after {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
|
@ -454,7 +458,8 @@
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
[data-type=timeline] .view-content,
|
[data-type=timeline] .view-content,
|
||||||
[data-type=weekly] .view-content {
|
[data-type=weekly] .view-content,
|
||||||
|
[data-type=timeTracker] .view-content {
|
||||||
--time-ruler-width: 30px;
|
--time-ruler-width: 30px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -465,3 +470,7 @@
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
.day-planner-release-notes-modal .modal-content {
|
||||||
|
height: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
216
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
216
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,9 +1,10 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-tasks-plugin",
|
"id": "obsidian-tasks-plugin",
|
||||||
"name": "Tasks",
|
"name": "Tasks",
|
||||||
"version": "4.9.0",
|
"version": "6.1.2",
|
||||||
"minAppVersion": "1.1.1",
|
"minAppVersion": "1.1.1",
|
||||||
"description": "Task management for Obsidian",
|
"description": "Task management for Obsidian",
|
||||||
|
"helpUrl": "https://publish.obsidian.md/tasks/",
|
||||||
"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",
|
||||||
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
||||||
|
|
155
.obsidian/plugins/obsidian-tasks-plugin/styles.css
vendored
155
.obsidian/plugins/obsidian-tasks-plugin/styles.css
vendored
|
@ -3,6 +3,11 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix indentation of wrapped task lines in Tasks search results, when in Live Preview. */
|
||||||
|
ul.contains-task-list .task-list-item-checkbox {
|
||||||
|
margin-inline-start: calc(var(--checkbox-size) * -1.5) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.plugin-tasks-query-explanation{
|
.plugin-tasks-query-explanation{
|
||||||
/* Prevent long explanation lines wrapping, so they are more readable,
|
/* Prevent long explanation lines wrapping, so they are more readable,
|
||||||
especially on small screens.
|
especially on small screens.
|
||||||
|
@ -41,19 +46,30 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pencil icon. */
|
/* Edit and postpone */
|
||||||
.tasks-edit {
|
.tasks-edit, .tasks-postpone {
|
||||||
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;
|
width: 1em;
|
||||||
height: 1em;
|
height: 1em;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin-left: 0.5em;
|
margin-left: .33em;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
font-family: var(--font-interface);
|
||||||
|
color: var(--text-accent);
|
||||||
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.tasks-edit, a.tasks-postpone {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tasks-edit::after {
|
||||||
|
content: '📝';
|
||||||
|
}
|
||||||
|
|
||||||
|
.tasks-postpone::after {
|
||||||
|
content: '⏩';
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Urgency score */
|
/* Urgency score */
|
||||||
|
@ -83,11 +99,21 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.task-list-item-checkbox {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hide tags that Obsidian recognises, if `hide tags` instruction was used. */
|
/* Hide tags that Obsidian recognises, if `hide tags` instruction was used. */
|
||||||
.tasks-layout-hide-tags .task-description a.tag {
|
.tasks-layout-hide-tags .task-description a.tag {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Workaround for issue #2073: Enabling the plugin causes blockIds to be not hidden in reading view
|
||||||
|
https://github.com/obsidian-tasks-group/obsidian-tasks/issues/2073 */
|
||||||
|
.task-list-item .task-block-link{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.tasks-setting-important {
|
.tasks-setting-important {
|
||||||
color: red;
|
color: red;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -98,7 +124,7 @@
|
||||||
*------------------------------------------------------------------------**/
|
*------------------------------------------------------------------------**/
|
||||||
|
|
||||||
.tasks-modal-section + .tasks-modal-section {
|
.tasks-modal-section + .tasks-modal-section {
|
||||||
margin-top: 16px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks-modal-section label {
|
.tasks-modal-section label {
|
||||||
|
@ -117,6 +143,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks-modal-buttons {
|
.tasks-modal-buttons {
|
||||||
|
position: sticky;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: var(--modal-background);
|
||||||
|
padding-bottom: 16px;
|
||||||
|
padding-top: 16px;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 3fr 1fr;
|
grid-template-columns: 3fr 1fr;
|
||||||
column-gap: .5em;
|
column-gap: .5em;
|
||||||
|
@ -137,6 +168,11 @@
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tasks-modal hr {
|
||||||
|
margin: 0.35rem 0;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.tasks-modal-priorities {
|
.tasks-modal-priorities {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 4em 8em 8em 8em;
|
grid-template-columns: 4em 8em 8em 8em;
|
||||||
|
@ -181,12 +217,12 @@
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks-modal-dates > input, .tasks-modal-dates > code {
|
.tasks-modal-dates > .input, .tasks-modal-dates > .results {
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks-modal-dates > code {
|
.tasks-modal-dates > .results {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -196,6 +232,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks-modal-status {
|
.tasks-modal-status {
|
||||||
|
padding-bottom: 6px;
|
||||||
|
margin-bottom: -16px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
@ -204,6 +242,11 @@
|
||||||
border: 1px solid red !important;
|
border: 1px solid red !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tasks-modal-warning {
|
||||||
|
color: var(--text-warning) !important;
|
||||||
|
background-color: rgba(var(--background-modifier-warning-rgb), 0.2) !important;
|
||||||
|
}
|
||||||
|
|
||||||
.tasks-modal button:disabled {
|
.tasks-modal button:disabled {
|
||||||
pointer-events: none !important;
|
pointer-events: none !important;
|
||||||
opacity: 0.3 !important;
|
opacity: 0.3 !important;
|
||||||
|
@ -223,7 +266,7 @@
|
||||||
.tasks-modal-dates > label {
|
.tasks-modal-dates > label {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.tasks-modal-dates > input, .tasks-modal-dates > code {
|
.tasks-modal-dates > .input, .tasks-modal-dates > .results {
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
}
|
}
|
||||||
.tasks-modal-dates > div {
|
.tasks-modal-dates > div {
|
||||||
|
@ -252,6 +295,92 @@
|
||||||
grid-row: 1;
|
grid-row: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* Dependency Styles */
|
||||||
|
|
||||||
|
.task-dependencies-container {
|
||||||
|
padding-bottom: 4px;
|
||||||
|
padding-top: 4px;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
.task-dependency {
|
||||||
|
display: inline-flex;
|
||||||
|
background-color: var(--interactive-normal);
|
||||||
|
box-shadow: var(--input-shadow);
|
||||||
|
border-radius: 28px;
|
||||||
|
padding: 6px 8px 6px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-name {
|
||||||
|
font-size: 14px;
|
||||||
|
max-width: 160px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-delete {
|
||||||
|
padding: 3px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-left: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
height: inherit;
|
||||||
|
box-shadow: none !important;
|
||||||
|
background-color: var(--background-primary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-dropdown {
|
||||||
|
list-style: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
padding: 4px;
|
||||||
|
margin: 0;
|
||||||
|
background-color: var(--background-primary);
|
||||||
|
border: 1px;
|
||||||
|
border-radius: 6px;
|
||||||
|
border-color: var(--background-modifier-border);
|
||||||
|
border-style: solid;
|
||||||
|
z-index: 99;
|
||||||
|
max-height: 170px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-dropdown li {
|
||||||
|
padding: 5px;
|
||||||
|
margin: 2px;
|
||||||
|
border-radius: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between
|
||||||
|
}
|
||||||
|
.task-dependency-dropdown li .dependency-name {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-dropdown li .dependency-name-shared {
|
||||||
|
width: calc(60%);
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-dropdown li .dependency-path {
|
||||||
|
width: calc(40%);
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-style: italic;
|
||||||
|
text-align: right;
|
||||||
|
color: var(--italic-color)
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-dependency-dropdown li.selected {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
}
|
||||||
|
|
||||||
/**------------------------------------------------------------------------
|
/**------------------------------------------------------------------------
|
||||||
** SETTINGS
|
** SETTINGS
|
||||||
|
|
234
.obsidian/plugins/templater-obsidian/main.js
vendored
234
.obsidian/plugins/templater-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"id": "templater-obsidian",
|
"id": "templater-obsidian",
|
||||||
"name": "Templater",
|
"name": "Templater",
|
||||||
"version": "1.16.4",
|
"version": "2.2.3",
|
||||||
"description": "Create and use templates",
|
"description": "Create and use templates",
|
||||||
"minAppVersion": "0.11.13",
|
"minAppVersion": "1.5.0",
|
||||||
"author": "SilentVoid",
|
"author": "SilentVoid",
|
||||||
"authorUrl": "https://github.com/SilentVoid13",
|
"authorUrl": "https://github.com/SilentVoid13",
|
||||||
|
"helpUrl": "https://silentvoid13.github.io/Templater/",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
}
|
}
|
||||||
|
|
26
.obsidian/workspace.json
vendored
26
.obsidian/workspace.json
vendored
|
@ -4,11 +4,11 @@
|
||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "77cd83141484479f",
|
"id": "41616c64b888e2c6",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "a4cd405827f4548e",
|
"id": "684c2b2d3758a0dc",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "empty",
|
"type": "empty",
|
||||||
|
@ -82,7 +82,7 @@
|
||||||
{
|
{
|
||||||
"id": "ec52e80aff4ffb89",
|
"id": "ec52e80aff4ffb89",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"dimension": 46.360582306830906,
|
"dimension": 23.180291153415457,
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "9bebb7c5a5092409",
|
"id": "9bebb7c5a5092409",
|
||||||
|
@ -94,10 +94,25 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "ce68c3cd1b6b420f",
|
||||||
|
"type": "tabs",
|
||||||
|
"dimension": 23.180291153415457,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "04c609073ee0af11",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "timeline",
|
||||||
|
"state": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "c152a02593699d74",
|
"id": "c152a02593699d74",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"dimension": 53.639417693169094,
|
"dimension": 53.63941769316909,
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "96df686ab02776fa",
|
"id": "96df686ab02776fa",
|
||||||
|
@ -157,8 +172,9 @@
|
||||||
"templater-obsidian:Templater": false
|
"templater-obsidian:Templater": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "a4cd405827f4548e",
|
"active": "684c2b2d3758a0dc",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Daily Notes/2024-03-10.md",
|
||||||
"_Templates/Meeting Template.md",
|
"_Templates/Meeting Template.md",
|
||||||
"_Templates/Daily Note Template.md",
|
"_Templates/Daily Note Template.md",
|
||||||
"_Dashboard.md",
|
"_Dashboard.md",
|
||||||
|
|
Loading…
Reference in a new issue