Update from obsidian - thinkpad
Affected files: .obsidian/community-plugins.json .obsidian/core-plugins-migration.json .obsidian/core-plugins.json .obsidian/plugins/calendar/data.json .obsidian/plugins/calendar/main.js .obsidian/plugins/calendar/manifest.json .obsidian/plugins/obsidian-omnivore/data.json .obsidian/plugins/periodic-notes/data.json .obsidian/plugins/periodic-notes/main.js .obsidian/plugins/periodic-notes/manifest.json .obsidian/plugins/periodic-notes/styles.css .obsidian/plugins/update-time-on-edit/data.json 04. Periodic/01. Daily/2024-02-17.md 04. Periodic/03. Monthly/2024-02.md 04. Periodic/05. Yearly/2024.md templates/monthly.md templates/quaterly.md templates/weekly.md templates/yearly.md
This commit is contained in:
parent
76d0019782
commit
296bd4b3f6
19 changed files with 10117 additions and 6 deletions
4
.obsidian/community-plugins.json
vendored
4
.obsidian/community-plugins.json
vendored
|
|
@ -12,5 +12,7 @@
|
|||
"obsidian-mind-map",
|
||||
"obsidian-omnivore",
|
||||
"templater-obsidian",
|
||||
"update-time-on-edit"
|
||||
"update-time-on-edit",
|
||||
"periodic-notes",
|
||||
"calendar"
|
||||
]
|
||||
2
.obsidian/core-plugins-migration.json
vendored
2
.obsidian/core-plugins-migration.json
vendored
|
|
@ -8,7 +8,7 @@
|
|||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"daily-notes": false,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
|
|
|
|||
1
.obsidian/core-plugins.json
vendored
1
.obsidian/core-plugins.json
vendored
|
|
@ -8,7 +8,6 @@
|
|||
"tag-pane",
|
||||
"properties",
|
||||
"page-preview",
|
||||
"daily-notes",
|
||||
"templates",
|
||||
"note-composer",
|
||||
"command-palette",
|
||||
|
|
|
|||
10
.obsidian/plugins/calendar/data.json
vendored
Normal file
10
.obsidian/plugins/calendar/data.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"shouldConfirmBeforeCreate": true,
|
||||
"weekStart": "monday",
|
||||
"wordsPerDot": 250,
|
||||
"showWeeklyNote": true,
|
||||
"weeklyNoteFormat": "",
|
||||
"weeklyNoteTemplate": "",
|
||||
"weeklyNoteFolder": "",
|
||||
"localeOverride": "es-mx"
|
||||
}
|
||||
4457
.obsidian/plugins/calendar/main.js
vendored
Normal file
4457
.obsidian/plugins/calendar/main.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
10
.obsidian/plugins/calendar/manifest.json
vendored
Normal file
10
.obsidian/plugins/calendar/manifest.json
vendored
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"
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
"dateSavedFormat": "yyyy-MM-dd HH:mm:ss",
|
||||
"apiKey": "ec3bba50-4770-471b-99b1-9953ca523d8c",
|
||||
"filter": "ADVANCED",
|
||||
"syncAt": "2024-02-17T16:18:30",
|
||||
"syncAt": "2024-02-17T17:22:18",
|
||||
"customQuery": "in:archive has:highlights",
|
||||
"template": "# {{{title}}}\n\n{{# note }}\n## Notes\n\n{{{ note }}}\n{{/ note }}\n{{#highlights.length}}\n## Highlights\n\n{{#highlights}}\n{{{text}}} \n{{#note}}\n\n> [!note]\n> {{{note}}}\n{{/note}}\n\n[source]({{{highlightUrl}}}) {{#labels}} #{{name}} {{/labels}}\n\n---\n\n{{/highlights}}\n{{/highlights.length}}\n## Original\n\n{{{ content }}}",
|
||||
"highlightOrder": "LOCATION",
|
||||
|
|
|
|||
34
.obsidian/plugins/periodic-notes/data.json
vendored
Normal file
34
.obsidian/plugins/periodic-notes/data.json
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"showGettingStartedBanner": false,
|
||||
"hasMigratedDailyNoteSettings": true,
|
||||
"hasMigratedWeeklyNoteSettings": false,
|
||||
"daily": {
|
||||
"folder": "04. Periodic/01. Daily",
|
||||
"template": "templates/daily.md",
|
||||
"enabled": true
|
||||
},
|
||||
"weekly": {
|
||||
"format": "",
|
||||
"template": "templates/weekly.md",
|
||||
"folder": "04. Periodic/02. Weekly",
|
||||
"enabled": true
|
||||
},
|
||||
"monthly": {
|
||||
"format": "",
|
||||
"template": "templates/monthly.md",
|
||||
"folder": "04. Periodic/03. Monthly",
|
||||
"enabled": true
|
||||
},
|
||||
"quarterly": {
|
||||
"format": "",
|
||||
"template": "templates/quaterly.md",
|
||||
"folder": "04. Periodic/04. Quaterly",
|
||||
"enabled": true
|
||||
},
|
||||
"yearly": {
|
||||
"format": "",
|
||||
"template": "templates/yearly.md",
|
||||
"folder": "04. Periodic/05. Yearly",
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
5559
.obsidian/plugins/periodic-notes/main.js
vendored
Normal file
5559
.obsidian/plugins/periodic-notes/main.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
10
.obsidian/plugins/periodic-notes/manifest.json
vendored
Normal file
10
.obsidian/plugins/periodic-notes/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "periodic-notes",
|
||||
"name": "Periodic Notes",
|
||||
"description": "Create/manage your daily, weekly, and monthly notes",
|
||||
"version": "0.0.17",
|
||||
"author": "Liam Cain",
|
||||
"authorUrl": "https://github.com/liamcain/",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "0.10.11"
|
||||
}
|
||||
30
.obsidian/plugins/periodic-notes/styles.css
vendored
Normal file
30
.obsidian/plugins/periodic-notes/styles.css
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
.periodic-modal {
|
||||
min-width: 40vw;
|
||||
}
|
||||
|
||||
.settings-banner {
|
||||
background-color: var(--background-primary-alt);
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
margin-bottom: 1em;
|
||||
margin-top: 1em;
|
||||
padding: 1.5em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.settings-banner h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.settings-banner h4 {
|
||||
margin-bottom: 0.25em;
|
||||
}
|
||||
|
||||
.has-error {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
input.has-error {
|
||||
color: var(--text-error);
|
||||
border-color: var(--text-error);
|
||||
}
|
||||
|
|
@ -27,7 +27,6 @@
|
|||
"01. Projects/Escape Latam/Canada.md": "16c9cc355d006bc2c81f12a0f2f66e63edd76125a8dc3caad3b2153dc4b40724",
|
||||
"02. Areas/Dotfiles/dotfiles tasks.md": "d974258823f56e4dcec663d8f76e7d0991ca21f3f8e42703cfe64323f7ecffcf",
|
||||
"01. Projects/Renuncia/Renuncia.md": "9649ae9395aa92fb2fd25d4979c05705b7eb305572cb8ef4a8bb60bb19c1e3af",
|
||||
"04. DEFINIR NOMBRE/2024.md": "242f45e767070658f4bddf1ec3cd0d55b87a1900f4c1b84d225aa83d361f14e4",
|
||||
"01. Projects/Página Personal/board.md": "338da8063209e4cca9e5cded5f9553f7380e86574dcc7626d2fdc1ef61bc8bbc",
|
||||
"02. Areas/Food/recipes.md": "9b39f250ee01ee21b93d9fecf53ade9da2888b4e5c86faf3d72eaf66d791d32f",
|
||||
"notes/asd.md": "cff48859c02304b310c203c01849a3518954b5c59bfca785aef1d73d56651824",
|
||||
|
|
@ -41,6 +40,7 @@
|
|||
"01. Projects/Playa/Games.md": "a8d9b88b197c3b2f72d18d8cef6b9ec64cd213d1d508d0a1f4e3f4bdf41114d9",
|
||||
"01. Projects/Playa/Movies-Series.md": "4f4141fbfb2e4a5e854ef85a67e1a225060597ddc3dcd96e6824e04916f6b73d",
|
||||
"03. Resources/Notetaking/Reuse previous work.md": "372521662bdee8d712740f67480c7d03f448806f19736f2ac69b0fae4e20baa6",
|
||||
"02. Areas/Exersice/Descansos Activos.md": "f17ebde87bedd417feb4937e9e177dbe43752c3c6748d5d2778127fdc7d0abfe"
|
||||
"02. Areas/Exersice/Descansos Activos.md": "f17ebde87bedd417feb4937e9e177dbe43752c3c6748d5d2778127fdc7d0abfe",
|
||||
"04. Periodic/05. Yearly/2024.md": "242f45e767070658f4bddf1ec3cd0d55b87a1900f4c1b84d225aa83d361f14e4"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue