1
0
Fork 0

Update obsidian template

This commit is contained in:
Alexander Schäferdiek 2023-10-14 10:34:17 +02:00
parent 15b0b49730
commit 096c8bdb93
12 changed files with 13915 additions and 4966 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.59", "version": "0.5.61",
"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

@ -14,6 +14,9 @@
"timelineColored": false, "timelineColored": false,
"timelineStartColor": "#006466", "timelineStartColor": "#006466",
"timelineEndColor": "#4d194d", "timelineEndColor": "#4d194d",
"timestampFormat": "HH:mm",
"dataviewSource": "",
"showDataviewMigrationWarning": true,
"customFolder": "Day Planners", "customFolder": "Day Planners",
"mode": 1, "mode": 1,
"mermaid": false, "mermaid": false,

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"id": "obsidian-day-planner", "id": "obsidian-day-planner",
"name": "Day Planner", "name": "Day Planner",
"version": "0.10.1", "version": "0.11.0",
"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",

View file

@ -391,6 +391,10 @@
.day-planner .status-bar-item-segment:hover { .day-planner .status-bar-item-segment:hover {
cursor: pointer; cursor: pointer;
} }
.status-bar-item.plugin-obsidian-day-planner {
display: flex;
gap: var(--size-2-2);
}
.day-planner-progress-bar { .day-planner-progress-bar {
overflow: hidden; overflow: hidden;
display: flex; display: flex;

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": "4.7.1", "version": "4.9.0",
"minAppVersion": "1.1.1", "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",

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"id": "templater-obsidian", "id": "templater-obsidian",
"name": "Templater", "name": "Templater",
"version": "1.16.0", "version": "1.16.4",
"description": "Create and use templates", "description": "Create and use templates",
"minAppVersion": "0.11.13", "minAppVersion": "0.11.13",
"author": "SilentVoid", "author": "SilentVoid",

View file

@ -107,142 +107,81 @@ textarea.templater-prompt-input:focus {
} }
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag { .cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
color: #008bff; color: var(--code-property, #008bff);
} }
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag { .cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
color: #c0d700; color: var(--code-function, #c0d700);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-keyword { .cm-s-obsidian .cm-templater-command.cm-keyword {
color: #00a7aa; color: var(--code-keyword, #00a7aa);
font-weight: normal; font-weight: normal;
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-atom { .cm-s-obsidian .cm-templater-command.cm-atom {
color: #f39b35; color: var(--code-normal, #f39b35);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-number { .cm-s-obsidian .cm-templater-command.cm-value,
color: #a06fca; .cm-s-obsidian .cm-templater-command.cm-number,
.cm-s-obsidian .cm-templater-command.cm-type {
color: var(--code-value, #a06fca);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-type { .cm-s-obsidian .cm-templater-command.cm-def,
color: #a06fca; .cm-s-obsidian .cm-templater-command.cm-type.cm-def {
color: var(--code-normal, var(--text-normal));
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-def { .cm-s-obsidian .cm-templater-command.cm-property,
color: #98e342; .cm-s-obsidian .cm-templater-command.cm-property.cm-def,
.cm-s-obsidian .cm-templater-command.cm-attribute {
color: var(--code-function, #98e342);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-property { .cm-s-obsidian .cm-templater-command.cm-variable,
color: #d4d4d4; .cm-s-obsidian .cm-templater-command.cm-variable-2,
.cm-s-obsidian .cm-templater-command.cm-variable-3,
.cm-s-obsidian .cm-templater-command.cm-meta {
color: var(--code-property, #d4d4d4);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable { .cm-s-obsidian .cm-templater-command.cm-callee,
color: #d4d4d4; .cm-s-obsidian .cm-templater-command.cm-operator,
.cm-s-obsidian .cm-templater-command.cm-qualifier,
.cm-s-obsidian .cm-templater-command.cm-builtin {
color: var(--code-operator, #fc4384);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable-2 { .cm-s-obsidian .cm-templater-command.cm-tag {
color: #da7dae; color: var(--code-tag, #fc4384);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable-3 { .cm-s-obsidian .cm-templater-command.cm-comment,
color: #a06fca; .cm-s-obsidian .cm-templater-command.cm-comment.cm-tag,
.cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
color: var(--code-comment, #696d70);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-type.cm-def { .cm-s-obsidian .cm-templater-command.cm-string,
color: #fc4384; .cm-s-obsidian .cm-templater-command.cm-string-2 {
color: var(--code-string, #e6db74);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-property.cm-def { .cm-s-obsidian .cm-templater-command.cm-header,
color: #fc4384; .cm-s-obsidian .cm-templater-command.cm-hr {
color: var(--code-keyword, #da7dae);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-callee { .cm-s-obsidian .cm-templater-command.cm-link {
color: #fc4384; color: var(--code-normal, #696d70);
} }
.theme-dark .cm-s-obsidian .cm-templater-command.cm-operator { .cm-s-obsidian .cm-templater-command.cm-error {
color: #fc4384;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-qualifier {
color: #fc4384;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-tag {
color: #fc4384;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-tag.cm-bracket {
color: #d4d4d4;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-attribute {
color: #a06fca;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment {
color: #696d70;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment.cm-tag {
color: #fc4384;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
color: #d4d4d4;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-string {
color: #e6db74;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-string-2 {
color: #f39b35;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-meta {
color: #d4d4d4;
background: inherit;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-builtin {
color: #fc4384;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-header {
color: #da7dae;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-hr {
color: #98e342;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-link {
color: #696d70;
}
.theme-dark .cm-s-obsidian .cm-templater-command.cm-error {
border-bottom: 1px solid #c42412; border-bottom: 1px solid #c42412;
} }
.theme-dark .cm-s-obsidian pre.HyperMD-codeblock .cm-keyword {
font-weight: normal;
}
.theme-dark
.cm-s-obsidian
.cm-templater-command.CodeMirror-activeline-background {
background: #272727;
}
.theme-dark .cm-s-obsidian .cm-templater-command.CodeMirror-matchingbracket {
outline: 1px solid grey;
color: #d4d4d4 !important;
}
.CodeMirror-hints { .CodeMirror-hints {
position: absolute; position: absolute;
z-index: 10; z-index: 10;

View file

@ -4,11 +4,11 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "d0d1ea65ca3da221", "id": "77cd83141484479f",
"type": "tabs", "type": "tabs",
"children": [ "children": [
{ {
"id": "31c3ef6191d47d12", "id": "a4cd405827f4548e",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "empty", "type": "empty",
@ -82,7 +82,7 @@
{ {
"id": "ec52e80aff4ffb89", "id": "ec52e80aff4ffb89",
"type": "tabs", "type": "tabs",
"dimension": 31.675592960979344, "dimension": 46.360582306830906,
"children": [ "children": [
{ {
"id": "9bebb7c5a5092409", "id": "9bebb7c5a5092409",
@ -94,25 +94,10 @@
} }
] ]
}, },
{
"id": "70c476b57b961209",
"type": "tabs",
"dimension": 31.675592960979344,
"children": [
{
"id": "79200622b92992a2",
"type": "leaf",
"state": {
"type": "timeline",
"state": {}
}
}
]
},
{ {
"id": "c152a02593699d74", "id": "c152a02593699d74",
"type": "tabs", "type": "tabs",
"dimension": 36.64881407804131, "dimension": 53.639417693169094,
"children": [ "children": [
{ {
"id": "96df686ab02776fa", "id": "96df686ab02776fa",
@ -168,16 +153,16 @@
"daily-notes:Open today's daily note": false, "daily-notes:Open today's daily note": false,
"command-palette:Open command palette": false, "command-palette:Open command palette": false,
"markdown-importer:Open format converter": false, "markdown-importer:Open format converter": false,
"templater-obsidian:Templater": false, "obsidian-day-planner:Timeline": false,
"obsidian-day-planner:Week plan": false "templater-obsidian:Templater": false
} }
}, },
"active": "31c3ef6191d47d12", "active": "a4cd405827f4548e",
"lastOpenFiles": [ "lastOpenFiles": [
"_Dashboard.md",
"_Templates/Meeting Template.md", "_Templates/Meeting Template.md",
"_Templates/Note Template.md",
"_Templates/Daily Note Template.md", "_Templates/Daily Note Template.md",
"_Dashboard.md",
"_Templates/Note Template.md",
"_Templates/Task Template.md", "_Templates/Task Template.md",
"Daily Notes/2023-09-26.md", "Daily Notes/2023-09-26.md",
"README.md", "README.md",