📝 Update and organize project documentation and assets

This commit is contained in:
2026-01-26 22:46:14 +00:00
parent 4194dcfeff
commit b20e2185b2
1433 changed files with 64484 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"attachmentFolderPath": "/attachments",
"alwaysUpdateLinks": true,
"newFileLocation": "current",
"promptDelete": false,
"readableLineLength": false
}

View File

@@ -0,0 +1,3 @@
{
"cssTheme": "Things"
}

View File

@@ -0,0 +1,4 @@
[
"obsidian-importer",
"obsidian-advanced-uri"
]

View File

@@ -0,0 +1,33 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"properties": false,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false,
"webviewer": false,
"footnotes": false,
"bases": true
}

View File

@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-advanced-uri",
"name": "Advanced URI",
"description": "Advanced modes for Obsidian URI",
"isDesktopOnly": false,
"js": "main.js",
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "1.46.1",
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-importer",
"name": "Importer",
"version": "1.8.2",
"minAppVersion": "0.15.0",
"description": "Import data from Notion, Evernote, Apple Notes, Microsoft OneNote, Google Keep, Bear, Roam, Textbundle, CSV, and HTML files.",
"author": "Obsidian",
"authorUrl": "https://obsidian.md",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,173 @@
.modal.mod-importer {
max-height: var(--modal-height);
padding: var(--size-4-4) 0 0 0;
position: relative;
overflow: hidden;
}
.modal.mod-importer .modal-title {
padding: 0 var(--size-4-4);
}
.modal.mod-importer .modal-content {
overflow: auto;
padding: var(--size-4-4);
margin-bottom: calc(var(--input-height) + var(--size-4-8));
border-top: var(--border-width) solid var(--background-modifier-border);
}
.modal.mod-importer .modal-button-container {
margin: 0 0 0 calc(var(--size-4-4) * -1);
padding: var(--size-4-4);
gap: var(--size-4-2);
position: absolute;
bottom: 0;
background-color: var(--background-primary);
border-top: var(--border-width) solid var(--background-modifier-border);
width: 100%;
}
.importer-progress-bar {
width: 100%;
height: 8px;
background-color: var(--background-secondary);
overflow: hidden;
box-shadow: inset 0px 0px 0px 1px var(--background-modifier-border);
border-radius: var(--radius-s);
}
.importer-progress-bar-inner {
width: 0;
height: 100%;
background-color: var(--interactive-accent);
}
.importer-status {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: var(--size-4-2) 0;
}
.importer-stats-container {
display: flex;
justify-content: space-evenly;
margin-top: var(--size-4-5);
margin-bottom: var(--size-4-5);
}
.importer-stat {
text-align: center;
}
.importer-stat-count {
font-size: var(--font-ui-large);
}
.importer-log {
overflow: auto;
flex-grow: 1;
font-family: var(--font-monospace);
font-size: var(--font-ui-smaller);
color: var(--text-muted);
border: 1px solid var(--background-modifier-border);
padding: var(--size-4-4);
background-color: var(--background-secondary);
border-radius: var(--radius-s);
max-height: 300px;
user-select: text;
}
.importer-log .list-item {
display: inline-block;
line-height: var(--line-height-normal);
white-space: pre;
margin: var(--size-2-1);
}
.importer-error {
color: var(--text-error);
}
/* Template configuration styles */
.importer-frontmatter-header {
display: flex;
flex-direction: column;
gap: var(--size-4-2);
}
.importer-frontmatter-header h4 {
margin: 0;
}
.importer-select-all-setting {
padding: 0;
border: none;
}
.importer-select-all-setting .setting-item-info {
padding-inline-end: var(--size-4-2);
}
.importer-column-list {
display: flex;
flex-direction: column;
gap: var(--size-4-1);
padding: var(--size-4-3) 0;
}
.importer-column-header-row {
display: flex;
align-items: center;
gap: var(--size-4-2);
font-size: var(--font-ui-smaller);
color: var(--text-muted);
padding: var(--size-2-1) 0;
}
.importer-column-row {
display: flex;
align-items: center;
gap: var(--size-4-2);
background-color: var(--background-primary);
border-radius: var(--radius-s);
}
.importer-column-name-col {
flex: 0 0 150px;
min-width: 0;
}
.importer-column-value-col {
flex: 0 0 200px;
min-width: 0;
}
.importer-column-property {
width: 100%;
}
.importer-column-example-col {
flex: 1;
min-width: 0;
font-size: var(--font-ui-smaller);
color: var(--text-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: var(--size-2-1) var(--size-4-1);
}
.importer-column-delete-col {
flex-shrink: 0;
width: 32px;
display: flex;
align-items: center;
justify-content: center;
}
/* Fixed width buttons to prevent resizing during loading */
.notion-load-button {
width: 70px;
}
.notion-toggle-button {
width: 95px;
}

View File

@@ -0,0 +1,3 @@
{
"folder": "templates"
}

View File

@@ -0,0 +1,7 @@
{
"name": "Blue Topaz",
"version": "2025071401",
"minAppVersion": "1.0.0",
"author": "WhyI & Pkmer",
"authorUrl": "https://github.com/whyt-byte"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
{
"name": "Minimal",
"version": "8.1.2",
"minAppVersion": "1.9.0",
"author": "@kepano",
"authorUrl": "https://twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano"
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,7 @@
{
"name": "Things",
"version": "2.1.20",
"minAppVersion": "1.0.0",
"author": "@colineckert",
"authorUrl": "https://twitter.com/colineckert"
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
{
"openExternalURLs": true,
"enableAdblocking": true,
"searchEngine": "google"
}

View File

@@ -0,0 +1,161 @@
{
"main": {
"id": "2c1257aca1513630",
"type": "split",
"children": [
{
"id": "7e92419a36179d19",
"type": "tabs",
"children": [
{
"id": "f1c69d76fb041853",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Our story.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Our story"
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "3d75710a1eb00275",
"type": "mobile-drawer",
"children": [
{
"id": "fb5e8b31532d68bc",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "f4f62730cb8857dc",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "d1347a1931227149",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "fd38b4aeca67db33",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
],
"currentTab": 0
},
"right": {
"id": "d91b0f39d8edd1fc",
"type": "mobile-drawer",
"children": [
{
"id": "beb239baa25881f4",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Our story.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks"
}
},
{
"id": "2cacace8674d5157",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Our story.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links"
}
},
{
"id": "13dfcdfda0102440",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Our story.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline"
}
}
],
"currentTab": 0
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "f1c69d76fb041853",
"lastOpenFiles": [
"Our story.md"
]
}

View File

@@ -0,0 +1,228 @@
{
"main": {
"id": "65118307aef94695",
"type": "split",
"children": [
{
"id": "fb78540f6b0817b8",
"type": "tabs",
"children": [
{
"id": "6bd06c473a6df9f7",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Random & To Sort/The Tower.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "The Tower"
}
},
{
"id": "db667fd073afcf6d",
"type": "leaf",
"state": {
"type": "release-notes",
"state": {
"currentVersion": "1.11.4"
},
"icon": "lucide-book-up",
"title": "Release Notes 1.11.4"
}
}
],
"currentTab": 1
}
],
"direction": "vertical"
},
"left": {
"id": "87ef67fcdb70cca7",
"type": "split",
"children": [
{
"id": "51896b8d031f12a7",
"type": "tabs",
"children": [
{
"id": "16c60370ceca95ef",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "67df3fa6c50b7b8f",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "4735c1046deb84d5",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "fa8d807905c5f186",
"type": "split",
"children": [
{
"id": "15acd1bca30e4e69",
"type": "tabs",
"children": [
{
"id": "ec633bee723e26ed",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks"
}
},
{
"id": "76553812ae09d02a",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Welcome.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Welcome"
}
},
{
"id": "a90689d024131f8e",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "b05875d99c295b3e",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Welcome.md"
},
"icon": "lucide-list",
"title": "Outline of Welcome"
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"left-ribbon": {
"hiddenItems": {
"bases:Create new base": false,
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"obsidian-importer:Open Importer": false
}
},
"active": "16c60370ceca95ef",
"lastOpenFiles": [
"Icon\r",
"Apple Notes/Gift ideas ChristmasBirthday.md",
"Random & To Sort/The Tower.md",
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
"Christina/Feelings Conversations",
"Apple Notes/-250.md",
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
"Apple Notes/Animal Crossing/Ribbot.md",
"attachments/100 1.png",
"Apple Notes/Animal Crossing/Retro Action Items.md",
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
"Apple Notes/13.99+10.99+10.99+2.79=38.76.md",
"Apple Notes/Greg Feelings - Dec 4 2025.md",
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
"Apple Notes/Charlie advocating.md",
"Apple Notes/Most password is.md",
"Apple Notes/I have worked with the people below and they can attest to my work….md",
"Apple Notes/Parking.md",
"attachments/IMG_1115.jpeg",
"Apple Notes/New Note 20.md",
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
"attachments/Drawing 2.png",
"Apple Notes/Home events.md",
"Christina/Feelings Conversations/Christina Feelings - Oct 14 2025.md",
"attachments/IMG_6415.heic",
"attachments/Drawing 1.png",
"attachments/Drawing.png",
"attachments/Image.png",
"attachments/Feelings Chat 0528.jpeg",
"attachments/Pasted Graphic 2 1.png",
"attachments/mapstogpx202101793729.gpx",
"attachments/FavoriteLists_iTools_202101793649.json",
"attachments/Pasted Graphic 5.png",
"attachments/Pasted Graphic 4.png",
"attachments/iSpooferLicense.txt",
"attachments/Naka.gpx",
"attachments/Pasted Graphic 1.pdf",
"Apple Notes/Milwaukee 2025 Staff Notes",
"Apple Notes/Christina 1",
"Apple Notes/Christina"
]
}