vault backup: 2026-02-11 11:08:46
This commit is contained in:
Vendored
-1
@@ -8,7 +8,6 @@
|
||||
"dynamic-outline",
|
||||
"automatic-table-of-contents",
|
||||
"obsidian-weread-plugin",
|
||||
"daily-note-calendar",
|
||||
"components",
|
||||
"obsidian-git",
|
||||
"notebook-navigator",
|
||||
|
||||
-41
@@ -1,41 +0,0 @@
|
||||
{
|
||||
"generalSettings": {
|
||||
"displayNotesCreatedOnDate": false,
|
||||
"displayNoteIndicator": true,
|
||||
"useModifierKeyToCreateNote": false,
|
||||
"firstDayOfWeek": 1,
|
||||
"weekNumberStandard": 0
|
||||
},
|
||||
"notesSettings": {
|
||||
"displayDateTemplate": "HH:mm",
|
||||
"useCreatedOnDateFromProperties": false,
|
||||
"createdOnDatePropertyName": "created_on",
|
||||
"createdOnPropertyFormat": "yyyy/MM/dd HH:mm",
|
||||
"sortNotes": "ascending"
|
||||
},
|
||||
"dailyNotes": {
|
||||
"nameTemplate": "yyyy-MM-dd",
|
||||
"folder": "FleetingNotes/日记",
|
||||
"templateFile": "Templates/Daily note"
|
||||
},
|
||||
"weeklyNotes": {
|
||||
"nameTemplate": "yyyy-ww",
|
||||
"folder": "Weekly notes",
|
||||
"templateFile": "Templates/Weekly note"
|
||||
},
|
||||
"monthlyNotes": {
|
||||
"nameTemplate": "yyyy-MM",
|
||||
"folder": "Monthly notes",
|
||||
"templateFile": "Templates/Monthly note"
|
||||
},
|
||||
"quarterlyNotes": {
|
||||
"nameTemplate": "yyyy-qqq",
|
||||
"folder": "Quarterly notes",
|
||||
"templateFile": "Templates/Quarterly note"
|
||||
},
|
||||
"yearlyNotes": {
|
||||
"nameTemplate": "yyyy",
|
||||
"folder": "Yearly notes",
|
||||
"templateFile": "Templates/Yearly note"
|
||||
}
|
||||
}
|
||||
-90
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "daily-note-calendar",
|
||||
"name": "Daily notes calendar",
|
||||
"version": "2.6.1",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Navigate your Obsidian Vault using a calendar view.",
|
||||
"author": "bartkessels",
|
||||
"authorUrl": "https://bartkessels.net",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
-179
@@ -1,179 +0,0 @@
|
||||
.dnc table {
|
||||
table-layout: fixed;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dnc th {
|
||||
opacity: 50%;
|
||||
font-weight: var(--font-medium);
|
||||
font-size: var(--font-ui-small)
|
||||
}
|
||||
|
||||
.dnc th.quarter {
|
||||
font-weight: var(--font-semibold);
|
||||
}
|
||||
|
||||
.dnc td {
|
||||
opacity: 90%;
|
||||
}
|
||||
|
||||
.dnc th, .dnc td {
|
||||
vertical-align: text-top;
|
||||
text-align: center;
|
||||
width: 0.45em;
|
||||
height: 0.45em;
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
||||
.dnc td:hover:not(:empty), .dnc th:hover:not(:empty) {
|
||||
background-color: var(--background-modifier-active-hover);
|
||||
border-radius: 10%;
|
||||
}
|
||||
|
||||
.dnc .weekNumber {
|
||||
text-align: center;
|
||||
font-weight: var(----font-light);
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.dnc #today {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.dnc .other-month {
|
||||
opacity: 45%;
|
||||
}
|
||||
|
||||
.dnc .has-note:after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 30%;
|
||||
opacity: 75%;
|
||||
margin: 0 auto;
|
||||
border-bottom: 0.1em solid var(--text-faint);
|
||||
}
|
||||
|
||||
.dnc .selected-day:after {
|
||||
content: "";
|
||||
display: block;
|
||||
opacity: 100%;
|
||||
width: 30%;
|
||||
margin: 0 auto;
|
||||
border-bottom: 0.15em solid var(--text-accent);
|
||||
}
|
||||
|
||||
.dnc .header {
|
||||
opacity: 75%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.dnc .header h1, .dnc .header .buttons {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dnc .header h1 {
|
||||
font-weight: var(--font-light);
|
||||
font-size: var(--font-ui-medium);
|
||||
margin: auto 0.5em auto auto;
|
||||
}
|
||||
|
||||
.dnc .header h1.month {
|
||||
min-width: 3em;
|
||||
}
|
||||
|
||||
.dnc .header h1.year {
|
||||
min-width: 1.5em;
|
||||
}
|
||||
|
||||
.dnc .header .buttons {
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.dnc .header .buttons > *:hover {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.dnc ul {
|
||||
list-style-type: none;
|
||||
padding: 0 0 0 0.2em;
|
||||
}
|
||||
|
||||
.dnc ul li {
|
||||
padding-bottom: 0.4em;
|
||||
}
|
||||
|
||||
.dnc ul li:after {
|
||||
content: "";
|
||||
display: block;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
padding-top: 0.4em;
|
||||
}
|
||||
|
||||
.dnc ul li .note-title {
|
||||
font-weight: var(--font-semibold);
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
.dnc ul li .note-date {
|
||||
font-weight: var(--font-light);
|
||||
font-size: var(--font-ui-small);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.dnc ul li .note-path {
|
||||
font-weight: var(--font-light);
|
||||
font-size: var(--font-ui-small);
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.dnc-setting-example {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.dnc-skeleton {
|
||||
background: linear-gradient(90deg, #ddda 40%, #efefefaa, #ddda 60%) right / 300% 100%;
|
||||
animation: skeleton-loading 1.5s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes skeleton-loading {
|
||||
to {
|
||||
background-position: left;
|
||||
}
|
||||
}
|
||||
|
||||
.dnc-skeleton-text {
|
||||
height: 100%;
|
||||
margin-bottom: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
.dnc-skeleton-text-year {
|
||||
min-width: 3em;
|
||||
}
|
||||
|
||||
.dnc-skeleton-text-month {
|
||||
min-width: 5em;
|
||||
}
|
||||
|
||||
.dnc-skeleton-button {
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
min-width: 1.5em;
|
||||
margin-left: 0.2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
.dnc-skeleton-week {
|
||||
height: 1.5em;
|
||||
}
|
||||
|
||||
.dnc-skeleton-calendar {
|
||||
height: 15em;
|
||||
min-width: 100%;
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5rem;
|
||||
margin-top: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
+4
-4
@@ -69,13 +69,13 @@
|
||||
"showRecentNotes": true,
|
||||
"recentNotesCount": 5,
|
||||
"calendarPlacement": "left-sidebar",
|
||||
"calendarLocale": "system-default",
|
||||
"calendarLocale": "zh-cn",
|
||||
"calendarWeekendDays": "sat-sun",
|
||||
"calendarWeeksToShow": 1,
|
||||
"calendarWeeksToShow": 4,
|
||||
"calendarHighlightToday": true,
|
||||
"calendarShowFeatureImage": true,
|
||||
"calendarShowWeekNumber": false,
|
||||
"calendarShowQuarter": false,
|
||||
"calendarShowWeekNumber": true,
|
||||
"calendarShowQuarter": true,
|
||||
"calendarConfirmBeforeCreate": true,
|
||||
"calendarIntegrationMode": "notebook-navigator",
|
||||
"calendarCustomFilePattern": "YYYY/YYYYMMDD",
|
||||
|
||||
Vendored
+18
-38
@@ -4,17 +4,21 @@
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "e07986cc6206a22d",
|
||||
"id": "f2956f060ca5ae67",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "16d64d163d7e4799",
|
||||
"id": "6eb8280b8287207d",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {},
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "settings/archived/JournalHistory/memo导出.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "New tab"
|
||||
"title": "memo导出"
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -156,22 +160,14 @@
|
||||
"title": "Outline of 老师教学笔记(25-07-08)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "bd0b9416eb282324",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "daily-note-calendar",
|
||||
"state": {},
|
||||
"icon": "calendar",
|
||||
"title": "Daily note calendar"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "a8595e8a74b689e8",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "footnotes",
|
||||
"state": {},
|
||||
"state": {
|
||||
"file": "settings/archived/JournalHistory/memo导出.md"
|
||||
},
|
||||
"icon": "lucide-file-signature",
|
||||
"title": "Footnotes"
|
||||
}
|
||||
@@ -191,36 +187,20 @@
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 5
|
||||
},
|
||||
{
|
||||
"id": "e0de287973239484",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "82480ac2fad01c41",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "notebook-navigator-calendar",
|
||||
"state": {},
|
||||
"icon": "notebook-navigator",
|
||||
"title": "Calendar"
|
||||
}
|
||||
}
|
||||
]
|
||||
"currentTab": 4
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 281.5
|
||||
"width": 261.5
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"bases:Create new base": false,
|
||||
"switcher:Open quick switcher": false,
|
||||
"graph:Open graph view": false,
|
||||
"templates:Insert template": false,
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false,
|
||||
"publish:OPP Profile": false,
|
||||
"obsidian-excalidraw-plugin:New drawing": false,
|
||||
@@ -230,8 +210,10 @@
|
||||
"notebook-navigator:Notebook Navigator": false
|
||||
}
|
||||
},
|
||||
"active": "562fd2951c64a771",
|
||||
"active": "6eb8280b8287207d",
|
||||
"lastOpenFiles": [
|
||||
"FleetingNotes/其他项目/量化工具/缠论研习社/Drawing 2025-12-27 11.32.14.excalidraw.md",
|
||||
"FleetingNotes/日记/2026-02-11.md",
|
||||
"settings/banner_img/hillacloud.jpg",
|
||||
"FleetingNotes/任务中心.md",
|
||||
"FleetingNotes/智慧校园/智慧校园-网格安全管理系统.canvas",
|
||||
@@ -267,7 +249,6 @@
|
||||
"Invest/account_trace/balance_trace_20250121.md",
|
||||
"Invest/account_trace/250223.md",
|
||||
"Invest/account_trace/250224.md",
|
||||
"技术研究/Kafka King.md",
|
||||
"FleetingNotes/其他项目/量化工具/缠论研习社/我和小明.pdf",
|
||||
"Pasted image 20260112153828.png",
|
||||
"Pasted image 20260112153906.png",
|
||||
@@ -281,7 +262,6 @@
|
||||
"Clippings",
|
||||
"settings/archived/attachments/Pasted image 20220610010324.png",
|
||||
"settings/archived/attachments/Pasted image 20220609234642.png",
|
||||
"settings/archived/attachments/Pasted image 20220609231412.png",
|
||||
"settings/components/公司账户管理表.components",
|
||||
"settings/components/tasks-trace.components",
|
||||
"settings/components/20250123101427.components",
|
||||
|
||||
Reference in New Issue
Block a user