weekly update

main
iOS 3 years ago
parent 80bff8226a
commit 5d2041bfe1

@ -13,7 +13,8 @@
"bulletp_relationship",
"hyphenation_justification",
"externallink_icon",
"folder_4_icon"
"folder_4_icon",
"custom_icons_frontmatter_tags"
],
"cssTheme": "California Coast"
"cssTheme": "Primary"
}

@ -31,5 +31,9 @@
"obsidian-crypto-lookup",
"obsidian-footnotes",
"obsidian-advanced-uri",
"mrj-text-expand"
"mrj-text-expand",
"fantasy-calendar",
"obsidian-icon-shortcodes",
"cooklang-obsidian",
"obsidian-dialogue-plugin"
]

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
{"id":"cooklang-obsidian","name":"CookLang Editor","author":"death_au","authorUrl":"https://github.com/deathau","description":"Edit and display CookLang recipes in Obsidian","isDesktopOnly":false,"version":"0.2.0","minAppVersion":"0.10.12"}

@ -0,0 +1,68 @@
.workspace-leaf-content[data-type=cook] .view-content {
font-family: inherit;
}
.workspace-leaf-content[data-type=cook] .cook-preview-view,
.workspace-leaf-content[data-type=cook] .cook-source-view {
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.workspace-leaf-content[data-type=cook] .main-image {
width: 100vw;
aspect-ratio: 1.618;
object-fit: cover;
}
.workspace-leaf-content[data-type=cook] .method-image {
display: block;
margin-top: 1em;
max-width: 100%;
max-height: 16vw;
}
.workspace-leaf-content[data-type=cook] ul.ingredients,
.workspace-leaf-content[data-type=cook] ul.cookware {
column-count: 2;
}
.workspace-leaf-content[data-type=cook] ol.method {
margin-left: 0;
padding-right: 0;
list-style-type: none;
padding: 0;
}
.workspace-leaf-content[data-type=cook] ol.method > li {
counter-increment: step-counter;
}
.workspace-leaf-content[data-type=cook] ol.method > li::before {
content: "Step " counter(step-counter);
font-weight: 600;
display: block;
font-size: 1.17em;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
.workspace-leaf-content[data-type=cook] span.time,
.workspace-leaf-content[data-type=cook] span.ingredient,
.workspace-leaf-content[data-type=cook] span.cookware {
font-weight: 600;
}
.workspace-leaf-content[data-type=cook] .cm-ingredient,
.workspace-leaf-content[data-type=cook] .cm-cookware {
color: var(--text-accent);
font-weight: 600;
}
.workspace-leaf-content[data-type=cook] .cm-formatting {
color: var(--text-faint);
}
.workspace-leaf-content[data-type=cook] .cm-measurement,
.workspace-leaf-content[data-type=cook] .cm-timer,
.workspace-leaf-content[data-type=cook] .cm-unit {
color: var(--text-muted);
}
.workspace-leaf-content[data-type=cook] .cm-metadata,
.workspace-leaf-content[data-type=cook] .cm-metadata-key {
font-family: var(--font-monospace);
}
.workspace-leaf-content[data-type=cook] .cm-metadata-key {
font-weight: 600;
}

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "emoji-shortcodes",
"name": "Emoji Shortcodes",
"version": "2.1.0",
"version": "2.1.1",
"minAppVersion": "0.12.17",
"description": "This Plugin enables the use of Markdown Emoji Shortcodes :smile:",
"author": "phibr0",

@ -0,0 +1,8 @@
{
"calendars": [],
"currentCalendar": null,
"defaultCalendar": null,
"eventPreview": false,
"configDirectory": null,
"path": "/"
}

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "fantasy-calendar",
"name": "Fantasy Calendar",
"version": "1.9.0",
"minAppVersion": "0.12.10",
"author": "Jeremy Valentine",
"description": "Fantasy calendars in Obsidian!",
"authorUrl": "https://github.com/valentine195/obsidian-fantasy-calendar",
"isDesktopOnly": false
}

@ -0,0 +1,211 @@
.fantasy-calendar-confirm-buttons {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 0.5rem;
}
.fantasy-calendar-settings .fantasy-calendars {
border-bottom: 1px solid var(--background-modifier-border);
border-top: 1px solid var(--background-modifier-border);
padding: 18px 0 0 0;
}
.fantasy-calendar-create-calendar input[disabled] {
cursor: not-allowed;
}
.fantasy-calendar-settings .fantasy-calendars .existing-calendars > span {
display: block;
text-align: center;
margin-bottom: 18px;
color: var(--text-muted);
}
.fantasy-calendar-settings
.fantasy-calendars
> .setting-item:not(.setting-item-heading) {
border: 0px;
}
.fantasy-calendar-settings .fantasy-calendar-config .setting-item-name {
display: flex;
gap: 0.25rem;
align-items: center;
}
/** Create Calendar Modal */
.modal-container.fantasy-calendar-create-calendar > .modal {
transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.fantasy-calendar-create-calendar .modal-content {
display: flex;
flex-flow: column nowrap;
gap: 0.5rem;
}
.fantasy-calendar-create-calendar .calendar-info .calendar-description {
display: flex;
flex-flow: column nowrap;
}
.fantasy-calendar-create-calendar .calendar-info textarea {
resize: vertical;
}
.fantasy-calendar-create-calendar details {
padding: 0.5rem;
}
.fantasy-calendar-create-calendar details[open] {
border: 1px solid var(--background-modifier-border);
border-radius: 0.5rem;
}
.fantasy-calendar-create-calendar .fantasy-calendar-container .existing-items {
overflow: auto;
max-height: 500px;
}
.fantasy-calendar-create-calendar
.fantasy-calendar-container
.existing-items
> span {
display: block;
text-align: center;
color: var(--text-muted);
}
.fantasy-calendar-create-calendar details .setting-item {
border: 0px;
}
.fantasy-calendar-create-calendar summary * {
display: inline;
margin: 0;
}
.fantasy-context-buttons {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 0.25rem;
}
.fantasy-calendar-create-calendar button[disabled] {
cursor: not-allowed;
}
.fantasy-calendar-create-event .event-info {
display: flex;
flex-flow: column nowrap;
width: 100%;
justify-content: flex-start;
align-items: flex-start;
gap: 0.5rem;
}
.fantasy-calendar-create-event .event-info > *,
.fantasy-calendar-create-event .setting-item {
width: 100%;
padding-top: 0;
padding-bottom: 0.75rem;
border: 0;
}
.fantasy-calendar-create-event .event-info > .event-description {
display: flex;
flex-flow: column nowrap;
}
.fantasy-calendar-create-event .event-info textarea {
resize: vertical;
}
/** Preset Calendar Modal */
.fantasy-calendar-choose-preset .fantasy-calendar-preset-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-auto-rows: 1fr;
gap: 1rem;
align-items: center;
justify-content: flex-start;
}
.fantasy-calendar-choose-preset .fantasy-calendar-preset-container button {
height: 100%;
width: 100%;
white-space: pre-line;
max-width: 250px;
}
.fantasy-calendar-choose-preset
.fantasy-calendar-preset-container
button.mod-cta {
box-shadow: 0px 0px 5px var(--background-modifier-box-shadow);
}
/** Leap Day Editor */
.fantasy-leap-day-interval-description {
color: var(--text-muted);
border: 0;
}
.fantasy-calendar-event-date {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 0.5rem;
}
.fantasy-calendar-picker {
padding: 5px 15px;
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
}
.fantasy-calendar-full.view-content {
display: flex;
flex-flow: column;
width: 100%;
}
.fantasy-calendar-dropdown {
display: flex;
flex-flow: column;
width: 100%;
padding-bottom: 0.75rem;
}
.fantasy-calendar-view-event .modal-content {
max-width: 75vw;
}
.fantasy-no-calendar {
color: var(--text-muted);
display: flex;
justify-content: center;
text-align: center;
padding: 0.5rem;
}
.fantasy-title {
margin: 0;
}
.full-view .fantasy-title {
grid-column: span 3;
}
.fantasy-calendar-create-calendar .fantasy-calendar-date-fields {
padding-top: 0.75rem;
}
.fantasy-calendar-date-fields {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 0.5rem;
padding-bottom: 0.75rem;
}
.fantasy-calendar-date-fields .fantasy-calendar-date-field {
display: flex;
flex-flow: column nowrap;
}

File diff suppressed because one or more lines are too long

@ -5,7 +5,7 @@
"authorUrl": "https://grosinger.net",
"description": "Plain text accounting",
"isDesktopOnly": false,
"version": "0.1.0",
"version": "0.1.1",
"minAppVersion": "0.11.12",
"js": "main.js"
}

