vault backup: 2025-12-20 08:41:03
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 1m40s
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 1m40s
This commit is contained in:
3
content/.obsidian/community-plugins.json
vendored
3
content/.obsidian/community-plugins.json
vendored
@@ -5,5 +5,6 @@
|
||||
"dataview",
|
||||
"emoji-shortcodes",
|
||||
"obsidian-icon-folder",
|
||||
"obsidian-table-to-csv-exporter"
|
||||
"obsidian-table-to-csv-exporter",
|
||||
"obsidian42-brat"
|
||||
]
|
||||
53
content/.obsidian/plugins/agent-client/main.js
vendored
53
content/.obsidian/plugins/agent-client/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
{"id":"agent-client","name":"Agent Client","version":"0.4.1","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}
|
||||
{"id":"agent-client","name":"Agent Client","version":"0.5.0-preview.1","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}
|
||||
139
content/.obsidian/plugins/agent-client/styles.css
vendored
139
content/.obsidian/plugins/agent-client/styles.css
vendored
@@ -7,6 +7,26 @@ If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
|
||||
/* ===== Settings Tab Documentation Link ===== */
|
||||
.agent-client-doc-link {
|
||||
padding: 12px 16px;
|
||||
margin-bottom: 16px;
|
||||
background-color: var(--background-secondary);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.agent-client-doc-link a {
|
||||
color: var(--text-accent);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.agent-client-doc-link a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* ===== Settings Tab Custom Agent Block ===== */
|
||||
.agent-client-custom-agent {
|
||||
padding: 16px;
|
||||
@@ -461,6 +481,10 @@ If your plugin does not need CSS, delete this file.
|
||||
box-shadow: 0 0 0 1.5px var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.chat-input-box.dragging-over {
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
/* Auto-mention inline display */
|
||||
.auto-mention-inline {
|
||||
display: flex;
|
||||
@@ -469,7 +493,7 @@ If your plugin does not need CSS, delete this file.
|
||||
gap: 4px;
|
||||
padding: 6px 12px;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
background-color: var(--background-primary);
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.mention-badge {
|
||||
@@ -824,6 +848,7 @@ If your plugin does not need CSS, delete this file.
|
||||
bottom: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
max-height: 250px;
|
||||
background-color: var(--background-secondary);
|
||||
border: 2px solid var(--background-modifier-border);
|
||||
border-radius: 8px;
|
||||
@@ -1098,3 +1123,115 @@ If your plugin does not need CSS, delete this file.
|
||||
word-wrap: break-word;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
/* ===== Image Preview Strip ===== */
|
||||
.image-preview-strip {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
padding: 8px 12px;
|
||||
background-color: transparent;
|
||||
overflow-x: auto;
|
||||
scrollbar-width: thin;
|
||||
-ms-overflow-style: none;
|
||||
}
|
||||
|
||||
.image-preview-strip::-webkit-scrollbar {
|
||||
height: 4px;
|
||||
}
|
||||
|
||||
.image-preview-strip::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.image-preview-strip::-webkit-scrollbar-thumb {
|
||||
background-color: var(--background-modifier-border);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.image-preview-item {
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
.image-preview-thumbnail {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.image-preview-remove {
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
right: -6px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
background-color: var(--background-secondary);
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s ease;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.image-preview-remove svg {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.image-preview-item:hover .image-preview-remove {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* ===== Message Image (in chat history) ===== */
|
||||
.message-image {
|
||||
display: inline-block;
|
||||
margin: 4px 4px 4px 0;
|
||||
}
|
||||
|
||||
.message-image-thumbnail {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
/* ===== Message Images Strip (horizontal scroll in chat history) ===== */
|
||||
.message-images-strip {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
padding: 8px 0;
|
||||
overflow-x: auto;
|
||||
scrollbar-width: thin;
|
||||
-ms-overflow-style: none;
|
||||
}
|
||||
|
||||
.message-images-strip::-webkit-scrollbar {
|
||||
height: 4px;
|
||||
}
|
||||
|
||||
.message-images-strip::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.message-images-strip::-webkit-scrollbar-thumb {
|
||||
background-color: var(--background-modifier-border);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.message-images-strip .message-image {
|
||||
flex-shrink: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
132
content/.obsidian/workspace.json
vendored
132
content/.obsidian/workspace.json
vendored
@@ -11,15 +11,34 @@
|
||||
"id": "c5854120d39261cd",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "image",
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "attachments/Pasted image 20251129235154.png"
|
||||
"file": "Anatomi & Histologi 2/Demokompendium.md",
|
||||
"mode": "source",
|
||||
"source": false,
|
||||
"backlinks": false
|
||||
},
|
||||
"icon": "lucide-image",
|
||||
"title": "Pasted image 20251129235154"
|
||||
"icon": "lucide-file",
|
||||
"title": "Demokompendium"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "32fb0c4180f73dab",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Anatomi & Histologi 2/Schema.md",
|
||||
"mode": "source",
|
||||
"source": false,
|
||||
"backlinks": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Schema"
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"currentTab": 1
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@@ -66,7 +85,7 @@
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 413.50312423706055
|
||||
"width": 344.50390243530273
|
||||
},
|
||||
"right": {
|
||||
"id": "0948c66181b40af9",
|
||||
@@ -144,38 +163,28 @@
|
||||
"title": "Source Control"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "f3646b47b9e138cd",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "agent-client-chat-view",
|
||||
"state": {},
|
||||
"icon": "lucide-ghost",
|
||||
"title": "agent-client-chat-view"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "42527268e0f60e4a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-properties",
|
||||
"state": {
|
||||
"file": "Biokemi/Plasmidlabb/Provfrågor.md"
|
||||
"file": "Anatomi & Histologi 2/Schema.md"
|
||||
},
|
||||
"icon": "lucide-info",
|
||||
"title": "File properties for Provfrågor"
|
||||
"title": "File properties for Schema"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 4
|
||||
"currentTab": 5
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 200,
|
||||
"collapsed": true
|
||||
"width": 200
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"obsidian42-brat:BRAT": false,
|
||||
"switcher:Open quick switcher": false,
|
||||
"command-palette:Open command palette": false,
|
||||
"obsidian-git:Open Git source control": false,
|
||||
@@ -186,88 +195,47 @@
|
||||
"templates:Insert template": false
|
||||
}
|
||||
},
|
||||
"floating": {
|
||||
"id": "5e5af42d18db7582",
|
||||
"type": "floating",
|
||||
"children": [
|
||||
{
|
||||
"id": "145feae95c5799f1",
|
||||
"type": "window",
|
||||
"children": [
|
||||
{
|
||||
"id": "ce0f006b8f0432ab",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "7defdbe34efe26d9",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Biokemi/Metabolism/🩸 Heme/Stoff.md",
|
||||
"mode": "source",
|
||||
"source": false,
|
||||
"backlinks": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Stoff"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical",
|
||||
"x": 223,
|
||||
"y": 34,
|
||||
"width": 1024,
|
||||
"height": 800,
|
||||
"maximize": false,
|
||||
"zoom": 0.5
|
||||
}
|
||||
]
|
||||
},
|
||||
"active": "c5854120d39261cd",
|
||||
"active": "32fb0c4180f73dab",
|
||||
"lastOpenFiles": [
|
||||
"Anatomi & Histologi 2/Schema.md",
|
||||
"Anatomi & Histologi 2/Instuderingsfrågor.pdf.pdf",
|
||||
"Anatomi & Histologi 2/Instuderingsfrågor.md",
|
||||
"Anatomi & Histologi 2/! Översikt.md",
|
||||
"Anatomi & Histologi 2/Demokompendium.md",
|
||||
"Anatomi & Histologi 2/Målbeskrivning.md",
|
||||
"Anatomi & Histologi 2/~$ Detaljerad målbeskrivning.docx",
|
||||
"Anatomi & Histologi 2/~$MOkompedium T1 .docx",
|
||||
"Anatomi & Histologi 2/Unconfirmed 949902.crdownload",
|
||||
"Anatomi & Histologi 2/DEMOkompedium T1 .docx",
|
||||
"Anatomi & Histologi 2/Unconfirmed 958983.crdownload",
|
||||
"Anatomi & Histologi 2/F. Detaljerad målbeskrivning.docx",
|
||||
"Anatomi & Histologi 2/Unconfirmed 774494.crdownload",
|
||||
"Biokemi/Gamla tentor/2024-12-20/2024-12-20-0036-OWN.pdf",
|
||||
"Anatomi & Histologi 2",
|
||||
"Biokemi/Metabolism/🩸 Heme/Stoff.md",
|
||||
"Biokemi/Gamla tentor/2024-12-20/3.md",
|
||||
"Biokemi/Gamla tentor/2023-05-15/16.md",
|
||||
"attachments/Pasted image 20251129235154.png",
|
||||
"Biokemi/Makromolekyler/Cellmembran/Provfrågor.md",
|
||||
"Biokemi/Makromolekyler/Lipider/Slides.pdf.pdf",
|
||||
"Biokemi/Makromolekyler/Lipider/Instuderingsuppgifter.md",
|
||||
"Biokemi/Makromolekyler/Lipider/Lärandemål.md",
|
||||
"Biokemi/Metabolism/🩸 Heme/Studera.md",
|
||||
"Biokemi/Metabolism/🩸 Heme/Stoff.md",
|
||||
"Biokemi/Gamla tentor/2024-12-20/2024-12-20-0036-OWN.pdf",
|
||||
"Biokemi/Gamla tentor/2024-12-20/2024-12-20-0118-GCR.pdf",
|
||||
"Biokemi/Gamla tentor/2024-12-20/2024-12-20-0066-NDY.pdf",
|
||||
"Biokemi/Gamla tentor/2024-12-20/30.md",
|
||||
"Biokemi/Metabolism/🩸 Heme/Slides.pdf",
|
||||
"Biokemi/Gamla tentor/2024-01-27/33.md",
|
||||
"Biokemi/Metabolism/Pentosfosfatvägen/📚 Instuderingsuppgifter.md",
|
||||
"Biokemi/Metabolism/🩸 Heme/Provfrågor.md",
|
||||
"Biokemi/Gamla tentor/2024-01-27/2024-01-27-0096-APG.md",
|
||||
"Biokemi/Gamla tentor/2024-01-27/2024-01-27-0096-APG.pdf",
|
||||
"Biokemi/Gamla tentor/2024-01-27/30.md",
|
||||
"Biokemi/Cellulära processer/Utforska proteiner/Slides.pdf.pdf",
|
||||
"Biokemi/Cellulära processer/Utforska proteiner/Lärandemål.md",
|
||||
"Biokemi/Plasmidlabb/Anteckningar I.md",
|
||||
"Biokemi/Behöver göra.md",
|
||||
"conflict-files-obsidian-git.md",
|
||||
"Biokemi/Biokemi Base.base",
|
||||
"Biokemi/Cellulära processer/RNA syntes/RNA syntes Kurslitteratur.md",
|
||||
"Biokemi/Cellulära processer/RNA syntes/Instuderingsfrågor.md",
|
||||
"Biokemi/Frågestund.md",
|
||||
"attachments/Pasted image 20251129235131.png",
|
||||
"attachments/Pasted image 20251129235154.png",
|
||||
"Biokemi/Plasmidlabb/Untitled.md",
|
||||
"Biokemi/Plasmidlabb/Slides II.pdf.pdf",
|
||||
"Biokemi/Metabolism/🍋 Citronsyracykeln/Slides.pdf.pdf",
|
||||
"Biokemi/Metabolism/🍋 Citronsyracykeln/Citronsyracykeln.md",
|
||||
"Biokemi/Metabolism/🍕 β-oxidation/Anteckningar.md",
|
||||
"Biokemi/Metabolism/Elektrontransportkedjan/🗒 Anteckningar.md",
|
||||
"Biokemi/Metabolism/Elektrontransportkedjan/👨🏻🏫 Slides.md",
|
||||
"attachments/Pasted image 20251128085625.png",
|
||||
"attachments/Pasted image 20251128085603.png",
|
||||
"Biokemi/Cellulära processer/Initiering och terminering av DNA replikation/Instuderingsfrågor.md",
|
||||
"Biokemi/Metabolism/Biokemi ur ett evolutionsperspektiv/Instuderingsfrågor.md",
|
||||
"Biokemi/Cellulära processer/RNA syntes/Anteckningar.md",
|
||||
"attachments/Pasted image 20251129234842.png",
|
||||
"Untitled.canvas",
|
||||
"Biokemi/Metabolism/Diagram/Glycolysis_overview.svg",
|
||||
|
||||
Reference in New Issue
Block a user