vault backup: 2026-06-08 16:18:12

This commit is contained in:
Dmitry
2026-06-08 16:18:12 +03:00
parent a1fe7024ac
commit 17177b3713
30 changed files with 2545 additions and 1147 deletions
+80 -1
View File
@@ -1,5 +1,5 @@
{
"lastVersion": "3.2.7",
"lastVersion": "4.0.8",
"aestheticStyle": "glass",
"positionStyle": "top",
"menuCommands": [
@@ -1127,5 +1127,84 @@
"toolbarIconColor": "#E2E8F0",
"toolbarIconSize": 18,
"useCurrentLineForRegex": false,
"ai": {
"enabled": false,
"consentAccepted": false,
"onboardingShown": true,
"providerMode": "pkmer-first",
"enableInlineCompletion": true,
"inlineCompletionHintLearned": false,
"completionTrigger": "manual",
"completionDelay": 500,
"enableRewrite": true,
"showRewriteToolbarOnSelection": false,
"rewriteMinSelectionLength": 1,
"pkmerApiBaseUrl": "https://newapi.pkmer.cn",
"pkmerModel": "04-fast",
"pkmerModelRouting": {
"mode": "smart",
"completion": "04-fast",
"rewrite": "04-fast",
"reasoning": "03-agent",
"artifact": "03-agent"
},
"pkmer": {
"tokenExpiresAt": 0,
"userInfo": null
},
"enableCustomModel": false,
"customModel": {
"apiFormat": "openai-compatible",
"baseUrl": "",
"apiKey": "",
"model": "",
"temperature": 0.2
},
"customPromptHistory": [],
"customPromptTemplates": [
{
"id": "template-demo-variables",
"name": "📝 Summarize Key Points",
"prompt": "Analyze the structure of {{file:content}} and focus on:\n{{selection}}\n\nPlease provide:\n1. A concise overview\n2. The key points\n3. Suggestions for improvement",
"icon": "lucide-sparkles"
},
{
"id": "template-task-variables",
"name": "Extract Tasks",
"prompt": "Today's date is {{date}}. Extract all actionable tasks from {{file:content}}, with special attention to:\n{{selection}}\n\nPlease output strictly in Obsidian Tasks plugin format, one task per line:\n\n- [ ] Task description ⏫/🔼/🔽/⏬ priority\n- [ ] Task description 📅 YYYY-MM-DD due date\n- [ ] Task description ⏰ YYYY-MM-DD HH:mm reminder\n- [ ] Task description 🛫 YYYY-MM-DD start date\n- [ ] Task description 🔁 every day/week/month recurrence\n- [ ] Task description #tag #project\n\nExtraction rules:\n1. If the text implies urgency such as urgent, ASAP, immediately, or today, add ⏫.\n2. If it implies near-term timing such as tomorrow, this week, or soon, add 🔼.\n3. Convert explicit dates to 📅 YYYY-MM-DD.\n4. Convert explicit times to ⏰ YYYY-MM-DD HH:mm when possible.\n5. Add recurrence for repeated work such as 🔁 every week/month.\n6. Add practical tags for each task.\n\nExample output:\n- [ ] Finish project report ⏫ 📅 2026-04-25 #work\n- [ ] Weekly team sync 🔁 every week on Monday ⏰ 09:00 #meeting\n- [ ] Follow up on client request 🔼 📅 2026-04-23 #follow-up",
"icon": "lucide-sparkles"
},
{
"id": "template-dataview",
"name": "Generate Dataview",
"prompt": "Help me generate an Obsidian Dataview query block based on my requirement. Requirements:\n1. Use DataviewJS or DQL syntax.\n2. Include the necessary filters and sorting.\n3. Add short comments explaining each part.\n4. Use DataviewJS if the logic is complex.\n\nMy requirement:",
"icon": "lucide-database"
},
{
"id": "template-templater",
"name": "Design Templater Template",
"prompt": "Help me design an Obsidian Templater template. Requirements:\n1. Use Templater syntax (<% %>).\n2. Include dynamic date, time, and similar variables.\n3. Support user input prompts.\n4. Add necessary conditionals and loops.\n5. Comment the purpose of each section.\n\nTemplate purpose:",
"icon": "lucide-file-code"
},
{
"id": "template-mermaid",
"name": "Create Mermaid Diagram",
"prompt": "Based on my selected text {{selection}}, generate Mermaid diagram code. Requirements:\n1. Choose an appropriate diagram type such as flowchart, sequence, class, or gantt.\n2. Use clear node names.\n3. Add useful styling and comments when needed.\n4. Ensure the syntax is valid and renderable.\n",
"icon": "lucide-workflow"
},
{
"id": "template-metadata",
"name": "Design YAML",
"prompt": "Based on the current note content {{file:content}}, help me design a suitable YAML Frontmatter structure for this note. Requirements:\n1. Recommend fields that fit the note content.\n2. Include common fields such as tags, aliases, and date.\n3. Suggest useful custom fields.\n4. Briefly explain the purpose of each field.\n\nNote type:",
"icon": "lucide-file-json"
},
{
"id": "template-callout",
"name": "Wrap with Callout",
"prompt": "Based on my selected text {{selection}}, wrap it using an Obsidian Callout block. Requirements:\n1. Choose an appropriate callout type such as note, tip, warning, or danger.\n2. Support nesting and folding when helpful.\n3. Include a title and content.\n4. Allow code blocks or lists when needed.\n\nContent requirement:",
"icon": "lucide-message-square"
}
]
},
"commandIdsFixed": true
}
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,7 +1,7 @@
{
"id": "editing-toolbar",
"name": "Editing Toolbar",
"version": "3.2.7",
"version": "4.0.8",
"minAppVersion": "0.14.0",
"description": "The Obsidian Editing Toolbar is modified from cmenu, which provides more powerful customization settings and has many built-in editing commands to be a MS Word-like toolbar editing experience.",
"author": "Cuman",
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,7 +1,7 @@
{
"id": "metadata-menu",
"name": "Metadata Menu",
"version": "0.8.11",
"version": "0.8.12",
"minAppVersion": "1.4.16",
"description": "For data quality enthusiasts (and dataview users): manage the metadata of your notes.",
"author": "mdelobelle",
+36 -26
View File
@@ -189,6 +189,12 @@
stroke: var(--color-green);
}
.metadata-menu.modal-container .modal {
padding-top: 40px;
}
.metadata-menu.modal-container .modal .modal-close-button {
padding-top: 35px;
}
.metadata-menu.modal-container.narrow .modal {
width: initial;
}
@@ -252,7 +258,7 @@
font-style: italic;
color: var(--color-accent);
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container .field-container .info {
display: none;
}
@@ -338,7 +344,7 @@
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input.datetime {
width: 14em;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input {
display: none;
}
@@ -348,7 +354,6 @@
margin-right: 0;
}
.metadata-menu.modal-container .field-container .date-input-wrapper .time-picker {
width: 2em;
margin-right: 0.5em;
font-size: large;
}
@@ -624,7 +629,7 @@
width: auto;
min-width: var(--dialog-width);
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .modal {
max-width: 97vw;
min-width: 0px;
@@ -638,7 +643,7 @@
grid-template-columns: auto auto 1fr auto;
margin-top: 3px;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .note-fields-container {
grid-template-columns: 270px 75px;
}
@@ -650,7 +655,7 @@
grid-column: 2;
display: flex;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-settings-wrapper .field-settings-spacer {
width: 100%;
}
@@ -658,7 +663,7 @@
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper {
grid-column: 3;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper {
grid-column: 1;
margin-bottom: 1em;
@@ -668,7 +673,7 @@
grid-column: 4;
display: flex;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-options-wrapper {
grid-column: 2;
margin-bottom: 1em;
@@ -691,7 +696,7 @@
padding-left: 0.6em;
border: none;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-name-wrapper .field-item.field-name, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper .field-item.field-name, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-settings-wrapper .field-item.field-name, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-options-wrapper .field-item.field-name {
padding-left: 0;
}
@@ -703,7 +708,7 @@
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-name-wrapper .field-item .field-type, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper .field-item .field-type, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-settings-wrapper .field-item .field-type, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-options-wrapper .field-item .field-type {
margin-top: 0.25em;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-name-wrapper .field-item .field-type.chip, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper .field-item .field-type.chip, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-settings-wrapper .field-item .field-type.chip, .metadata-menu.modal-container.note-fields-modal .note-fields-container .field-options-wrapper .field-item .field-type.chip {
margin-right: 0;
}
@@ -758,6 +763,12 @@
margin: 0 0.5em;
}
.metadata-menu.modal-container .modal {
padding-top: 40px;
}
.metadata-menu.modal-container .modal .modal-close-button {
padding-top: 35px;
}
.metadata-menu.modal-container.narrow .modal {
width: initial;
}
@@ -821,7 +832,7 @@
font-style: italic;
color: var(--color-accent);
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container .field-container .info {
display: none;
}
@@ -907,7 +918,7 @@
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input.datetime {
width: 14em;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input {
display: none;
}
@@ -917,7 +928,6 @@
margin-right: 0;
}
.metadata-menu.modal-container .field-container .date-input-wrapper .time-picker {
width: 2em;
margin-right: 0.5em;
font-size: large;
}
@@ -1361,7 +1371,7 @@
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.prompt.media-as-cards .prompt-results {
grid-template-columns: auto;
}
@@ -1529,7 +1539,7 @@
display: grid;
grid-template-columns: auto auto auto 1fr;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-fields .fields-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container {
grid-template-columns: auto auto auto;
}
@@ -1541,7 +1551,7 @@
font-weight: 500;
display: inline-flex;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-fields .fields-container .name-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .name-container {
margin-top: 1em;
}
@@ -1554,7 +1564,7 @@
.metadata-menu.fileclass-view .fv-fields .fields-container .type-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .type-container {
grid-column: 2;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-fields .fields-container .type-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .type-container {
margin-top: 1em;
}
@@ -1575,7 +1585,7 @@
grid-column: 3;
display: flex;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-fields .fields-container .buttons-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .buttons-container {
margin-top: 1em;
}
@@ -1583,7 +1593,7 @@
.metadata-menu.fileclass-view .fv-fields .fields-container .options-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .options-container {
grid-column: 4;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-fields .fields-container .options-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .options-container {
grid-column: 1;
grid-column-start: span 3;
@@ -1594,7 +1604,7 @@
margin-left: 1em;
color: var(--text-muted);
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-fields .fields-container .options-container .description, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .options-container .description {
margin-left: 0em;
white-space: normal;
@@ -1638,7 +1648,7 @@
grid-template-columns: auto auto auto 1fr;
align-items: center;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-settings .settings-container, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container {
grid-template-columns: 1fr auto;
}
@@ -1649,7 +1659,7 @@
white-space: nowrap;
font-weight: 500;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-settings .settings-container .label, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .label {
margin-top: 1em;
}
@@ -1658,7 +1668,7 @@
grid-column: 3;
margin: 0.2em 0em 0.2em 0;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-settings .settings-container .action, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .action {
grid-column: 1;
grid-column-start: span 2;
@@ -1719,7 +1729,7 @@
.metadata-menu.fileclass-view .fv-settings .settings-container .tooltip-btn, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .tooltip-btn {
grid-column: 2;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-settings .settings-container .tooltip-btn, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .tooltip-btn {
margin-top: 1em;
}
@@ -1740,7 +1750,7 @@
line-break: strict;
line-height: normal;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-settings .settings-container .tooltip-text, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .tooltip-text {
grid-column: 1;
grid-column-start: span 2;
@@ -1781,7 +1791,7 @@
}
*/
}
@media screen and (max-width: 400px) {
@media screen and (max-width: 440px) {
.metadata-menu.fileclass-view .fv-table .options, .metadata-menu.fileclass-codeblock-view .fv-table .options {
max-height: 50em;
overflow: scroll;
+179 -185
View File
@@ -1,4 +1,5 @@
{
"showTabTitlebarButtons": true,
"copyLinkToElemenetAnchorTo100": false,
"copyFrameLinkByName": false,
"disableDoubleClickTextEditing": false,
@@ -33,6 +34,7 @@
"displaySVGInPreview": false,
"previewImageType": "SVG",
"renderingConcurrency": 3,
"imageCacheRetentionDays": 30,
"allowImageCache": true,
"allowImageCacheInScene": true,
"displayExportedImageIfAvailable": false,
@@ -84,7 +86,7 @@
"pageTransclusionCharLimit": 200,
"wordWrappingDefault": 0,
"removeTransclusionQuoteSigns": true,
"iframelyAllowed": true,
"oEmbedAllowed": false,
"pngExportScale": 1,
"exportWithTheme": true,
"exportWithBackground": true,
@@ -98,6 +100,7 @@
"embedType": "excalidraw",
"embedMarkdownCommentLinks": true,
"embedWikiLink": true,
"embedPlaceholderImage": true,
"syncExcalidraw": false,
"experimentalFileType": false,
"experimentalFileTag": "✏️",
@@ -109,6 +112,8 @@
"addDummyTextElement": false,
"zoteroCompatibility": false,
"fieldSuggester": true,
"enableOnloadScripts": false,
"enableCommandLinks": false,
"compatibilityMode": false,
"drawingOpenCount": 0,
"library": "deprecated",
@@ -489,15 +494,178 @@
"canvasImmersiveEmbed": true,
"startupScriptPath": "",
"aiEnabled": true,
"openAIAPIToken": "",
"openAIDefaultTextModel": "gpt-5-mini",
"openAIDefaultTextModelMaxTokens": 4096,
"openAIDefaultVisionModel": "gpt-5-mini",
"openAIDefaultImageGenerationModel": "gpt-image-1",
"openAIURL": "https://api.openai.com/v1/chat/completions",
"openAIImageGenerationURL": "https://api.openai.com/v1/images/generations",
"openAIImageEditsURL": "https://api.openai.com/v1/images/edits",
"openAIImageVariationURL": "https://api.openai.com/v1/images/variations",
"aiVerboseLogging": false,
"aiProviderProfiles": {
"OpenAI": {
"provider": "openai",
"apiKey": "",
"baseURL": "https://api.openai.com/v1"
},
"Anthropic": {
"provider": "anthropic",
"apiKey": "",
"baseURL": "https://api.anthropic.com/v1"
},
"Google Gemini": {
"provider": "google",
"apiKey": "",
"baseURL": "https://generativelanguage.googleapis.com/v1beta"
},
"xAI": {
"provider": "xai",
"apiKey": "",
"baseURL": "https://api.x.ai/v1"
},
"OpenAI-compatible": {
"provider": "openai-compatible",
"apiKey": "",
"baseURL": "https://api.openai.com/v1"
}
},
"aiTextModelConfigs": {
"gpt-5-mini": {
"providerId": "OpenAI",
"model": "gpt-5-mini",
"endpoint": "",
"multimodalSupport": true
},
"claude-sonnet-4-5": {
"providerId": "Anthropic",
"model": "claude-sonnet-4-5",
"endpoint": "",
"multimodalSupport": true
},
"gemini-2.5-pro": {
"providerId": "Google Gemini",
"model": "gemini-2.5-pro",
"endpoint": "",
"multimodalSupport": true
},
"grok-4-fast": {
"providerId": "xAI",
"model": "grok-4-fast",
"endpoint": "",
"multimodalSupport": true
}
},
"aiImageModelConfigs": {
"dall-e-2": {
"providerId": "OpenAI",
"model": "dall-e-2",
"supportedSizes": [
"256x256",
"512x512",
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"dall-e-3": {
"providerId": "OpenAI",
"model": "dall-e-3",
"supportedSizes": [
"1024x1024",
"1792x1024",
"1024x1792"
],
"supportsPromptImageTransforms": false,
"supportsMaskImageEdits": false
},
"gpt-image-1": {
"providerId": "OpenAI",
"model": "gpt-image-1",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gpt-image-1-mini": {
"providerId": "OpenAI",
"model": "gpt-image-1-mini",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gpt-image-1.5": {
"providerId": "OpenAI",
"model": "gpt-image-1.5",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gpt-image-2": {
"providerId": "OpenAI",
"model": "gpt-image-2",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536",
"2048x2048"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gemini-2.5-flash-image": {
"providerId": "Google Gemini",
"model": "gemini-2.5-flash-image",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"gemini-3.1-flash-image-preview": {
"providerId": "Google Gemini",
"model": "gemini-3.1-flash-image-preview",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"gemini-3-pro-image-preview": {
"providerId": "Google Gemini",
"model": "gemini-3-pro-image-preview",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"grok-imagine-image-quality": {
"providerId": "xAI",
"model": "grok-imagine-image-quality",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"grok-imagine-image-pro": {
"providerId": "xAI",
"model": "grok-imagine-image-pro",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
}
},
"aiDefaultTextModel": "gpt-5-mini",
"aiDefaultImageGenerationModel": "gpt-image-1",
"aiDefaultMaxOutgoingTokens": 0,
"aiDefaultMaxResponseTokens": 4096,
"modifierKeyConfig": {
"Mac": {
"LocalFileDragAction": {
@@ -787,7 +955,6 @@
"longPressDesktop": 500,
"longPressMobile": 500,
"doubleClickLinkOpenViewMode": true,
"isDebugMode": false,
"rank": "Bronze",
"modifierKeyOverrides": [
{
@@ -820,178 +987,5 @@
"margin": "normal"
},
"disableContextMenu": false,
"imageCacheRetentionDays": 30,
"enableOnloadScripts": false,
"aiVerboseLogging": false,
"aiProviderProfiles": {
"OpenAI": {
"provider": "openai",
"apiKey": "",
"baseURL": "https://api.openai.com/v1"
},
"Anthropic": {
"provider": "anthropic",
"apiKey": "",
"baseURL": "https://api.anthropic.com/v1"
},
"Google Gemini": {
"provider": "google",
"apiKey": "",
"baseURL": "https://generativelanguage.googleapis.com/v1beta"
},
"xAI": {
"provider": "xai",
"apiKey": "",
"baseURL": "https://api.x.ai/v1"
},
"OpenAI-compatible": {
"provider": "openai-compatible",
"apiKey": "",
"baseURL": "https://api.openai.com/v1"
}
},
"aiTextModelConfigs": {
"gpt-5-mini": {
"providerId": "OpenAI",
"model": "gpt-5-mini",
"endpoint": "",
"multimodalSupport": true
},
"claude-sonnet-4-5": {
"providerId": "Anthropic",
"model": "claude-sonnet-4-5",
"endpoint": "",
"multimodalSupport": true
},
"gemini-2.5-pro": {
"providerId": "Google Gemini",
"model": "gemini-2.5-pro",
"endpoint": "",
"multimodalSupport": true
},
"grok-4-fast": {
"providerId": "xAI",
"model": "grok-4-fast",
"endpoint": "",
"multimodalSupport": true
}
},
"aiImageModelConfigs": {
"dall-e-2": {
"providerId": "OpenAI",
"model": "dall-e-2",
"supportedSizes": [
"256x256",
"512x512",
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"dall-e-3": {
"providerId": "OpenAI",
"model": "dall-e-3",
"supportedSizes": [
"1024x1024",
"1792x1024",
"1024x1792"
],
"supportsPromptImageTransforms": false,
"supportsMaskImageEdits": false
},
"gpt-image-1": {
"providerId": "OpenAI",
"model": "gpt-image-1",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gpt-image-1-mini": {
"providerId": "OpenAI",
"model": "gpt-image-1-mini",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gpt-image-1.5": {
"providerId": "OpenAI",
"model": "gpt-image-1.5",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gpt-image-2": {
"providerId": "OpenAI",
"model": "gpt-image-2",
"supportedSizes": [
"1024x1024",
"1536x1024",
"1024x1536",
"2048x2048"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": true
},
"gemini-2.5-flash-image": {
"providerId": "Google Gemini",
"model": "gemini-2.5-flash-image",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"gemini-3.1-flash-image-preview": {
"providerId": "Google Gemini",
"model": "gemini-3.1-flash-image-preview",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"gemini-3-pro-image-preview": {
"providerId": "Google Gemini",
"model": "gemini-3-pro-image-preview",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"grok-imagine-image-quality": {
"providerId": "xAI",
"model": "grok-imagine-image-quality",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
},
"grok-imagine-image-pro": {
"providerId": "xAI",
"model": "grok-imagine-image-pro",
"supportedSizes": [
"1024x1024"
],
"supportsPromptImageTransforms": true,
"supportsMaskImageEdits": false
}
},
"aiDefaultTextModel": "gpt-5-mini",
"aiDefaultImageGenerationModel": "gpt-image-1",
"aiDefaultMaxOutgoingTokens": 0,
"aiDefaultMaxResponseTokens": 4096
"isDebugMode": false
}
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -1,8 +1,8 @@
{
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
"version": "2.23.0",
"minAppVersion": "1.5.7",
"version": "2.23.12",
"minAppVersion": "1.8.7",
"description": "Sketch Your Mind. Edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.",
"author": "Zsolt Viczian",
"authorUrl": "https://excalidraw-obsidian.online",
File diff suppressed because one or more lines are too long
+258 -295
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -6,5 +6,5 @@
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.38.2"
"version": "2.38.3"
}
+20 -25
View File
@@ -8,15 +8,6 @@
}
}
.git-signs-gutter {
.cm-gutterElement {
/* Needed to align the sign properly for different line heigts. Such as
* when having a heading or list item.
*/
padding-top: 0 !important;
}
}
.workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s);
@@ -108,7 +99,7 @@
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
padding: 0;
height: auto;
}
@@ -175,7 +166,7 @@ which itself is adapted from the diff2html library with the following original l
--git-change-bg: #ffd55840;
--git-selected: #3572b0;
--git-delete: #c33;
--git-delete: #cc3333;
--git-insert: #399839;
--git-change: #d0b44c;
--git-move: #3572b0;
@@ -538,13 +529,24 @@ which itself is adapted from the diff2html library with the following original l
.d2h-diff-tbody {
position: relative;
}
/* My additions */
.cm-merge-revert {
width: 4em;
}
/* Ensure that merge revert markers are positioned correctly */
.cm-merge-revert > * {
position: absolute;
background-color: var(--background-secondary);
display: flex;
}
}
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-width: 0px 2px 0.2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
@@ -557,7 +559,7 @@ which itself is adapted from the diff2html library with the following original l
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
padding: 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}
@@ -602,6 +604,11 @@ which itself is adapted from the diff2html library with the following original l
.git-signs-gutter {
.cm-gutterElement {
display: grid;
/* Needed to align the sign properly for different line heigts. Such as
* when having a heading or list item.
*/
padding-top: 0 !important;
}
}
@@ -669,18 +676,6 @@ div:hover > .git-gutter-marker.git-changedelete {
opacity: 0.5;
}
.git-diff {
.cm-merge-revert {
width: 4em;
}
/* Ensure that merge revert markers are positioned correctly */
.cm-merge-revert > * {
position: absolute;
background-color: var(--background-secondary);
display: flex;
}
}
/* Prevent shifting of the editor when git signs gutter is the only gutter present */
.cm-gutters.cm-gutters-before:has(> .git-signs-gutter:only-child) {
margin-inline-end: 0;
+1
View File
@@ -278,6 +278,7 @@
"lintOnFileChange": false,
"displayLintOnFileChangeNotice": false,
"settingsConvertedToConfigKeyValues": true,
"additionalFileExtensions": [],
"foldersToIgnore": [
"99 System"
],
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -1,8 +1,8 @@
{
"id": "obsidian-linter",
"name": "Linter",
"version": "1.31.0",
"minAppVersion": "1.9.0",
"version": "1.31.2",
"minAppVersion": "1.12.0",
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
"author": "Victor Tao",
"authorUrl": "https://github.com/platers",
+1
View File
@@ -6,6 +6,7 @@
"ignoreDiacritics": true,
"ignoreArabicDiacritics": false,
"indexedFileTypes": [],
"indexFilesWithoutExtension": false,
"displayTitle": "",
"PDFIndexing": false,
"officeIndexing": false,
+142 -143
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -1,11 +1,11 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.28.0",
"version": "1.29.3",
"minAppVersion": "1.7.2",
"description": "A search engine that just works",
"description": "A search engine that just works.",
"author": "Simon Cambier",
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
"authorUrl": "https://scambier.xyz",
"fundingUrl": {
"Github": "https://github.com/sponsors/scambier",
"Ko-fi": "https://ko-fi.com/scambier"
+16 -1
View File
@@ -63,7 +63,6 @@
margin-left: 1em;
}
.omnisearch-result__image-container {
flex-basis: 20%;
text-align: end;
@@ -133,3 +132,19 @@
position: relative;
flex-grow: 1;
}
.omnisearch-result-highlight .cm-content ::selection,
.omnisearch-result-highlight .cm-line::selection {
background-color: var(
--omnisearch-highlight-color,
rgba(222, 183, 110, 1)
) !important;
color: var(--omnisearch-highlight-text-color, black) !important;
}
.omnisearch-result-highlight .cm-selectionLayer .cm-selectionBackground {
background-color: var(
--omnisearch-highlight-color,
rgba(222, 183, 110, 1)
) !important;
}
File diff suppressed because one or more lines are too long
+9 -3
View File
@@ -1,11 +1,17 @@
{
"id": "templater-obsidian",
"name": "Templater",
"version": "2.17.0",
"description": "Create and use templates",
"minAppVersion": "1.5.0",
"version": "2.20.5",
"description": "Advanced templating and automation using handlebars-like syntax.",
"minAppVersion": "1.12.2",
"author": "SilentVoid",
"authorUrl": "https://github.com/SilentVoid13",
"fundingUrl": {
"GitHub Sponser (Zachatoo, maintainer)": "https://github.com/sponsors/Zachatoo",
"Ko-fi (Zachatoo, maintainer)": "https://ko-fi.com/zachatoo",
"GitHub Sponser (SilentVoid13, creator)": "https://github.com/sponsors/SilentVoid13",
"Paypal (SilentVoid13, creator)": "https://www.paypal.com/donate?hosted_button_id=U2SRGAFYXT32Q"
},
"helpUrl": "https://silentvoid13.github.io/Templater/",
"isDesktopOnly": false
}
+1 -1
View File
@@ -221,6 +221,6 @@ textarea.templater-prompt-input:focus {
}
li.CodeMirror-hint-active {
background: #08f;
background: #0088ff;
color: white;
}
+126
View File
@@ -6,7 +6,130 @@
"exposeInternalModules": true,
"focusOnNewInstance": true,
"hideStatusBar": "focused",
"interceptKeysWhenFocused": true,
"interceptLogging": true,
"keymappings": [
{
"action": "sendEscapeSequence",
"actionArg": "\r",
"alt": false,
"ctrl": false,
"key": "Enter",
"meta": false,
"platform": null,
"shift": true
},
{
"action": "scrollPages",
"actionArg": -1,
"alt": false,
"ctrl": false,
"key": "PageUp",
"meta": false,
"platform": null,
"shift": false
},
{
"action": "scrollPages",
"actionArg": 1,
"alt": false,
"ctrl": false,
"key": "PageDown",
"meta": false,
"platform": null,
"shift": false
},
{
"action": "scrollToTop",
"actionArg": null,
"alt": false,
"ctrl": false,
"key": "Home",
"meta": false,
"platform": null,
"shift": false
},
{
"action": "scrollToBottom",
"actionArg": null,
"alt": false,
"ctrl": false,
"key": "End",
"meta": false,
"platform": null,
"shift": false
},
{
"action": "sendEscapeSequence",
"actionArg": "b",
"alt": true,
"ctrl": false,
"key": "ArrowLeft",
"meta": false,
"platform": "darwin",
"shift": false
},
{
"action": "sendEscapeSequence",
"actionArg": "f",
"alt": true,
"ctrl": false,
"key": "ArrowRight",
"meta": false,
"platform": "darwin",
"shift": false
},
{
"action": "sendHexCode",
"actionArg": "01",
"alt": false,
"ctrl": false,
"key": "ArrowLeft",
"meta": true,
"platform": "darwin",
"shift": false
},
{
"action": "sendHexCode",
"actionArg": "05",
"alt": false,
"ctrl": false,
"key": "ArrowRight",
"meta": true,
"platform": "darwin",
"shift": false
},
{
"action": "sendHexCode",
"actionArg": "17",
"alt": true,
"ctrl": false,
"key": "Backspace",
"meta": false,
"platform": "darwin",
"shift": false
},
{
"action": "sendHexCode",
"actionArg": "15",
"alt": false,
"ctrl": false,
"key": "Backspace",
"meta": true,
"platform": "darwin",
"shift": false
},
{
"action": "sendEscapeSequence",
"actionArg": "d",
"alt": true,
"ctrl": false,
"key": "Delete",
"meta": false,
"platform": "darwin",
"shift": false
}
],
"language": "",
"macOSOptionKeyPassthrough": true,
"newInstanceBehavior": "newHorizontalSplit",
@@ -32,6 +155,7 @@
},
"linuxExternalDefault": {
"args": [],
"environment": [],
"executable": "xterm",
"followTheme": true,
"name": "",
@@ -52,6 +176,7 @@
},
"linuxIntegratedDefault": {
"args": [],
"environment": [],
"executable": "/bin/sh",
"followTheme": true,
"name": "",
@@ -76,6 +201,7 @@
"args": [
"--login"
],
"environment": [],
"executable": "/usr/bin/zsh",
"followTheme": true,
"name": "ZSH",
+152 -186
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -5,7 +5,7 @@
"Buy Me a Coffee": "https://buymeacoffee.com/polyipseity",
"GitHub Sponsors": "https://github.com/sponsors/polyipseity"
},
"version": "3.24.0",
"version": "3.26.0",
"authorUrl": "https://github.com/polyipseity",
"id": "terminal",
"isDesktopOnly": false,
+67 -34
View File
@@ -1,36 +1,69 @@
{
"version": null,
"isAnnounceUpdatesEnabled": true,
"isPluginActivated": true,
"isTypewriterScrollEnabled": true,
"isOnlyActivateAfterFirstInteractionEnabled": true,
"isOnlyMaintainTypewriterOffsetWhenReachedEnabled": true,
"isTypewriterOnlyUseCommandsEnabled": false,
"typewriterOffset": 0.5,
"isKeepLinesAboveAndBelowEnabled": false,
"linesAboveAndBelow": 5,
"isMaxCharsPerLineEnabled": false,
"maxCharsPerLine": 64,
"isDimUnfocusedEnabled": false,
"isDimHighlightListParentEnabled": false,
"isDimTableAsOneEnabled": true,
"dimUnfocusedMode": "paragraphs",
"dimUnfocusedEditorsBehavior": "dim",
"dimmedOpacity": 0.25,
"isPauseDimUnfocusedWhileScrollingEnabled": true,
"isPauseDimUnfocusedWhileSelectingEnabled": true,
"isHighlightCurrentLineEnabled": false,
"isFadeLinesEnabled": false,
"fadeLinesIntensity": 0.5,
"isHighlightCurrentLineOnlyInFocusedEditorEnabled": false,
"currentLineHighlightStyle": "box",
"currentLineHighlightUnderlineThickness": 1,
"currentLineHighlightColor-dark": "#444",
"currentLineHighlightColor-light": "#ddd",
"doesWritingFocusShowHeader": false,
"doesWritingFocusShowStatusBar": false,
"doesWritingFocusShowVignette": true,
"isWritingFocusFullscreen": true,
"writingFocusVignetteStyle": "box",
"isRestoreCursorPositionEnabled": false
"general": {
"version": "1.4.0",
"isAnnounceUpdatesEnabled": true,
"isPluginActivated": true,
"isOnlyActivateAfterFirstInteractionEnabled": true,
"enabledPlatforms": "both",
"enabledFilePaths": [],
"disabledFilePaths": []
},
"typewriter": {
"isTypewriterScrollEnabled": true,
"isOnlyMaintainTypewriterOffsetWhenReachedEnabled": true,
"isTypewriterOnlyUseCommandsEnabled": false,
"typewriterOffset": 0.5
},
"keepLinesAboveAndBelow": {
"isKeepLinesAboveAndBelowEnabled": false,
"linesAboveAndBelow": 5
},
"maxChars": {
"isMaxCharsPerLineEnabled": false,
"maxCharsPerLine": 64
},
"dimming": {
"isDimUnfocusedEnabled": false,
"isDimUnfocusedOnlyInWritingFocusModeEnabled": false,
"isDimHighlightListParentEnabled": false,
"isDimTableAsOneEnabled": true,
"dimUnfocusedMode": "paragraphs",
"dimUnfocusedEditorsBehavior": "dim",
"dimmedOpacity": 0.25,
"isPauseDimUnfocusedWhileScrollingEnabled": true,
"isPauseDimUnfocusedWhileSelectingEnabled": true
},
"currentLine": {
"isHighlightCurrentLineEnabled": false,
"isHighlightCurrentLineOnlyInWritingFocusModeEnabled": false,
"isFadeLinesEnabled": false,
"isFadeLinesOnlyInWritingFocusModeEnabled": false,
"fadeLinesIntensity": 0.5,
"isHighlightCurrentLineOnlyInFocusedEditorEnabled": false,
"isPauseCurrentLineHighlightWhileScrollingEnabled": false,
"isPauseCurrentLineHighlightWhileSelectingEnabled": false,
"currentLineHighlightStyle": "box",
"currentLineHighlightUnderlineThickness": 1,
"currentLineHighlightColor-dark": "#444",
"currentLineHighlightColor-light": "#ddd"
},
"writingFocus": {
"doesWritingFocusShowHeader": false,
"doesWritingFocusShowVignette": true,
"doesWritingFocusShowStatusBar": false,
"isWritingFocusFullscreen": true,
"writingFocusVignetteStyle": "box",
"writingFocusFontSize": 0
},
"restoreCursorPosition": {
"isRestoreCursorPositionEnabled": false,
"cursorPositions": {}
},
"hemingwayMode": {
"isHemingwayModeEnabled": false,
"isHemingwayModeOnlyInWritingFocusModeEnabled": false,
"isAllowBackspaceInHemingwayModeEnabled": false,
"isShowHemingwayModeStatusBarEnabled": true,
"hemingwayModeStatusBarText": "Hemingway"
}
}
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -5,8 +5,8 @@
"authorUrl": "https://davis-riedel.de/en/software",
"description": "Typewriter scroll, highlight current line, dim unfocused paragraphs and sentences, writing focus, restore cursor position and more.",
"isDesktopOnly": false,
"version": "1.1.0",
"minAppVersion": "0.15.0",
"version": "1.4.0",
"minAppVersion": "1.11.0",
"fundingUrl": {
"Buy Me a Coffee": "https://www.buymeacoffee.com/davis.riedel",
"GitHub Sponsors": "https://github.com/sponsors/davisriedel"
File diff suppressed because one or more lines are too long