@ -93,7 +93,7 @@
},
"syntaxHighlight": false,
"copyButton": true,
"version": "6.7.1",
"version": "6.7.2",
"autoCollapse": false,
"defaultCollapseType": "open",
"syncLinks": true,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-admonition",
"name": "Admonition",
"version": "6.7.1",
"version": "6.7.2",
"minAppVersion": "0.11.0",
"description": "Admonition block-styled content for Obsidian.md",
"author": "Jeremy Valentine",

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
{"id":"obsidian-dialogue-plugin","name":"Dialogue","version":"1.0.1","minAppVersion":"0.12.0","description":"Create dialogues in Markdown.","author":"Jakub Holub","authorUrl":"https://github.com/holubj","isDesktopOnly":false}

@ -0,0 +1,58 @@
.dialogue-plugin-wrapper {
margin-bottom: 20px;
}
.dialogue-plugin-block-wrapper {
display: flex;
margin: 10px 0;
}
.dialogue-plugin-message-wrapper-left {
justify-content: start;
}
.dialogue-plugin-message-wrapper-right {
justify-content: flex-end;
}
.dialogue-plugin-message {
overflow: hidden;
max-width: 60%;
background-color: var(--background-secondary);
}
.dialogue-plugin-message-title {
padding: 5px 10px;
font-weight: bold;
background-color: rgba(0, 0, 0, 0.3);
}
.dialogue-plugin-message-content {
padding: 5px 10px;
}
.dialogue-plugin-delimiter-wrapper {
justify-content: center;
}
.dialogue-plugin-delimiter {
margin: 20px 0;
}
.dialogue-plugin-delimiter-dot {
width: 10px;
height: 10px;
margin: 0 3px;
display: inline-block;
border-radius: 50%;
background-color: var(--background-secondary);
}
.dialogue-plugin-comment-wrapper {
justify-content: center;
}
.dialogue-plugin-comment {
margin: 20px 0;
text-align: center;
}

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-dice-roller",
"name": "Dice Roller",
"version": "7.8.5",
"version": "7.8.6",
"minAppVersion": "0.12.15",
"description": "Inline dice rolling for Obsidian.md",
"author": "Jeremy Valentine",

