vault backup: 2026-06-08 18:36:09
This commit is contained in:
Vendored
+1
-1
@@ -11,6 +11,6 @@
|
||||
"baseFontSize": 16,
|
||||
"monospaceFontFamily": "FiraCode Nerd Font",
|
||||
"nativeMenus": false,
|
||||
"showRibbon": false,
|
||||
"showRibbon": true,
|
||||
"showViewHeader": false
|
||||
}
|
||||
Vendored
+2
-1
@@ -11,5 +11,6 @@
|
||||
"obsidian-git",
|
||||
"obsidian-excalidraw-plugin",
|
||||
"terminal",
|
||||
"typewriter-mode"
|
||||
"typewriter-mode",
|
||||
"3d-graph-new"
|
||||
]
|
||||
+60
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"savedSettings": [],
|
||||
"temporaryLocalGraphSetting": {
|
||||
"filter": {
|
||||
"searchQuery": "",
|
||||
"showOrphans": true,
|
||||
"showAttachments": false,
|
||||
"depth": 1,
|
||||
"linkType": "both"
|
||||
},
|
||||
"groups": [],
|
||||
"display": {
|
||||
"nodeSize": 3,
|
||||
"linkThickness": 2,
|
||||
"linkDistance": 100,
|
||||
"nodeRepulsion": 2800,
|
||||
"distanceFromFocal": 300,
|
||||
"nodeHoverColor": "#ff0000",
|
||||
"nodeHoverNeighbourColor": "#00ff00",
|
||||
"linkHoverColor": "#0000ff",
|
||||
"showExtension": false,
|
||||
"showFullPath": false,
|
||||
"showCenterCoordinates": true,
|
||||
"showLinkArrow": true,
|
||||
"dontMoveWhenDrag": false,
|
||||
"dagOrientation": "null"
|
||||
}
|
||||
},
|
||||
"temporaryGlobalGraphSetting": {
|
||||
"filter": {
|
||||
"searchQuery": "",
|
||||
"showOrphans": true,
|
||||
"showAttachments": false
|
||||
},
|
||||
"groups": [],
|
||||
"display": {
|
||||
"nodeSize": 3,
|
||||
"linkThickness": 2.2,
|
||||
"linkDistance": 72,
|
||||
"nodeRepulsion": 2900,
|
||||
"distanceFromFocal": 170,
|
||||
"nodeHoverColor": "#ff0000",
|
||||
"nodeHoverNeighbourColor": "#00ff00",
|
||||
"linkHoverColor": "#0000ff",
|
||||
"showExtension": false,
|
||||
"showFullPath": false,
|
||||
"showCenterCoordinates": true,
|
||||
"showLinkArrow": true,
|
||||
"dontMoveWhenDrag": false,
|
||||
"dagOrientation": "null"
|
||||
}
|
||||
},
|
||||
"pluginSetting": {
|
||||
"maxNodeNumber": 1000,
|
||||
"searchEngine": "default",
|
||||
"rightClickToPan": false,
|
||||
"commandLeftClickNode": "openNodeInNewTab",
|
||||
"commandRightClickNode": "focusNode"
|
||||
}
|
||||
}
|
||||
+67207
File diff suppressed because one or more lines are too long
+13
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"id": "3d-graph-new",
|
||||
"name": "3D Graph New",
|
||||
"version": "1.1.11",
|
||||
"description": "A 3D Graph for Obsidian",
|
||||
"author": "Hananoshika Yomaru",
|
||||
"authorUrl": "https://github.com/HananoshikaYomaru",
|
||||
"fundingUrl": {
|
||||
"buymeacoffee": "https://www.buymeacoffee.com/yomaru",
|
||||
"Github Sponsor": "https://github.com/sponsors/HananoshikaYomaru"
|
||||
},
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
.graph-3d-view .tree-item.is-collapsed > .tree-item-children {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.graph-3d-view {
|
||||
padding: 0 !important;
|
||||
position: relative;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls.is-collapsed > .graph-control-section {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.graph-control-section .tree-item-inner {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-control-section.is-collapsed .tree-item-inner::before {
|
||||
content: "▶";
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-control-section:not(.is-collapsed) .tree-item-inner::before {
|
||||
content: "▼";
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls:hover > .control-buttons {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls > .control-buttons:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls > .control-buttons {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.graph-3d-view .hidden {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.graph-3d-view .control-buttons {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.graph-3d-view .control-buttons > * {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-settings-view > .clickable-icon {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
}
|
||||
|
||||
.graph-3d-view .node-label {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.graph-3d-view .scene-nav-info {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.mod-search-input {
|
||||
width: 100%;
|
||||
padding: 0.5em;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 0.25em;
|
||||
background-color: var(--background-color);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls:not(.is-close) {
|
||||
max-height: calc(90% - var(--size-4-4));
|
||||
}
|
||||
|
||||
.workspace-leaf-content:has(.search-result-container.is-loading) .graph-controls {
|
||||
/* border color purple */
|
||||
border-color: var(--color-purple);
|
||||
|
||||
/* create the animation */
|
||||
animation: color-oscillation 2s ease infinite;
|
||||
}
|
||||
|
||||
@keyframes color-oscillation {
|
||||
0% {
|
||||
border: 1px solid var(--color-purple);
|
||||
}
|
||||
50% {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
100% {
|
||||
border: 1px solid var(--color-purple);
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-leaf-content:has(.search-result-container.is-loading) .search-input-container input {
|
||||
animation: outline-gradient-animation 2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes outline-gradient-animation {
|
||||
0% {
|
||||
box-shadow: 0 2px 0 var(--color-purple);
|
||||
}
|
||||
50% {
|
||||
box-shadow: 0 2px 0 var(--background-modifier-border);
|
||||
}
|
||||
100% {
|
||||
box-shadow: 0 2px 0 var(--color-purple);
|
||||
}
|
||||
}
|
||||
|
||||
/* section: setting tab */
|
||||
.graph-3d-setting-tab {
|
||||
> h2 {
|
||||
color: var(--color-purple);
|
||||
font-size: var(--h2-size);
|
||||
}
|
||||
|
||||
> h2 + .setting-item {
|
||||
border-top: 0px;
|
||||
}
|
||||
}
|
||||
+3
-109
@@ -1,13 +1,8 @@
|
||||
{
|
||||
"lastVersion": "4.0.8",
|
||||
"lastVersion": "3.2.7",
|
||||
"aestheticStyle": "glass",
|
||||
"positionStyle": "top",
|
||||
"menuCommands": [
|
||||
{
|
||||
"id": "editing-toolbar:ai-tools",
|
||||
"name": "AI Tools",
|
||||
"icon": "lucide-sparkles"
|
||||
},
|
||||
{
|
||||
"id": "editing-toolbar:editor-undo",
|
||||
"name": "Undo editor",
|
||||
@@ -394,19 +389,8 @@
|
||||
"icon": "exit-fullscreen"
|
||||
}
|
||||
],
|
||||
"followingCommands": [
|
||||
{
|
||||
"id": "editing-toolbar:ai-tools",
|
||||
"name": "AI Tools",
|
||||
"icon": "lucide-sparkles"
|
||||
}
|
||||
],
|
||||
"followingCommands": [],
|
||||
"topCommands": [
|
||||
{
|
||||
"id": "editing-toolbar:ai-tools",
|
||||
"name": "AI Tools",
|
||||
"icon": "lucide-sparkles"
|
||||
},
|
||||
{
|
||||
"id": "editing-toolbar:editor-undo",
|
||||
"name": "Undo editor",
|
||||
@@ -794,11 +778,6 @@
|
||||
}
|
||||
],
|
||||
"fixedCommands": [
|
||||
{
|
||||
"id": "editing-toolbar:ai-tools",
|
||||
"name": "AI Tools",
|
||||
"icon": "lucide-sparkles"
|
||||
},
|
||||
{
|
||||
"id": "editing-toolbar:editor-undo",
|
||||
"name": "Undo editor",
|
||||
@@ -1087,13 +1066,7 @@
|
||||
"icon": "exit-fullscreen"
|
||||
}
|
||||
],
|
||||
"mobileCommands": [
|
||||
{
|
||||
"id": "editing-toolbar:ai-tools",
|
||||
"name": "AI Tools",
|
||||
"icon": "lucide-sparkles"
|
||||
}
|
||||
],
|
||||
"mobileCommands": [],
|
||||
"enableMultipleConfig": true,
|
||||
"enableTopToolbar": true,
|
||||
"enableFollowingToolbar": false,
|
||||
@@ -1154,84 +1127,5 @@
|
||||
"toolbarIconColor": "#E2E8F0",
|
||||
"toolbarIconSize": 18,
|
||||
"useCurrentLineForRegex": false,
|
||||
"ai": {
|
||||
"enabled": true,
|
||||
"consentAccepted": true,
|
||||
"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
|
||||
}
|
||||
+4
-4
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "editing-toolbar",
|
||||
"name": "Editing Toolbar",
|
||||
"version": "4.0.8",
|
||||
"version": "3.2.7",
|
||||
"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",
|
||||
|
||||
+33
-1238
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "metadata-menu",
|
||||
"name": "Metadata Menu",
|
||||
"version": "0.8.12",
|
||||
"version": "0.8.11",
|
||||
"minAppVersion": "1.4.16",
|
||||
"description": "For data quality enthusiasts (and dataview users): manage the metadata of your notes.",
|
||||
"author": "mdelobelle",
|
||||
|
||||
+26
-36
@@ -189,12 +189,6 @@
|
||||
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;
|
||||
}
|
||||
@@ -258,7 +252,7 @@
|
||||
font-style: italic;
|
||||
color: var(--color-accent);
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container .field-container .info {
|
||||
display: none;
|
||||
}
|
||||
@@ -344,7 +338,7 @@
|
||||
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input.datetime {
|
||||
width: 14em;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input {
|
||||
display: none;
|
||||
}
|
||||
@@ -354,6 +348,7 @@
|
||||
margin-right: 0;
|
||||
}
|
||||
.metadata-menu.modal-container .field-container .date-input-wrapper .time-picker {
|
||||
width: 2em;
|
||||
margin-right: 0.5em;
|
||||
font-size: large;
|
||||
}
|
||||
@@ -629,7 +624,7 @@
|
||||
width: auto;
|
||||
min-width: var(--dialog-width);
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container.note-fields-modal .modal {
|
||||
max-width: 97vw;
|
||||
min-width: 0px;
|
||||
@@ -643,7 +638,7 @@
|
||||
grid-template-columns: auto auto 1fr auto;
|
||||
margin-top: 3px;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container.note-fields-modal .note-fields-container {
|
||||
grid-template-columns: 270px 75px;
|
||||
}
|
||||
@@ -655,7 +650,7 @@
|
||||
grid-column: 2;
|
||||
display: flex;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-settings-wrapper .field-settings-spacer {
|
||||
width: 100%;
|
||||
}
|
||||
@@ -663,7 +658,7 @@
|
||||
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper {
|
||||
grid-column: 3;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-value-wrapper {
|
||||
grid-column: 1;
|
||||
margin-bottom: 1em;
|
||||
@@ -673,7 +668,7 @@
|
||||
grid-column: 4;
|
||||
display: flex;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container.note-fields-modal .note-fields-container .field-options-wrapper {
|
||||
grid-column: 2;
|
||||
margin-bottom: 1em;
|
||||
@@ -696,7 +691,7 @@
|
||||
padding-left: 0.6em;
|
||||
border: none;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.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;
|
||||
}
|
||||
@@ -708,7 +703,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: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.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;
|
||||
}
|
||||
@@ -763,12 +758,6 @@
|
||||
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;
|
||||
}
|
||||
@@ -832,7 +821,7 @@
|
||||
font-style: italic;
|
||||
color: var(--color-accent);
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container .field-container .info {
|
||||
display: none;
|
||||
}
|
||||
@@ -918,7 +907,7 @@
|
||||
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input.datetime {
|
||||
width: 14em;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.modal-container .field-container .date-input-wrapper .master-input {
|
||||
display: none;
|
||||
}
|
||||
@@ -928,6 +917,7 @@
|
||||
margin-right: 0;
|
||||
}
|
||||
.metadata-menu.modal-container .field-container .date-input-wrapper .time-picker {
|
||||
width: 2em;
|
||||
margin-right: 0.5em;
|
||||
font-size: large;
|
||||
}
|
||||
@@ -1371,7 +1361,7 @@
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-gap: 10px;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.prompt.media-as-cards .prompt-results {
|
||||
grid-template-columns: auto;
|
||||
}
|
||||
@@ -1539,7 +1529,7 @@
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto 1fr;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-fields .fields-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container {
|
||||
grid-template-columns: auto auto auto;
|
||||
}
|
||||
@@ -1551,7 +1541,7 @@
|
||||
font-weight: 500;
|
||||
display: inline-flex;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-fields .fields-container .name-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .name-container {
|
||||
margin-top: 1em;
|
||||
}
|
||||
@@ -1564,7 +1554,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: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-fields .fields-container .type-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .type-container {
|
||||
margin-top: 1em;
|
||||
}
|
||||
@@ -1585,7 +1575,7 @@
|
||||
grid-column: 3;
|
||||
display: flex;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-fields .fields-container .buttons-container, .metadata-menu.fileclass-codeblock-view .fv-fields .fields-container .buttons-container {
|
||||
margin-top: 1em;
|
||||
}
|
||||
@@ -1593,7 +1583,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: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.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;
|
||||
@@ -1604,7 +1594,7 @@
|
||||
margin-left: 1em;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.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;
|
||||
@@ -1648,7 +1638,7 @@
|
||||
grid-template-columns: auto auto auto 1fr;
|
||||
align-items: center;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-settings .settings-container, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container {
|
||||
grid-template-columns: 1fr auto;
|
||||
}
|
||||
@@ -1659,7 +1649,7 @@
|
||||
white-space: nowrap;
|
||||
font-weight: 500;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-settings .settings-container .label, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .label {
|
||||
margin-top: 1em;
|
||||
}
|
||||
@@ -1668,7 +1658,7 @@
|
||||
grid-column: 3;
|
||||
margin: 0.2em 0em 0.2em 0;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.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;
|
||||
@@ -1729,7 +1719,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: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-settings .settings-container .tooltip-btn, .metadata-menu.fileclass-codeblock-view .fv-settings .settings-container .tooltip-btn {
|
||||
margin-top: 1em;
|
||||
}
|
||||
@@ -1750,7 +1740,7 @@
|
||||
line-break: strict;
|
||||
line-height: normal;
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.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;
|
||||
@@ -1791,7 +1781,7 @@
|
||||
}
|
||||
*/
|
||||
}
|
||||
@media screen and (max-width: 440px) {
|
||||
@media screen and (max-width: 400px) {
|
||||
.metadata-menu.fileclass-view .fv-table .options, .metadata-menu.fileclass-codeblock-view .fv-table .options {
|
||||
max-height: 50em;
|
||||
overflow: scroll;
|
||||
|
||||
+186
-180
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"showTabTitlebarButtons": true,
|
||||
"copyLinkToElemenetAnchorTo100": false,
|
||||
"copyFrameLinkByName": false,
|
||||
"disableDoubleClickTextEditing": false,
|
||||
@@ -34,7 +33,6 @@
|
||||
"displaySVGInPreview": false,
|
||||
"previewImageType": "SVG",
|
||||
"renderingConcurrency": 3,
|
||||
"imageCacheRetentionDays": 30,
|
||||
"allowImageCache": true,
|
||||
"allowImageCacheInScene": true,
|
||||
"displayExportedImageIfAvailable": false,
|
||||
@@ -86,7 +84,7 @@
|
||||
"pageTransclusionCharLimit": 200,
|
||||
"wordWrappingDefault": 0,
|
||||
"removeTransclusionQuoteSigns": true,
|
||||
"oEmbedAllowed": false,
|
||||
"iframelyAllowed": true,
|
||||
"pngExportScale": 1,
|
||||
"exportWithTheme": true,
|
||||
"exportWithBackground": true,
|
||||
@@ -100,7 +98,6 @@
|
||||
"embedType": "excalidraw",
|
||||
"embedMarkdownCommentLinks": true,
|
||||
"embedWikiLink": true,
|
||||
"embedPlaceholderImage": true,
|
||||
"syncExcalidraw": false,
|
||||
"experimentalFileType": false,
|
||||
"experimentalFileTag": "✏️",
|
||||
@@ -112,8 +109,6 @@
|
||||
"addDummyTextElement": false,
|
||||
"zoteroCompatibility": false,
|
||||
"fieldSuggester": true,
|
||||
"enableOnloadScripts": false,
|
||||
"enableCommandLinks": false,
|
||||
"compatibilityMode": false,
|
||||
"drawingOpenCount": 0,
|
||||
"library": "deprecated",
|
||||
@@ -131,7 +126,7 @@
|
||||
"mdBorderColor": "Black",
|
||||
"mdCSS": "",
|
||||
"scriptEngineSettings": {},
|
||||
"previousRelease": "2.23.12",
|
||||
"previousRelease": "2.23.0",
|
||||
"showReleaseNotes": true,
|
||||
"excalidrawMasteryPromoCollapsed": false,
|
||||
"compareManifestToPluginVersion": false,
|
||||
@@ -494,178 +489,15 @@
|
||||
"canvasImmersiveEmbed": true,
|
||||
"startupScriptPath": "",
|
||||
"aiEnabled": true,
|
||||
"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,
|
||||
"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",
|
||||
"modifierKeyConfig": {
|
||||
"Mac": {
|
||||
"LocalFileDragAction": {
|
||||
@@ -955,6 +787,7 @@
|
||||
"longPressDesktop": 500,
|
||||
"longPressMobile": 500,
|
||||
"doubleClickLinkOpenViewMode": true,
|
||||
"isDebugMode": false,
|
||||
"rank": "Bronze",
|
||||
"modifierKeyOverrides": [
|
||||
{
|
||||
@@ -987,5 +820,178 @@
|
||||
"margin": "normal"
|
||||
},
|
||||
"disableContextMenu": false,
|
||||
"isDebugMode": 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
|
||||
}
|
||||
+4
-4
File diff suppressed because one or more lines are too long
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "2.23.12",
|
||||
"minAppVersion": "1.8.7",
|
||||
"version": "2.23.0",
|
||||
"minAppVersion": "1.5.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",
|
||||
"fundingUrl": "https://ko-fi.com/zsolt",
|
||||
"helpUrl": "https://github.com/zsviczian/obsidian-excalidraw-plugin#readme",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
}
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+295
-258
File diff suppressed because one or more lines are too long
+1
-1
@@ -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.3"
|
||||
"version": "2.38.2"
|
||||
}
|
||||
|
||||
+25
-20
@@ -8,6 +8,15 @@
|
||||
}
|
||||
}
|
||||
|
||||
.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);
|
||||
@@ -99,7 +108,7 @@
|
||||
display: flex;
|
||||
}
|
||||
.git-tools .buttons > * {
|
||||
padding: 0;
|
||||
padding: 0 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
@@ -166,7 +175,7 @@ which itself is adapted from the diff2html library with the following original l
|
||||
--git-change-bg: #ffd55840;
|
||||
--git-selected: #3572b0;
|
||||
|
||||
--git-delete: #cc3333;
|
||||
--git-delete: #c33;
|
||||
--git-insert: #399839;
|
||||
--git-change: #d0b44c;
|
||||
--git-move: #3572b0;
|
||||
@@ -529,24 +538,13 @@ 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;
|
||||
border-width: 0px 2px 0.2px 2px;
|
||||
border-style: solid;
|
||||
border-color: var(--background-secondary);
|
||||
background-color: var(--background-secondary);
|
||||
@@ -559,7 +557,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;
|
||||
padding: 0px 6px 0px 6px;
|
||||
white-space: pre; /* Keep spaces and do not collapse them. */
|
||||
}
|
||||
|
||||
@@ -604,11 +602,6 @@ 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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -676,6 +669,18 @@ 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
@@ -278,7 +278,6 @@
|
||||
"lintOnFileChange": false,
|
||||
"displayLintOnFileChangeNotice": false,
|
||||
"settingsConvertedToConfigKeyValues": true,
|
||||
"additionalFileExtensions": [],
|
||||
"foldersToIgnore": [
|
||||
"99 System"
|
||||
],
|
||||
|
||||
+157
-158
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "obsidian-linter",
|
||||
"name": "Linter",
|
||||
"version": "1.31.2",
|
||||
"minAppVersion": "1.12.0",
|
||||
"version": "1.31.0",
|
||||
"minAppVersion": "1.9.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
@@ -6,7 +6,6 @@
|
||||
"ignoreDiacritics": true,
|
||||
"ignoreArabicDiacritics": false,
|
||||
"indexedFileTypes": [],
|
||||
"indexFilesWithoutExtension": false,
|
||||
"displayTitle": "",
|
||||
"PDFIndexing": false,
|
||||
"officeIndexing": false,
|
||||
|
||||
Vendored
+131
-130
File diff suppressed because one or more lines are too long
+3
-3
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"id": "omnisearch",
|
||||
"name": "Omnisearch",
|
||||
"version": "1.29.3",
|
||||
"version": "1.28.0",
|
||||
"minAppVersion": "1.7.2",
|
||||
"description": "A search engine that just works.",
|
||||
"description": "A search engine that just works",
|
||||
"author": "Simon Cambier",
|
||||
"authorUrl": "https://scambier.xyz",
|
||||
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
|
||||
"fundingUrl": {
|
||||
"Github": "https://github.com/sponsors/scambier",
|
||||
"Ko-fi": "https://ko-fi.com/scambier"
|
||||
|
||||
+1
-16
@@ -63,6 +63,7 @@
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
|
||||
.omnisearch-result__image-container {
|
||||
flex-basis: 20%;
|
||||
text-align: end;
|
||||
@@ -132,19 +133,3 @@
|
||||
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;
|
||||
}
|
||||
|
||||
+22
-30
File diff suppressed because one or more lines are too long
+3
-9
@@ -1,17 +1,11 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "2.20.5",
|
||||
"description": "Advanced templating and automation using handlebars-like syntax.",
|
||||
"minAppVersion": "1.12.2",
|
||||
"version": "2.17.0",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "1.5.0",
|
||||
"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
@@ -221,6 +221,6 @@ textarea.templater-prompt-input:focus {
|
||||
}
|
||||
|
||||
li.CodeMirror-hint-active {
|
||||
background: #0088ff;
|
||||
background: #08f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
Vendored
-126
@@ -6,130 +6,7 @@
|
||||
"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",
|
||||
@@ -155,7 +32,6 @@
|
||||
},
|
||||
"linuxExternalDefault": {
|
||||
"args": [],
|
||||
"environment": [],
|
||||
"executable": "xterm",
|
||||
"followTheme": true,
|
||||
"name": "",
|
||||
@@ -176,7 +52,6 @@
|
||||
},
|
||||
"linuxIntegratedDefault": {
|
||||
"args": [],
|
||||
"environment": [],
|
||||
"executable": "/bin/sh",
|
||||
"followTheme": true,
|
||||
"name": "",
|
||||
@@ -201,7 +76,6 @@
|
||||
"args": [
|
||||
"--login"
|
||||
],
|
||||
"environment": [],
|
||||
"executable": "/usr/bin/zsh",
|
||||
"followTheme": true,
|
||||
"name": "ZSH",
|
||||
|
||||
Vendored
+186
-152
File diff suppressed because one or more lines are too long
+1
-1
@@ -5,7 +5,7 @@
|
||||
"Buy Me a Coffee": "https://buymeacoffee.com/polyipseity",
|
||||
"GitHub Sponsors": "https://github.com/sponsors/polyipseity"
|
||||
},
|
||||
"version": "3.26.0",
|
||||
"version": "3.24.0",
|
||||
"authorUrl": "https://github.com/polyipseity",
|
||||
"id": "terminal",
|
||||
"isDesktopOnly": false,
|
||||
|
||||
+34
-67
@@ -1,69 +1,36 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
"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
|
||||
}
|
||||
+13
-9
File diff suppressed because one or more lines are too long
+2
-2
@@ -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.4.0",
|
||||
"minAppVersion": "1.11.0",
|
||||
"version": "1.1.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://www.buymeacoffee.com/davis.riedel",
|
||||
"GitHub Sponsors": "https://github.com/sponsors/davisriedel"
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user