sunday morning 5/3/23

main
iOS 2 years ago
parent 6ff8ff0b9e
commit e6adde8c7d

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "multi-column-markdown", "id": "multi-column-markdown",
"name": "Multi-Column Markdown", "name": "Multi-Column Markdown",
"version": "0.7.6", "version": "0.7.7",
"minAppVersion": "1.0.3", "minAppVersion": "1.0.3",
"description": "This plugin adds functionality to create markdown documents with multiple columns of content viewable within Obsidian's preview mode", "description": "This plugin adds functionality to create markdown documents with multiple columns of content viewable within Obsidian's preview mode",
"author": "Cameron Robinson", "author": "Cameron Robinson",

@ -86,6 +86,10 @@
text-align: center; text-align: center;
} }
.mcm-error-message-color {
color: var(--text-error);
}
.mcm-column-root-container { .mcm-column-root-container {
margin: 1.5625em 0; margin: 1.5625em 0;
} }
@ -164,3 +168,8 @@
.mcm-content-alignment-right { .mcm-content-alignment-right {
text-align: right; text-align: right;
} }
.mcm-span-content-alignment-center {
display: block;
text-align: center;
}

@ -8786,6 +8786,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "podnotes-show-leaf", id: "podnotes-show-leaf",
name: "Show PodNotes", name: "Show PodNotes",
icon: "podcast",
checkCallback(checking) { checkCallback(checking) {
if (checking) { if (checking) {
return !app.workspace.getLeavesOfType(VIEW_TYPE).length; return !app.workspace.getLeavesOfType(VIEW_TYPE).length;
@ -8798,6 +8799,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "start-playing", id: "start-playing",
name: "Play Podcast", name: "Play Podcast",
icon: "play-circle",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return !this.api.isPlaying && !!this.api.podcast; return !this.api.isPlaying && !!this.api.podcast;
@ -8808,6 +8810,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "stop-playing", id: "stop-playing",
name: "Stop Podcast", name: "Stop Podcast",
icon: "stop-circle",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return this.api.isPlaying && !!this.api.podcast; return this.api.isPlaying && !!this.api.podcast;
@ -8818,6 +8821,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "skip-backward", id: "skip-backward",
name: "Skip Backward", name: "Skip Backward",
icon: "skip-back",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return this.api.isPlaying && !!this.api.podcast; return this.api.isPlaying && !!this.api.podcast;
@ -8828,6 +8832,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "skip-forward", id: "skip-forward",
name: "Skip Forward", name: "Skip Forward",
icon: "skip-forward",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return this.api.isPlaying && !!this.api.podcast; return this.api.isPlaying && !!this.api.podcast;
@ -8838,6 +8843,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "download-playing-episode", id: "download-playing-episode",
name: "Download Playing Episode", name: "Download Playing Episode",
icon: "download",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return !!this.api.podcast; return !!this.api.podcast;
@ -8857,6 +8863,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "capture-timestamp", id: "capture-timestamp",
name: "Capture Timestamp", name: "Capture Timestamp",
icon: "clock",
editorCheckCallback: (checking, editor, view) => { editorCheckCallback: (checking, editor, view) => {
if (checking) { if (checking) {
return !!this.api.podcast && !!this.settings.timestamp.template; return !!this.api.podcast && !!this.settings.timestamp.template;
@ -8870,6 +8877,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "create-podcast-note", id: "create-podcast-note",
name: "Create Podcast Note", name: "Create Podcast Note",
icon: "file-plus",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return !!this.api.podcast && !!this.settings.note.path && !!this.settings.note.template; return !!this.api.podcast && !!this.settings.note.path && !!this.settings.note.template;
@ -8880,6 +8888,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "get-share-link-episode", id: "get-share-link-episode",
name: "Copy universal episode link to clipboard", name: "Copy universal episode link to clipboard",
icon: "share",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return !!this.api.podcast; return !!this.api.podcast;
@ -8890,6 +8899,7 @@ var PodNotes = class extends import_obsidian22.Plugin {
this.addCommand({ this.addCommand({
id: "podnotes-toggle-playback", id: "podnotes-toggle-playback",
name: "Toggle playback", name: "Toggle playback",
icon: "play",
checkCallback: (checking) => { checkCallback: (checking) => {
if (checking) { if (checking) {
return !!this.api.podcast; return !!this.api.podcast;

@ -1,7 +1,7 @@
{ {
"id": "podnotes", "id": "podnotes",
"name": "PodNotes", "name": "PodNotes",
"version": "2.10.6", "version": "2.10.7",
"minAppVersion": "0.15.9", "minAppVersion": "0.15.9",
"description": "Helps you write notes on podcasts.", "description": "Helps you write notes on podcasts.",
"author": "Christian B. B. Houmann", "author": "Christian B. B. Houmann",

@ -8,6 +8,10 @@
"basename": "2023-03-04", "basename": "2023-03-04",
"path": "00.01 Admin/Calendars/2023-03-04.md" "path": "00.01 Admin/Calendars/2023-03-04.md"
}, },
{
"basename": "2023-03-05",
"path": "00.01 Admin/Calendars/2023-03-05.md"
},
{ {
"basename": "Server Tools", "basename": "Server Tools",
"path": "05.02 Networks/Server Tools.md" "path": "05.02 Networks/Server Tools.md"

@ -246,6 +246,7 @@
"active": "017a2190e40afd0b", "active": "017a2190e40afd0b",
"lastOpenFiles": [ "lastOpenFiles": [
"00.01 Admin/Calendars/2023-03-04.md", "00.01 Admin/Calendars/2023-03-04.md",
"00.01 Admin/Calendars/2023-03-05.md",
"01.02 Home/@Main Dashboard.md", "01.02 Home/@Main Dashboard.md",
"05.02 Networks/Server Tools.md", "05.02 Networks/Server Tools.md",
"00.01 Admin/Calendars/Events/2023-03-04 PSG - FC Nantes (4-2).md", "00.01 Admin/Calendars/Events/2023-03-04 PSG - FC Nantes (4-2).md",
@ -269,7 +270,6 @@
"05.02 Networks/Configuring UFW.md", "05.02 Networks/Configuring UFW.md",
"05.02 Networks/Selfhosting.md", "05.02 Networks/Selfhosting.md",
"02.02 Paris/@Restaurants Paris.md", "02.02 Paris/@Restaurants Paris.md",
"02.02 Paris/Alluma.md", "02.02 Paris/Alluma.md"
"00.01 Admin/Calendars/2023-03-01.md"
] ]
} }

@ -18,7 +18,7 @@ EarHeadBar: 35
BackHeadBar: 20 BackHeadBar: 20
Water: 3.43 Water: 3.43
Coffee: 0 Coffee: 0
Steps: Steps: 5690
Weight: Weight:
Ski: Ski:
IceSkating: IceSkating:

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-03-05
Date: 2023-03-05
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 90
Gratefulness: 90
Stress: 27.5
FrontHeadBar: 5
EarHeadBar: 35
BackHeadBar: 20
Water:
Coffee:
Steps:
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-03-04|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-03-06|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-03-05Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-03-05NSave
&emsp;
# 2023-03-05
&emsp;
> [!summary]+
> Daily note for 2023-03-05
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-03-05
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-03-05]]
```
&emsp;
&emsp;

@ -1,8 +0,0 @@
---
title: 🩺 Médecin
allDay: false
startTime: 12:15
endTime: 12:45
date: 2023-03-09
completed: null
---
Loading…
Cancel
Save