@ -0,0 +1,13 @@
{
"code2emoji": true,
"suggester": true,
"iconpack": {
"fab": true,
"far": true,
"fas": true,
"rif": true,
"ril": true
},
"spaceAfterSC": false,
"isMigrated": false
}

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
{"id":"obsidian-icon-shortcodes","name":"Icon Shortcodes","version":"0.6.0","minAppVersion":"0.13.4","description":"Insert emoji and custom icons with shortcodes","author":"AidenLx","authorUrl":"https://github.com/aidenlx","isDesktopOnly":false}

@ -0,0 +1 @@
.mod-settings .isc-add-pack-input{margin-right:5px}.mod-settings .isc-settings-custom-icon .dragover{position:relative;background-color:var(--shade-10);border-radius:5px}.mod-settings .isc-settings-custom-icon .dragover:before{content:"Drop SVG icon(s) here";font-size:16px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:var(--text-normal)}.theme-dark .mod-settings .isc-settings-custom-icon .dragover{background-color:var(--shade-40)}.mod-settings .isc-settings-custom-icon .dragover>*{filter:blur(50px)}.mod-settings .isc-add-pack-input.invalid,.isc-icon-manager .icons .name textarea.invalid{color:var(--text-error);background:var(--background-primary-alt)}.isc-icon-manager .icons{margin-top:10px;display:grid;grid-auto-rows:auto;grid-auto-columns:-webkit-max-content;grid-auto-columns:max-content;grid-template-columns:repeat(auto-fill,minmax(90px,1fr));grid-column-gap:1rem;grid-row-gap:1rem;text-align:center}.isc-icon-manager .icons .item{outline:none}.isc-icon-manager .icons .item .icon{min-height:64px;display:flex;align-items:center;justify-content:center;background:white;border-radius:6px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;border:2px solid transparent;font-size:1.6em}.isc-icon-manager .icons .item .icon>img{width:1em;height:1em}.isc-icon-manager .icons .item .name{height:49px;display:flex;justify-content:center;align-content:center;flex-direction:column}.isc-icon-manager .icons .item .name span{font-size:.7em;overflow:hidden;word-wrap:break-word}.isc-icon-manager .icons .item .name textarea{margin-top:5px;width:100%;padding:0 .5em;font-size:14px}.isc-icon-manager .icons .item .name textarea:disabled{padding:0;font-size:16px;border:hidden;text-align:center;background:transparent}.isc-icon-manager .icons .item .buttons button{padding:4px 6px;margin:0 1px}img.isc-icon{display:inline;height:1em;width:1em;vertical-align:text-top}.markdown-preview-view img.isc-icon,.markdown-source-view img.isc-icon{height:var(--editor-font-size);width:var(--editor-font-size)}.theme-dark img.isc-icon.isc-fab,.theme-dark img.isc-icon.isc-far,.theme-dark img.isc-icon.isc-fas,.theme-dark img.isc-icon.isc-rif,.theme-dark img.isc-icon.isc-ril{filter:invert(1)}.isc.suggestion-container .suggestion-item{display:flex;place-content:space-between}.isc.suggestion-container .suggestion-item .shortcode{margin-right:8px}.isc.suggestion-container .suggestion-item img.isc-icon{display:inline;height:var(--font-normal);width:var(--font-normal)}

