update
This commit is contained in:
BIN
.obsidian.mobile/.DS_Store
vendored
Normal file
BIN
.obsidian.mobile/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -1 +1,22 @@
|
||||
{}
|
||||
{
|
||||
"mobileToolbarCommands": [
|
||||
"editor:undo",
|
||||
"editor:redo",
|
||||
"editor:move-caret-left",
|
||||
"editor:move-caret-down",
|
||||
"editor:move-caret-up",
|
||||
"editor:move-caret-right",
|
||||
"editor:swap-line-up",
|
||||
"editor:swap-line-down",
|
||||
"editor:insert-wikilink",
|
||||
"editor:toggle-bold",
|
||||
"editor:toggle-italics",
|
||||
"editor:toggle-strikethrough",
|
||||
"editor:toggle-checklist-status",
|
||||
"editor:indent-list",
|
||||
"editor:unindent-list",
|
||||
"editor:paste",
|
||||
"editor:context-menu",
|
||||
"editor:configure-toolbar"
|
||||
]
|
||||
}
|
@@ -1,3 +1,8 @@
|
||||
{
|
||||
"accentColor": ""
|
||||
"accentColor": "",
|
||||
"cssTheme": "Minimal",
|
||||
"enabledCssSnippets": [
|
||||
"custom_callouts",
|
||||
"embeds"
|
||||
]
|
||||
}
|
8
.obsidian.mobile/community-plugins.json
Normal file
8
.obsidian.mobile/community-plugins.json
Normal file
@@ -0,0 +1,8 @@
|
||||
[
|
||||
"dataview",
|
||||
"breadcrumbs",
|
||||
"calendar",
|
||||
"obsidian-tasks-plugin",
|
||||
"obsidian-minimal-settings",
|
||||
"obsidian-style-settings"
|
||||
]
|
5
.obsidian.mobile/daily-notes.json
Normal file
5
.obsidian.mobile/daily-notes.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"template": "templates/daily note",
|
||||
"folder": "daily",
|
||||
"autorun": true
|
||||
}
|
@@ -17,6 +17,6 @@
|
||||
"repelStrength": 10,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 250,
|
||||
"scale": 0.046539988554720094,
|
||||
"scale": 0.11000788175913212,
|
||||
"close": false
|
||||
}
|
35880
.obsidian.mobile/plugins/breadcrumbs/main.js
Normal file
35880
.obsidian.mobile/plugins/breadcrumbs/main.js
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian.mobile/plugins/breadcrumbs/manifest.json
Normal file
10
.obsidian.mobile/plugins/breadcrumbs/manifest.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "breadcrumbs",
|
||||
"name": "Breadcrumbs",
|
||||
"version": "3.6.11",
|
||||
"minAppVersion": "0.15.2",
|
||||
"description": "Visualise & navigate your vault's structure",
|
||||
"author": "SkepticMystic",
|
||||
"authorUrl": "https://github.com/SkepticMystic/breadcrumbs",
|
||||
"isDesktopOnly": false
|
||||
}
|
113
.obsidian.mobile/plugins/breadcrumbs/styles.css
Normal file
113
.obsidian.mobile/plugins/breadcrumbs/styles.css
Normal file
@@ -0,0 +1,113 @@
|
||||
.BC-trail {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
margin-bottom: 5px !important;
|
||||
}
|
||||
|
||||
/* completely hides the trail when "no path found message" is left empty and no path is found */
|
||||
.BC-trail:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.BC-matrix-square li {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* ensure empty headers not leaving an element */
|
||||
.BC-Matrix .BC-Matrix-square .BC-Matrix-header:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.internal-link.BC-Link {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.internal-link.BC-Link:hover {
|
||||
color: var(--text-accent-hover, var(--text-accent));
|
||||
}
|
||||
|
||||
.vis-view-options > * {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* Source: https://svelte.dev/repl/3153faf7584d40bd8ddebecf39f24ac1?version=3.41.0 */
|
||||
[data-tooltip] {
|
||||
position: relative;
|
||||
/* z-index: 2; */
|
||||
/* display: block; */
|
||||
}
|
||||
|
||||
[data-tooltip]:before,
|
||||
[data-tooltip]:after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: 0.2s ease-out;
|
||||
transform: translate(-50%, 5px);
|
||||
}
|
||||
|
||||
[data-tooltip]:before {
|
||||
position: absolute;
|
||||
top: 80%;
|
||||
/* bottom: 100%; */
|
||||
left: 50%;
|
||||
margin-bottom: 5px;
|
||||
padding: 7px;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
min-width: 200px;
|
||||
min-height: 200px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
content: attr(data-tooltip);
|
||||
text-align: center;
|
||||
font-size: var(--font-medium);
|
||||
line-height: 1.2;
|
||||
transition: 0.2s ease-out;
|
||||
white-space: pre-line;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
/* [data-tooltip]:after {
|
||||
position: absolute;
|
||||
top: 80%;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
border-top: 5px solid #000;
|
||||
border-top: 5px solid hsla(0, 0%, 20%, 0.9);
|
||||
border-right: 5px solid transparent;
|
||||
border-left: 5px solid transparent;
|
||||
background-color: red;
|
||||
content: " ";
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
} */
|
||||
|
||||
[data-tooltip]:hover:before,
|
||||
[data-tooltip]:hover:after {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
[data-tooltip="false"]:hover:before,
|
||||
[data-tooltip="false"]:hover:after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.thread-dir-templates .setting-item-control {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.juggl-hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[data-type="BC-matrix"] div.view-content {
|
||||
overflow: hidden !important;
|
||||
}
|
10
.obsidian.mobile/plugins/calendar/data.json
Normal file
10
.obsidian.mobile/plugins/calendar/data.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"shouldConfirmBeforeCreate": true,
|
||||
"weekStart": "locale",
|
||||
"wordsPerDot": 250,
|
||||
"showWeeklyNote": false,
|
||||
"weeklyNoteFormat": "",
|
||||
"weeklyNoteTemplate": "",
|
||||
"weeklyNoteFolder": "",
|
||||
"localeOverride": "system-default"
|
||||
}
|
4457
.obsidian.mobile/plugins/calendar/main.js
Normal file
4457
.obsidian.mobile/plugins/calendar/main.js
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian.mobile/plugins/calendar/manifest.json
Normal file
10
.obsidian.mobile/plugins/calendar/manifest.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "calendar",
|
||||
"name": "Calendar",
|
||||
"description": "Calendar view of your daily notes",
|
||||
"version": "1.5.10",
|
||||
"author": "Liam Cain",
|
||||
"authorUrl": "https://github.com/liamcain/",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "0.9.11"
|
||||
}
|
20723
.obsidian.mobile/plugins/dataview/main.js
Normal file
20723
.obsidian.mobile/plugins/dataview/main.js
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian.mobile/plugins/dataview/manifest.json
Normal file
11
.obsidian.mobile/plugins/dataview/manifest.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.67",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||
"isDesktopOnly": false
|
||||
}
|
146
.obsidian.mobile/plugins/dataview/styles.css
Normal file
146
.obsidian.mobile/plugins/dataview/styles.css
Normal file
@@ -0,0 +1,146 @@
|
||||
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
34
.obsidian.mobile/plugins/obsidian-minimal-settings/data.json
Normal file
34
.obsidian.mobile/plugins/obsidian-minimal-settings/data.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"lightStyle": "minimal-light",
|
||||
"darkStyle": "minimal-dark",
|
||||
"lightScheme": "minimal-default-light",
|
||||
"darkScheme": "minimal-default-dark",
|
||||
"editorFont": "",
|
||||
"lineHeight": 1.5,
|
||||
"lineWidth": 40,
|
||||
"lineWidthWide": 50,
|
||||
"maxWidth": 88,
|
||||
"textNormal": 16,
|
||||
"textSmall": 13,
|
||||
"imgGrid": false,
|
||||
"imgWidth": "img-default-width",
|
||||
"tableWidth": "table-default-width",
|
||||
"iframeWidth": "iframe-default-width",
|
||||
"mapWidth": "map-default-width",
|
||||
"chartWidth": "chart-default-width",
|
||||
"colorfulHeadings": false,
|
||||
"colorfulFrame": false,
|
||||
"colorfulActiveStates": false,
|
||||
"trimNames": true,
|
||||
"labeledNav": false,
|
||||
"fullWidthMedia": true,
|
||||
"bordersToggle": true,
|
||||
"minimalStatus": true,
|
||||
"focusMode": false,
|
||||
"underlineInternal": true,
|
||||
"underlineExternal": true,
|
||||
"folding": true,
|
||||
"lineNumbers": false,
|
||||
"readableLineLength": true,
|
||||
"devBlockWidth": false
|
||||
}
|
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-minimal-settings",
|
||||
"name": "Minimal Theme Settings",
|
||||
"version": "8.1.1",
|
||||
"minAppVersion": "1.1.9",
|
||||
"description": "Change the colors, fonts and features of Minimal Theme.",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://www.twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano",
|
||||
"isDesktopOnly": false
|
||||
}
|
78
.obsidian.mobile/plugins/obsidian-style-settings/data.json
Normal file
78
.obsidian.mobile/plugins/obsidian-style-settings/data.json
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"minimal-style@@h2-weight": 600,
|
||||
"minimal-style@@h3-weight": 600,
|
||||
"minimal-style@@h4-weight": 600,
|
||||
"minimal-style@@h5-weight": 600,
|
||||
"minimal-style@@h6-weight": 600,
|
||||
"minimal-cards-style@@cards-min-width": "400px",
|
||||
"customizable-page-header-buttons@@page-header-spacing-desktop": 6,
|
||||
"minimal-advanced@@cursor": "default",
|
||||
"minimal-style@@checkbox-shape": "checkbox-square",
|
||||
"quick-explorer@@qe-hide-breadcrumbs": false,
|
||||
"minimal-style@@h1-color@@light": "#2967B3",
|
||||
"minimal-style@@bold-color@@light": "#000000",
|
||||
"minimal-style@@bold-color@@dark": "#EEEEEE",
|
||||
"supercharged-links@@591a-86c0-color": "#658CAD",
|
||||
"supercharged-links@@591a-86c0-weight": "normal",
|
||||
"supercharged-links@@591a-86c0-before": "👤",
|
||||
"minimal-advanced@@styled-scrollbars": false,
|
||||
"minimal-style@@h1-color@@dark": "#2967B3",
|
||||
"minimal-style@@h2-color@@dark": "#C9893A",
|
||||
"minimal-style@@h1-style": "normal",
|
||||
"minimal-style@@h1-l": false,
|
||||
"minimal-style@@h3-color@@dark": "#9E72AF",
|
||||
"minimal-style@@h4-color@@dark": "#62A563",
|
||||
"minimal-style@@h5-color@@dark": "#DB5454",
|
||||
"minimal-style@@h5-variant": "normal",
|
||||
"minimal-style@@h3-size": "1.15em",
|
||||
"minimal-style@@h4-variant": "normal",
|
||||
"minimal-style@@h4-size": "1em",
|
||||
"minimal-style@@h1-size": "1.4em",
|
||||
"minimal-style@@h1-weight": 900,
|
||||
"minimal-style@@h2-size": "1.3em",
|
||||
"minimal-style@@h5-size": "0.9em",
|
||||
"minimal-style@@h6-variant": "normal",
|
||||
"minimal-style@@h6-size": "0.85em",
|
||||
"minimal-style@@h6-color@@dark": "#2798A2",
|
||||
"minimal-style@@h6-l": false,
|
||||
"minimal-style@@icon-muted": 0.5,
|
||||
"supercharged-links@@7812-52e6-before": "📅 ",
|
||||
"customizable-page-header-buttons@@page-header-spacing-mobile": 12,
|
||||
"minimal-style@@trim-cols": false,
|
||||
"minimal-style@@max-col-width": "50em",
|
||||
"minimal-style@@code-background@@dark": "#1E1E1E",
|
||||
"minimal-style@@window-title-off": false,
|
||||
"minimal-style@@code-normal@@dark": "#BCBCBC",
|
||||
"minimal-style@@image-muted": 0.7,
|
||||
"minimal-style@@zoom-off": false,
|
||||
"minimal-style@@col-alt": false,
|
||||
"supercharged-links@@f1e2-3136-color": "#008A88",
|
||||
"supercharged-links@@591a-86c0-decoration": "initial",
|
||||
"pane-relief@@pane-relief-pane-numbering": false,
|
||||
"pane-relief@@pane-relief-disable-counts": false,
|
||||
"minimal-style@@active-line-on": true,
|
||||
"supercharged-links@@89ca-499e-color": "#008A88",
|
||||
"supercharged-links@@4694-3e42-color": "#E16914",
|
||||
"supercharged-links@@8606-2a08-color": "#2A9E00",
|
||||
"supercharged-links@@7812-52e6-color": "#A55F5F",
|
||||
"supercharged-links@@7812-52e6-decoration": "initial",
|
||||
"supercharged-links@@ef64-500f-color": "#825AE1",
|
||||
"supercharged-links@@c309-a78f-color": "#825AE1",
|
||||
"minimal-style@@embed-strict": true,
|
||||
"list-callouts@@lc-bg-left": 35,
|
||||
"list-callouts@@lc-bg-opacity-light": 0.1,
|
||||
"list-callouts@@lc-bg-left-checkbox": 60,
|
||||
"list-callouts@@lc-bg-left-checkbox-lp": 43,
|
||||
"list-callouts@@lc-bg-opacity-dark": 0.1,
|
||||
"pane-relief@@pr-sliding-panes-desktop-width": "1100px",
|
||||
"minimal-style@@h2-color@@light": "#C9893A",
|
||||
"minimal-style@@h3-color@@light": "#9E72AF",
|
||||
"minimal-style@@h4-color@@light": "#62A563",
|
||||
"minimal-style@@h5-color@@light": "#DB5454",
|
||||
"minimal-style@@h6-color@@light": "#2798A2",
|
||||
"minimal-style@@file-header-visibility": "minimal-tab-title-visible",
|
||||
"minimal-style@@inline-title-color@@light": "#1E780A",
|
||||
"minimal-style@@inline-title-weight": 600,
|
||||
"minimal-style@@inline-title-color@@dark": "#1E780A",
|
||||
"minimal-style@@h1-variant": "normal"
|
||||
}
|
163
.obsidian.mobile/plugins/obsidian-style-settings/main.js
Normal file
163
.obsidian.mobile/plugins/obsidian-style-settings/main.js
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-style-settings",
|
||||
"name": "Style Settings",
|
||||
"version": "1.0.9",
|
||||
"minAppVersion": "0.11.5",
|
||||
"description": "Offers controls for adjusting theme, plugin, and snippet CSS variables.",
|
||||
"author": "mgmeyers",
|
||||
"authorUrl": "https://github.com/mgmeyers/obsidian-style-settings",
|
||||
"isDesktopOnly": false
|
||||
}
|
243
.obsidian.mobile/plugins/obsidian-style-settings/styles.css
Normal file
243
.obsidian.mobile/plugins/obsidian-style-settings/styles.css
Normal file
File diff suppressed because one or more lines are too long
229
.obsidian.mobile/plugins/obsidian-tasks-plugin/data.json
Normal file
229
.obsidian.mobile/plugins/obsidian-tasks-plugin/data.json
Normal file
@@ -0,0 +1,229 @@
|
||||
{
|
||||
"globalQuery": "",
|
||||
"globalFilter": "#task",
|
||||
"removeGlobalFilter": true,
|
||||
"taskFormat": "tasksPluginEmoji",
|
||||
"setCreatedDate": false,
|
||||
"setDoneDate": true,
|
||||
"setCancelledDate": true,
|
||||
"autoSuggestInEditor": true,
|
||||
"autoSuggestMinMatch": 0,
|
||||
"autoSuggestMaxItems": 20,
|
||||
"provideAccessKeys": true,
|
||||
"useFilenameAsScheduledDate": true,
|
||||
"filenameAsScheduledDateFormat": "",
|
||||
"filenameAsDateFolders": [],
|
||||
"recurrenceOnNextLine": false,
|
||||
"statusSettings": {
|
||||
"coreStatuses": [
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "Todo",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "Done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "DONE"
|
||||
}
|
||||
],
|
||||
"customStatuses": [
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "In Progress",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "Cancelled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "CANCELLED"
|
||||
},
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "to-do",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "incomplete",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": false,
|
||||
"type": "DONE"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "canceled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": false,
|
||||
"type": "CANCELLED"
|
||||
},
|
||||
{
|
||||
"symbol": ">",
|
||||
"name": "forwarded",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "<",
|
||||
"name": "scheduling",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "?",
|
||||
"name": "question",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "!",
|
||||
"name": "important",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "*",
|
||||
"name": "star",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "\"",
|
||||
"name": "quote",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "l",
|
||||
"name": "location",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "b",
|
||||
"name": "bookmark",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "i",
|
||||
"name": "information",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "S",
|
||||
"name": "savings",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "I",
|
||||
"name": "idea",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "p",
|
||||
"name": "pros",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "c",
|
||||
"name": "cons",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "f",
|
||||
"name": "fire",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "k",
|
||||
"name": "key",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "w",
|
||||
"name": "win",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "u",
|
||||
"name": "up",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "d",
|
||||
"name": "down",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
}
|
||||
]
|
||||
},
|
||||
"features": {
|
||||
"INTERNAL_TESTING_ENABLED_BY_DEFAULT": true
|
||||
},
|
||||
"generalSettings": {},
|
||||
"headingOpened": {
|
||||
"Core Statuses": true,
|
||||
"Custom Statuses": true
|
||||
},
|
||||
"debugSettings": {
|
||||
"ignoreSortInstructions": false,
|
||||
"showTaskHiddenData": false,
|
||||
"recordTimings": false
|
||||
},
|
||||
"loggingOptions": {
|
||||
"minLevels": {
|
||||
"": "info",
|
||||
"tasks": "info",
|
||||
"tasks.Cache": "info",
|
||||
"tasks.Events": "info",
|
||||
"tasks.File": "info",
|
||||
"tasks.Query": "info",
|
||||
"tasks.Task": "info"
|
||||
}
|
||||
}
|
||||
}
|
407
.obsidian.mobile/plugins/obsidian-tasks-plugin/main.js
Normal file
407
.obsidian.mobile/plugins/obsidian-tasks-plugin/main.js
Normal file
File diff suppressed because one or more lines are too long
12
.obsidian.mobile/plugins/obsidian-tasks-plugin/manifest.json
Normal file
12
.obsidian.mobile/plugins/obsidian-tasks-plugin/manifest.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "7.10.2",
|
||||
"minAppVersion": "1.1.1",
|
||||
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
|
||||
"helpUrl": "https://publish.obsidian.md/tasks/",
|
||||
"author": "Clare Macrae and Ilyas Landikov (created by Martin Schenck)",
|
||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
||||
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
||||
"isDesktopOnly": false
|
||||
}
|
File diff suppressed because one or more lines are too long
BIN
.obsidian.mobile/snippets/.DS_Store
vendored
Normal file
BIN
.obsidian.mobile/snippets/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
.obsidian.mobile/snippets/custom_callouts.css
Normal file
BIN
.obsidian.mobile/snippets/custom_callouts.css
Normal file
Binary file not shown.
BIN
.obsidian.mobile/snippets/embeds.css
Normal file
BIN
.obsidian.mobile/snippets/embeds.css
Normal file
Binary file not shown.
8
.obsidian.mobile/themes/Minimal/manifest.json
Normal file
8
.obsidian.mobile/themes/Minimal/manifest.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Minimal",
|
||||
"version": "7.7.18",
|
||||
"minAppVersion": "1.6.1",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano"
|
||||
}
|
2224
.obsidian.mobile/themes/Minimal/theme.css
Normal file
2224
.obsidian.mobile/themes/Minimal/theme.css
Normal file
File diff suppressed because one or more lines are too long
@@ -16,15 +16,43 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ce2150ca175684cc",
|
||||
"id": "cd624dc9bde07078",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {}
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "70a42a2763a73ef0",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Tasks Plugin - Review and check your Statuses 2024-09-25 15-58-59.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "09f41d6f3314d0b7",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 1
|
||||
"currentTab": 3
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@@ -90,10 +118,11 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"showSearch": true,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
@@ -106,6 +135,7 @@
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
@@ -116,6 +146,32 @@
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fc061ef3eb1a7b60",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "calendar",
|
||||
"state": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e28be47da20d0874",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "BC-matrix",
|
||||
"state": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ab5d65516838132b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "BC-tree",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
@@ -129,11 +185,19 @@
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false
|
||||
"command-palette:Open command palette": false,
|
||||
"breadcrumbs:Breadcrumbs Visualisation": false
|
||||
}
|
||||
},
|
||||
"active": "ce2150ca175684cc",
|
||||
"active": "09f41d6f3314d0b7",
|
||||
"lastOpenFiles": [
|
||||
"snippets alias",
|
||||
"Tasks Plugin - Review and check your Statuses 2024-09-25 15-59-01.md",
|
||||
"groupe diédral d'ordre 4.md",
|
||||
"Tasks Plugin - Review and check your Statuses 2024-09-25 15-58-59.md",
|
||||
"daily/2024-09-25.md",
|
||||
"Tasks Plugin - Review and check your Statuses 2024-09-25 15-57-59.md",
|
||||
"2024-09-25.md",
|
||||
"obsidian workflow cours.md",
|
||||
"espace vectoriel engendré par une famille de vecteurs.md",
|
||||
"matrice d'une forme quadratique.md",
|
||||
|
Reference in New Issue
Block a user