update: obsidian tasks config and version

- Updated exlusion
- Updated next status symbol from TODO status
- Added ON-HOLD status type
This commit is contained in:
Mathis Gauthey
2024-01-04 10:53:38 +01:00
parent 82d6fce6f0
commit 64c6a44ddb
4 changed files with 205 additions and 65 deletions

View File

@@ -1,12 +1,13 @@
{ {
"globalQuery": "path does not include Archives\npath does not include Templates\npath does not include Workout_Log\npath does not include Media Backlog\npath does not include _Sources", "globalQuery": "path does not include _Sources\npath does not include 4-Archives\npath does not include 5-Templates",
"globalFilter": "", "globalFilter": "",
"removeGlobalFilter": true, "removeGlobalFilter": true,
"taskFormat": "tasksPluginEmoji", "taskFormat": "tasksPluginEmoji",
"setCreatedDate": true, "setCreatedDate": true,
"setDoneDate": true, "setDoneDate": true,
"setCancelledDate": true,
"autoSuggestInEditor": true, "autoSuggestInEditor": true,
"autoSuggestMinMatch": 0, "autoSuggestMinMatch": 1,
"autoSuggestMaxItems": 6, "autoSuggestMaxItems": 6,
"provideAccessKeys": true, "provideAccessKeys": true,
"useFilenameAsScheduledDate": false, "useFilenameAsScheduledDate": false,
@@ -17,7 +18,7 @@
{ {
"symbol": " ", "symbol": " ",
"name": "Todo", "name": "Todo",
"nextStatusSymbol": "x", "nextStatusSymbol": "/",
"availableAsCommand": true, "availableAsCommand": true,
"type": "TODO" "type": "TODO"
}, },
@@ -43,6 +44,13 @@
"nextStatusSymbol": " ", "nextStatusSymbol": " ",
"availableAsCommand": true, "availableAsCommand": true,
"type": "CANCELLED" "type": "CANCELLED"
},
{
"symbol": "?",
"name": "On Hold",
"nextStatusSymbol": " ",
"availableAsCommand": false,
"type": "NON_TASK"
} }
] ]
}, },
@@ -57,5 +65,16 @@
"debugSettings": { "debugSettings": {
"ignoreSortInstructions": false, "ignoreSortInstructions": false,
"showTaskHiddenData": false "showTaskHiddenData": false
},
"loggingOptions": {
"minLevels": {
"": "info",
"tasks": "info",
"tasks.Cache": "info",
"tasks.Events": "info",
"tasks.File": "info",
"tasks.Query": "info",
"tasks.Task": "info"
}
} }
} }

File diff suppressed because one or more lines are too long

View File

@@ -1,9 +1,10 @@
{ {
"id": "obsidian-tasks-plugin", "id": "obsidian-tasks-plugin",
"name": "Tasks", "name": "Tasks",
"version": "4.3.0", "version": "5.5.0",
"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",

View File

@@ -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.
@@ -72,6 +77,16 @@
text-decoration: none; text-decoration: none;
} }
/* Postpone icon. */
.tasks-postpone {
background-color: transparent;
padding: 0;
font-size: var(--font-text-size);
background-color: transparent;
display: contents;
cursor: pointer;
}
.tasks-list-text { .tasks-list-text {
position: relative; position: relative;
} }
@@ -88,6 +103,12 @@
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;
@@ -117,6 +138,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;
@@ -196,6 +222,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 +232,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;