@ -1,8 +1,18 @@
{
"pluginList": [
"holubj/obsidian-dialogue-plugin",
"deathau/cooklang-obsidian",
"aidenlx/obsidian-icon-shortcodes",
"James-Fallon/obsidian-lineup-builder",
"kinabalu/obsidian-crypto-lookup",
"joethei/obsidian-rss"
],
"updateAtStartup": false
"themesList": [],
"updateAtStartup": false,
"updateThemesAtStartup": false,
"ribbonIconEnabled": true,
"loggingEnabled": false,
"loggingPath": "BRAT-log",
"loggingVerboseEnabled": false,
"debuggingMode": true
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -9,7 +9,7 @@
"state": {
"type": "markdown",
"state": {
"file": "03.01 Reading list/@Reading master.md",
"file": "01.02 Home/MRCK - lil dialogue.md",
"mode": "preview"
}
}
@ -35,7 +35,7 @@
"state": {
"type": "search",
"state": {
"query": "Comf",
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
@ -68,7 +68,7 @@
"state": {
"type": "backlink",
"state": {
"file": "03.01 Reading list/@Reading master.md",
"file": "01.02 Home/MRCK - lil dialogue.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -88,35 +88,43 @@
}
},
{
"id": "482fa90c7d3f5e19",
"id": "23ee6daffe147aea",
"type": "leaf",
"state": {
"type": "DICE_ROLLER_VIEW",
"type": "RSS_FEED",
"state": {}
}
},
{
"id": "23ee6daffe147aea",
"id": "33ee039cda42cc0d",
"type": "leaf",
"state": {
"type": "RSS_FEED",
"type": "FANTASY_CALENDAR",
"state": {}
}
},
{
"id": "bda35bb1b7e69269",
"type": "leaf",
"state": {
"type": "DICE_ROLLER_VIEW",
"state": {}
}
}
],
"currentTab": 3
"currentTab": 4
},
"active": "e8d1a34590cd1804",
"lastOpenFiles": [
"01.02 Home/MRCK - lil dialogue.md",
"00.01 Admin/Test sheet.md",
"New cooklang recipe.cook",
"00.01 Admin/Recipe test.md",
"01.02 Home/MRCK.md",
"03.01 Reading list/@Reading master.md",
"03.01 Reading list/L'ombre du vent.md",
"00.02 Inbox/By the Sea.md",
"05.01 Computer setup/Storage and Syncing.md",
"01.03 Family/@Family organisation.md",
"02.01 London/Gloria.md",
"02.01 London/Circolo Popolare.md",
"02.01 London/@Restaurants London.md",
"02.02 Paris/@Restaurants Paris.md",
"02.03 Zürich/@Restaurants Zürich.md"
"05.02 Networks/Configuring Docker.md",
"03.03 Food & Wine/!!Wine.md",
"03.03 Food & Wine/@@Recipes.md",
"03.03 Food & Wine/@Main dishes.md"
]
}

