Update to latest plugin versions
This commit is contained in:
parent
a25c48d2ea
commit
d155153b69
12 changed files with 286 additions and 111 deletions
3
.obsidian/appearance.json
vendored
3
.obsidian/appearance.json
vendored
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"baseFontSize": 16
|
||||
"baseFontSize": 16,
|
||||
"accentColor": ""
|
||||
}
|
8
.obsidian/plugins/dataview/main.js
vendored
8
.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.46",
|
||||
"version": "0.5.47",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
|
|
98
.obsidian/plugins/obsidian-kanban/main.js
vendored
98
.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.3.20",
|
||||
"version": "1.4.6",
|
||||
"minAppVersion": "0.15.3",
|
||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||
"author": "mgmeyers",
|
||||
|
|
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
39
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
39
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "1.13.1",
|
||||
"version": "1.15.1",
|
||||
"minAppVersion": "0.14.6",
|
||||
"description": "Task management for Obsidian",
|
||||
"author": "Martin Schenck and Clare Macrae",
|
||||
|
|
|
@ -13,10 +13,22 @@
|
|||
width: 1em;
|
||||
height: 1em;
|
||||
vertical-align: middle;
|
||||
margin-left: 0.3em;
|
||||
margin-left: 0.5em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Urgency score */
|
||||
.tasks-urgency {
|
||||
font-size: var(--font-ui-smaller);
|
||||
font-family: var(--font-interface);
|
||||
padding: 2px 6px;
|
||||
border-radius: var(--radius-s);
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-secondary);
|
||||
margin-left: 0.5em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.internal-link.internal-link-short-mode {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -52,3 +64,8 @@
|
|||
.tasks-modal-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.tasks-modal label + input[type=checkbox] {
|
||||
margin-left: 0.67em;
|
||||
}
|
||||
|
||||
|
|
49
.obsidian/plugins/templater-obsidian/main.js
vendored
49
.obsidian/plugins/templater-obsidian/main.js
vendored
|
@ -3978,39 +3978,22 @@ var Templater = class {
|
|||
if (file.path.includes(template_folder) && template_folder !== "/") {
|
||||
return;
|
||||
}
|
||||
yield new Promise((resolve2) => {
|
||||
let timeout;
|
||||
const file_open_ref = app.workspace.on("file-open", (opened_file) => __async(this, null, function* () {
|
||||
if (opened_file !== file) {
|
||||
return;
|
||||
}
|
||||
window.clearTimeout(timeout);
|
||||
app.workspace.offref(file_open_ref);
|
||||
yield delay(300);
|
||||
if (file.stat.size == 0 && templater.plugin.settings.enable_folder_templates) {
|
||||
const folder_template_match = templater.get_new_file_template_for_folder(file.parent);
|
||||
if (!folder_template_match) {
|
||||
resolve2();
|
||||
return;
|
||||
}
|
||||
const template_file = yield errorWrapper(() => __async(this, null, function* () {
|
||||
return resolve_tfile(folder_template_match);
|
||||
}), `Couldn't find template ${folder_template_match}`);
|
||||
if (template_file == null) {
|
||||
resolve2();
|
||||
return;
|
||||
}
|
||||
yield templater.write_template_to_file(template_file, file);
|
||||
} else {
|
||||
yield templater.overwrite_file_commands(file);
|
||||
}
|
||||
resolve2();
|
||||
}));
|
||||
timeout = window.setTimeout(() => {
|
||||
app.workspace.offref(file_open_ref);
|
||||
resolve2();
|
||||
}, 300);
|
||||
});
|
||||
yield delay(300);
|
||||
if (file.stat.size == 0 && templater.plugin.settings.enable_folder_templates) {
|
||||
const folder_template_match = templater.get_new_file_template_for_folder(file.parent);
|
||||
if (!folder_template_match) {
|
||||
return;
|
||||
}
|
||||
const template_file = yield errorWrapper(() => __async(this, null, function* () {
|
||||
return resolve_tfile(folder_template_match);
|
||||
}), `Couldn't find template ${folder_template_match}`);
|
||||
if (template_file == null) {
|
||||
return;
|
||||
}
|
||||
yield templater.write_template_to_file(template_file, file);
|
||||
} else {
|
||||
yield templater.overwrite_file_commands(file);
|
||||
}
|
||||
});
|
||||
}
|
||||
execute_startup_scripts() {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "1.14.2",
|
||||
"version": "1.14.3",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "0.11.13",
|
||||
"author": "SilentVoid",
|
||||
|
|
171
.obsidian/workspace.json
vendored
Normal file
171
.obsidian/workspace.json
vendored
Normal file
|
@ -0,0 +1,171 @@
|
|||
{
|
||||
"main": {
|
||||
"id": "ff671356ba766952",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "434a9f0c9ae5636b",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "7c409d481aab556b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "d2eec933f352990a",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "92ef269ea55383ac",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "1957de311598a86a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "7dfc8ef71c506823",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "tag:#<%",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e168f75ac2947c8f",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "starred",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 321
|
||||
},
|
||||
"right": {
|
||||
"id": "88f8677a7c9ad3a9",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "ec52e80aff4ffb89",
|
||||
"type": "tabs",
|
||||
"dimension": 29.451540195341845,
|
||||
"children": [
|
||||
{
|
||||
"id": "9bebb7c5a5092409",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "calendar",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "c152a02593699d74",
|
||||
"type": "tabs",
|
||||
"dimension": 49.135987978963186,
|
||||
"children": [
|
||||
{
|
||||
"id": "96df686ab02776fa",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"collapseAll": true,
|
||||
"extraContext": true,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "2bce19c6e3decd53",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "f57f8ae7e55c455c",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "_Dashboard.md",
|
||||
"mode": "preview",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 2
|
||||
},
|
||||
{
|
||||
"id": "c9cd22bacd1a68ab",
|
||||
"type": "tabs",
|
||||
"dimension": 21.41247182569497,
|
||||
"children": [
|
||||
{
|
||||
"id": "39f76c5bd454f0b8",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "timeline",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 760
|
||||
},
|
||||
"ribbon": {
|
||||
"mostRecentAction": ""
|
||||
},
|
||||
"active": "7c409d481aab556b",
|
||||
"lastOpenFiles": [
|
||||
"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",
|
||||
"Notes/Video.md"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue