This commit is contained in:
Oscar Plaisant
2024-10-01 11:38:50 +02:00
parent 695358527b
commit 5b65eb2b2a
178 changed files with 186337 additions and 103731 deletions

View File

@@ -0,0 +1,276 @@
{
"is_dirty": false,
"edge_fields": [
{
"label": "up"
},
{
"label": "down"
},
{
"label": "same"
},
{
"label": "next"
},
{
"label": "prev"
}
],
"edge_field_groups": [
{
"label": "ups",
"fields": [
"up"
]
},
{
"label": "downs",
"fields": [
"down"
]
},
{
"label": "sames",
"fields": [
"same"
]
},
{
"label": "nexts",
"fields": [
"next"
]
},
{
"label": "prevs",
"fields": [
"prev"
]
}
],
"implied_relations": {
"transitive": [
{
"name": "",
"rounds": 1,
"chain": [
{
"field": "up"
}
],
"close_field": "down",
"close_reversed": true
},
{
"name": "",
"rounds": 1,
"chain": [
{
"field": "down"
}
],
"close_field": "up",
"close_reversed": true
},
{
"name": "",
"rounds": 1,
"chain": [
{
"field": "same"
}
],
"close_field": "same",
"close_reversed": true
},
{
"name": "",
"rounds": 1,
"chain": [
{
"field": "next"
}
],
"close_field": "prev",
"close_reversed": true
},
{
"name": "",
"rounds": 1,
"chain": [
{
"field": "prev"
}
],
"close_field": "next",
"close_reversed": true
}
]
},
"explicit_edge_sources": {
"typed_link": {},
"list_note": {
"default_neighbour_field": ""
},
"tag_note": {
"default_field": "up"
},
"regex_note": {
"default_field": "up"
},
"dendron_note": {
"enabled": false,
"delimiter": ".",
"default_field": "up",
"display_trimmed": false
},
"johnny_decimal_note": {
"enabled": false,
"delimiter": ".",
"default_field": "up"
},
"date_note": {
"enabled": false,
"date_format": "yyyy-MM-dd",
"default_field": "next",
"stretch_to_existing": false
}
},
"views": {
"page": {
"all": {
"sticky": false,
"readable_line_width": true
},
"trail": {
"enabled": true,
"format": "path",
"selection": "all",
"default_depth": 8,
"no_path_message": "",
"show_controls": false,
"merge_fields": true,
"field_group_labels": [
"ups"
],
"show_node_options": {
"ext": false,
"folder": false,
"alias": false
}
},
"prev_next": {
"enabled": true,
"show_node_options": {
"ext": false,
"folder": false,
"alias": false
},
"field_group_labels": {
"prev": [
"prevs"
],
"next": []
}
}
},
"side": {
"matrix": {
"collapse": false,
"edge_sort_id": {
"field": "basename",
"order": 1
},
"show_node_options": {
"ext": false,
"folder": false,
"alias": false
},
"show_attributes": [
"source",
"implied_kind",
"round"
],
"field_group_labels": [
"ups",
"downs",
"sames",
"nexts",
"prevs"
]
},
"tree": {
"collapse": false,
"show_attributes": [],
"merge_fields": false,
"field_group_labels": [
"downs"
],
"edge_sort_id": {
"field": "basename",
"order": 1
},
"show_node_options": {
"ext": false,
"folder": false,
"alias": false
}
}
},
"codeblocks": {
"show_node_options": {
"ext": false,
"folder": false,
"alias": false
}
}
},
"commands": {
"rebuild_graph": {
"notify": true,
"trigger": {
"note_save": false,
"layout_change": false
}
},
"list_index": {
"default_options": {
"fields": [],
"indent": "\\t",
"link_kind": "wiki",
"show_attributes": [],
"field_group_labels": [],
"edge_sort_id": {
"order": 1,
"field": "basename"
},
"show_node_options": {
"ext": false,
"alias": true,
"folder": false
}
}
},
"freeze_implied_edges": {
"default_options": {
"destination": "frontmatter"
}
},
"thread": {
"default_options": {
"destination": "frontmatter",
"target_path_template": "{{source.folder}}/{{attr.field}} {{source.basename}}"
}
}
},
"suggestors": {
"edge_field": {
"enabled": false,
"trigger": "."
}
},
"debug": {
"level": "INFO"
}
}

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +1 @@
{
"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
}
{"id":"breadcrumbs","name":"Breadcrumbs","version":"4.2.35-beta","minAppVersion":"1.0.0","description":"Add structured hierarchies to your notes","author":"SkepticMystic","authorUrl":"https://github.com/SkepticMystic/breadcrumbs","fundingUrl":"https://github.com/SkepticMystic/breadcrumbs#donations","helpUrl":"https://publish.obsidian.md/breadcrumbs-docs","isDesktopOnly":false}

View File

@@ -1,113 +1 @@
.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;
}
.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.\!collapse{visibility:collapse!important}.collapse{visibility:collapse}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.bottom-2{bottom:.5rem}.left-2{left:.5rem}.right-2{right:.5rem}.top-2{top:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-0{margin-top:0;margin-bottom:0}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mb-1{margin-bottom:.25rem}.mb-4{margin-bottom:1rem}.block{display:block}.flex{display:flex}.grid{display:grid}.contents{display:contents}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.h-32{height:8rem}.w-10{width:2.5rem}.w-48{width:12rem}.w-60{width:15rem}.w-8{width:2rem}.w-full{width:100%}.shrink{flex-shrink:1}.grow{flex-grow:1}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.scroll-mt-40{scroll-margin-top:10rem}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0{gap:0}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-7{gap:1.75rem}.border{border-width:1px}.p-1{padding:.25rem}.p-2{padding:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pl-4{padding-left:1rem}.pr-10{padding-right:2.5rem}.pr-2{padding-right:.5rem}.text-left{text-align:left}.text-right{text-align:right}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-semibold{font-weight:600}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.BC-matrix-view hr:last-child{display:none}.BC-page-views.BC-page-views-sticky{z-index:50;position:sticky;top:calc(var(--file-margins)*-1);background-color:var(--background-primary)}.text-faint{color:var(--text-faint)}.text-warning{color:var(--text-warning)}.text-error{color:var(--text-error)}

View File

@@ -0,0 +1,36 @@
{
"confirmDeletion": true,
"showAddCommand": true,
"debug": false,
"editorMenu": [],
"fileMenu": [],
"leftRibbon": [
{
"id": "calendar:show-calendar-view",
"icon": "calendar",
"name": "Open Calendar",
"mode": "any"
}
],
"rightRibbon": [],
"titleBar": [],
"statusBar": [],
"pageHeader": [],
"macros": [],
"explorer": [],
"hide": {
"statusbar": [],
"leftRibbon": []
},
"spacing": 8,
"advancedToolbar": {
"rowHeight": 35,
"rowCount": 2,
"spacing": 0,
"buttonWidth": 40,
"columnLayout": true,
"mappedIcons": [],
"tooltips": false,
"heightOffset": 0
}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "cmdr",
"name": "Commander",
"version": "0.5.1",
"minAppVersion": "1.4.0",
"description": "Customize your workspace by adding commands everywhere, create Macros and supercharge your mobile toolbar.",
"author": "jsmorabito & phibr0",
"authorUrl": "https://github.com/phibr0",
"fundingUrl": "https://ko-fi.com/phibr0",
"isDesktopOnly": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,39 @@
{
"snapStepMinutes": 10,
"progressIndicator": "bar",
"showTaskNotification": true,
"zoomLevel": 1,
"timelineIcon": "horizontal-split",
"endLabel": "All done",
"startHour": 8,
"timelineDateFormat": "YYYY-MM-DD",
"centerNeedle": true,
"plannerHeading": "Day planner",
"plannerHeadingLevel": 1,
"timelineColored": false,
"timelineStartColor": "#006466",
"timelineEndColor": "#4d194d",
"timestampFormat": "HH:mm",
"hourFormat": "H",
"dataviewSource": "",
"extendDurationUntilNext": false,
"defaultDurationMinutes": 30,
"showTimestampInTaskBlock": false,
"showUncheduledTasks": true,
"showUnscheduledNestedTasks": true,
"showNow": true,
"showNext": true,
"pluginVersion": "0.22.1",
"showCompletedTasks": true,
"showSubtasksInTaskBlocks": true,
"icals": [
{
"name": "",
"url": "https://ade.univ-tours.fr/jsp/custom/modules/plannings/pn8k10Y8.shu",
"color": "#ffffff"
}
],
"colorOverrides": [],
"releaseNotes": true,
"taskStatusOnCreation": " "
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-day-planner",
"name": "Day Planner",
"version": "0.22.1",
"minAppVersion": "0.16.0",
"description": "A day planner with clean UI and readable syntax",
"author": "James Lynch, continued by Ivan Lednev",
"authorUrl": "https://github.com/ivan-lednev",
"fundingUrl": "https://www.buymeacoffee.com/machineelf",
"isDesktopOnly": false
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,16 @@
{
"pluginList": [
"SkepticMystic/breadcrumbs"
],
"pluginSubListFrozenVersion": [],
"themesList": [],
"updateAtStartup": true,
"updateThemesAtStartup": true,
"enableAfterInstall": true,
"loggingEnabled": false,
"loggingPath": "BRAT-log",
"loggingVerboseEnabled": false,
"debuggingMode": false,
"notificationsEnabled": true,
"personalAccessToken": ""
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
{
"id": "obsidian42-brat",
"name": "BRAT",
"version": "1.0.3",
"minAppVersion": "1.4.16",
"description": "Easily install a beta version of a plugin for testing.",
"author": "TfTHacker",
"authorUrl": "https://github.com/TfTHacker/obsidian42-brat",
"helpUrl": "https://tfthacker.com/BRAT",
"isDesktopOnly": false,
"fundingUrl": {
"Buy Me a Coffee": "https://bit.ly/o42-kofi",
"Visit my site": "https://tfthacker.com"
}
}

View File

@@ -0,0 +1,3 @@
.brat-modal .modal-button-container {
margin-top: 5px !important;
}