@ -418,7 +418,7 @@ class globalFunc {
TempData = [p.file.link, this.GetPoint(p, DataT, "type"), this.GetPoint(p, DataT, "vintage"), this.toEmoji(this.GetPoint(p, DataT, "country")), this.GetPoint(p, DataT, "subregion"), this.GetPoint(p, DataT, "appellation")]
break;
case 'extended':
TempData = [p.file.link, this.GetPoint(p, DataT, "type"), this.GetPoint(p, DataT, "vintage"), this.toEmoji(this.GetPoint(p, DataT, "country")), this.GetPoint(p, DataT, "region"), this.GetPoint(p, DataT, "subregion"), this.GetPoint(p, DataT, "appellation"), this.GetPoint(p, DataT, "vineyard"), this.GetPoint(p, DataT, "varietal"), this.GetPoint(p, "main", "tag")]
TempData = [p.file.link, this.GetPoint(p, DataT, "type"), this.GetPoint(p, DataT, "vintage"), this.toEmoji(this.GetPoint(p, DataT, "country")), this.GetPoint(p, DataT, "region"), this.GetPoint(p, DataT, "subregion"), this.GetPoint(p, DataT, "appellation"), this.GetPoint(p, DataT, "vineyard"), this.GetPoint(p, DataT, "varietal"), this.toEmoji(this.GetPoint(p, "main", "tag"))]
break;
}
@ -428,7 +428,7 @@ class globalFunc {
switch(TableT) {
default:
TempData = [p.file.link, this.GetPoint(p, DataT, "type"), this.GetPoint(p, DataT, "strength"), this.toEmoji(this.GetPoint(p, DataT, "country")), this.GetPoint(p, DataT, "roast"), this.GetPoint(p, "main", "tag"), this.GetPoint(p, DataT, "brand")]
TempData = [p.file.link, this.GetPoint(p, DataT, "type"), this.GetPoint(p, DataT, "strength"), this.toEmoji(this.GetPoint(p, DataT, "country")), this.GetPoint(p, DataT, "roast"), this.toEmoji(this.GetPoint(p, "main", "tag")), this.GetPoint(p, DataT, "brand")]
break;
}
@ -550,6 +550,45 @@ class globalFunc {
case 'Fish':
tempresult = "🐠"
break;
case 'Apricot':
case 'Peach':
tempresult = "🍑 " + label
break;
case 'Berries':
tempresult = "🫐 " + label
break;
case 'Caramel':
tempresult = "🍮 " + label
break;
case 'Cocoa':
case 'Chocolate':
tempresult = "🍫 " + label
break;
case 'Fruity':
tempresult = "🥝 " + label
break;
case 'DriedFruit':
tempresult = "🍇 " + label
break;
case 'Nutty':
case 'Hazelnut':
tempresult = "🌰 " + label
break;
case 'SugarCane':
tempresult = "🍬 " + label
break;
case 'Crisp':
tempresult = "❄️ " + label
break;
case 'Mango':
tempresult = "🥭 " + label
break;
case 'Oak':
tempresult = "🪵 " + label
break;
case 'Powerful':
tempresult = "🔋 " + label
break;
default:
tempresult = label
}

@ -0,0 +1,14 @@
```dialogue
left: Boubinou
right: Mel-mo
titleMode: all
messageMaxWidth: 40%
< ohlala, i am so sick in my tummy
# Boubinou looks full of beans
< i need to go home!
delimiter
> I can smell a lil' rat! Somebody does not seem to want to finish her French class
< heho
< I am sooo sick! It happens everytime i forget to take my pill.
< Pass me the biscuits!!
```

@ -5,8 +5,8 @@ Date: 2021-10-31
DocType: "Coffee"
Hierarchy: "NonRoot"
TimeStamp:
location:
CollapseMetaTable: Yes
location:
Source:
cssclass: recipeTable
Coffee:

@ -59,18 +59,19 @@ style: number
Drive name | Available space | Current usage
-----------------|:------------------:|:---------------:
_**Computer**_ | _121G_ | _59.7G_
_**Computer - MacintoshHD**_ | | _59.4G_
_**Computer - Folder Vault**_ | | _283.8M_
_**Toshiba Drive**_ | _3T_ | _248.6G_
_**TD - External Drive**_ | _2.25T_ | _145.6G_
_**Computer**_ | _252G_ | _63.6G_
_**Computer - MacintoshHD**_ | | _63.3G_
_**Computer - Folder Vault**_ | | _333.6M_
_**File Server**_ | _121G_ | _21.1G_
_**Toshiba Drive**_ | _3T_ | _436G_
_**TD - External Drive**_ | _2.25T_ | _333G_
_**TD - Backup**_ | _250G_ | _46.5G_
_**TD - Bootable Disk**_ | _500G_ | _56.5G_
_**Phone**_ | _128G_ | _44.6G_
_**Phone**_ | _128G_ | _46.6G_
<mark class="green">Hard storage</mark> | Available space | Current usage
-----------------|:------------------:|:---------------:
_**Total storage**_ | _3.25T_ | _352.9G_
_**Total storage**_ | _3.5T_ | _567.3G_
^CurrentHardStorage
&emsp;

Loading…
Cancel
Save