MacBookPro.lan 2026-4-24:22:8:20
This commit is contained in:
+3
-1
@@ -240,7 +240,9 @@
|
||||
"prevs"
|
||||
],
|
||||
"lock_view": false,
|
||||
"lock_path": "désintégration audioactive.md"
|
||||
"lock_path": "désintégration audioactive.md",
|
||||
"custom_sort_fields": false,
|
||||
"custom_sort_field_labels": []
|
||||
},
|
||||
"tree": {
|
||||
"collapse": false,
|
||||
|
||||
+53
-53
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "breadcrumbs",
|
||||
"name": "Breadcrumbs",
|
||||
"version": "4.4.4",
|
||||
"version": "4.5.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Add structured hierarchies to your notes",
|
||||
"author": "SkepticMystic",
|
||||
|
||||
+3
-3
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.5",
|
||||
"version": "4.0.6",
|
||||
"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",
|
||||
|
||||
+413
-20
@@ -681,34 +681,105 @@ body:has(.workspace-leaf.mod-active .cm-ai-loading, .workspace-leaf.mod-active .
|
||||
.editing-toolbar-ai-inline-prompt {
|
||||
position: fixed;
|
||||
z-index: 1001;
|
||||
width: min(360px, calc(100vw - 24px));
|
||||
padding: 10px;
|
||||
border: 1px solid var(--background-modifier-border-hover);
|
||||
border-radius: 14px;
|
||||
width: min(420px, calc(100vw - 24px));
|
||||
max-width: 90vw;
|
||||
padding: 8px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 12px;
|
||||
background: var(--background-primary);
|
||||
box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
||||
backdrop-filter: blur(8px);
|
||||
overflow: hidden;
|
||||
}
|
||||
.editing-toolbar-ai-inline-prompt button
|
||||
{
|
||||
box-shadow: none!important;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.editing-toolbar-ai-inline-prompt {
|
||||
width: calc(100vw - 16px);
|
||||
max-width: calc(100vw - 16px);
|
||||
}
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
@media (max-width: 480px) {
|
||||
.editing-toolbar-ai-inline-prompt {
|
||||
width: calc(100vw - 8px);
|
||||
max-width: calc(100vw - 8px);
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.editing-toolbar-ai-inline-prompt-header {
|
||||
padding: 10px 12px;
|
||||
min-height: 44px;
|
||||
}
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-drag-handle {
|
||||
width: 4px;
|
||||
height: 20px;
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
var(--background-modifier-border) 0%,
|
||||
var(--background-modifier-border) 33%,
|
||||
transparent 33%,
|
||||
transparent 66%,
|
||||
var(--background-modifier-border) 66%,
|
||||
var(--background-modifier-border) 100%
|
||||
);
|
||||
cursor: grab;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.editing-toolbar-ai-inline-prompt-drag-handle {
|
||||
width: 6px;
|
||||
height: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-drag-handle:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-title {
|
||||
flex: 1;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
color: var(--text-normal);
|
||||
cursor: grab;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-title:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.editing-toolbar-ai-inline-prompt-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
user-select: none;
|
||||
}
|
||||
.editing-toolbar-ai-inline-prompt-close {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
@@ -722,30 +793,352 @@ body:has(.workspace-leaf.mod-active .cm-ai-loading, .workspace-leaf.mod-active .
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-settings {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-settings:hover {
|
||||
background: var(--background-modifier-hover);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-input-wrapper {
|
||||
position: relative;
|
||||
margin: 8px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-input {
|
||||
width: 100%;
|
||||
min-height: 72px;
|
||||
min-height: 56px;
|
||||
max-height: 240px;
|
||||
resize: none;
|
||||
padding: 10px 12px;
|
||||
padding: 8px 42px 8px 10px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 10px;
|
||||
border-radius: 8px;
|
||||
background: var(--background-secondary);
|
||||
color: var(--text-normal);
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
overflow-y: hidden;
|
||||
transition: height 0.1s ease;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.editing-toolbar-ai-inline-prompt-input {
|
||||
font-size: 14px;
|
||||
min-height: 48px;
|
||||
padding: 10px 32px 10px 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.editing-toolbar-ai-inline-prompt-input {
|
||||
font-size: 16px;
|
||||
min-height: 44px;
|
||||
}
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-input:focus {
|
||||
outline: none;
|
||||
border-color: var(--interactive-accent);
|
||||
box-shadow: 0 0 0 1px color-mix(in srgb, var(--interactive-accent) 28%, transparent);
|
||||
box-shadow: 0 0 0 2px color-mix(in srgb, var(--interactive-accent) 15%, transparent);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-input::placeholder {
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-btn {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 6px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
background: transparent;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-btn:hover {
|
||||
background: var(--background-modifier-hover);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-dropdown {
|
||||
position: absolute;
|
||||
top: 32px;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
max-height: 180px;
|
||||
overflow-y: auto;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 6px;
|
||||
background: var(--background-primary);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-item {
|
||||
padding: 6px 10px;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
color: var(--text-normal);
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
transition: background 0.1s ease;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-item:hover {
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-history-empty {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 11px;
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-templates {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-template-btn {
|
||||
box-shadow: none !important;
|
||||
padding: 0px 6px;
|
||||
height: 22px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 8px;
|
||||
background: var(--background-secondary);
|
||||
color: var(--text-muted);
|
||||
font-size: 10px;
|
||||
cursor: pointer;
|
||||
transition: all 0.12s ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-template-btn:hover {
|
||||
background: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
border-color: var(--interactive-accent);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap:15px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-send-btn {
|
||||
position: absolute;
|
||||
bottom: 6px;
|
||||
right: 6px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
background: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
cursor: pointer;
|
||||
transition: all 0.15s ease;
|
||||
flex-shrink: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.editing-toolbar-ai-inline-prompt-send-btn {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-send-btn svg {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.editing-toolbar-ai-inline-prompt-send-btn {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-send-btn svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-send-btn:hover:not(:disabled) {
|
||||
background: var(--interactive-accent-hover);
|
||||
transform: scale(1.08);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-send-btn:disabled {
|
||||
opacity: 0.3;
|
||||
cursor: not-allowed;
|
||||
background: var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-hint {
|
||||
margin-top: 8px;
|
||||
font-size: 11px;
|
||||
|
||||
font-size: 10px;
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context {
|
||||
margin-bottom: 8px;
|
||||
padding: 8px;
|
||||
background: var(--background-secondary);
|
||||
border-radius: 6px;
|
||||
max-height: 120px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-stats {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 6px 10px;
|
||||
margin-bottom: 8px;
|
||||
background: var(--background-modifier-border);
|
||||
border-radius: 6px;
|
||||
font-size: 10px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-stats-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-stats-item svg {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 4px 6px;
|
||||
margin-bottom: 4px;
|
||||
background: var(--background-primary);
|
||||
border-radius: 4px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-label {
|
||||
color: var(--text-accent);
|
||||
font-weight: 500;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-preview {
|
||||
color: var(--text-muted);
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-remove {
|
||||
padding: 2px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
border-radius: 3px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
box-shadow: none!important;
|
||||
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-context-remove:hover {
|
||||
background: var(--background-modifier-error);
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-mention-dropdown {
|
||||
|
||||
bottom: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
margin-bottom: 4px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 6px;
|
||||
background: var(--background-primary);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-mention-item {
|
||||
padding: 8px 12px;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
color: var(--text-normal);
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
transition: background 0.1s ease;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-mention-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-mention-item:hover,
|
||||
.editing-toolbar-ai-inline-prompt-mention-item.selected {
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-mention-icon {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
margin-right: 6px;
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.editing-toolbar-ai-inline-prompt-actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
|
||||
+2
-2
@@ -116,7 +116,7 @@
|
||||
"source": "none",
|
||||
"file": null
|
||||
},
|
||||
"dualPane": true,
|
||||
"dualPane": false,
|
||||
"dualPaneOrientation": "horizontal",
|
||||
"showTooltips": false,
|
||||
"showTooltipPath": true,
|
||||
@@ -503,7 +503,7 @@
|
||||
"#404040",
|
||||
"#404040"
|
||||
],
|
||||
"lastShownVersion": "2.5.7",
|
||||
"lastShownVersion": "2.5.8",
|
||||
"rootFolderOrder": [
|
||||
"sources",
|
||||
"attachments",
|
||||
|
||||
+78
-78
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "notebook-navigator",
|
||||
"name": "Notebook Navigator",
|
||||
"version": "2.5.7",
|
||||
"version": "2.5.8",
|
||||
"minAppVersion": "1.8.7",
|
||||
"description": "Replace the default file explorer with a clean two-pane interface featuring folder tree, tag browsing, file previews, keyboard navigation, drag-and-drop, pinned notes, and customizable display options.",
|
||||
"author": "Johan Sanneblad",
|
||||
|
||||
+30
-51
@@ -2715,6 +2715,20 @@ body {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.nn-navigation-calendar-month.has-inline-help:not(.has-inline-month-nav) .nn-navigation-calendar-inline-help {
|
||||
position: static;
|
||||
right: auto;
|
||||
top: auto;
|
||||
transform: none;
|
||||
width: 0 !important;
|
||||
min-width: 0 !important;
|
||||
height: 20px !important;
|
||||
margin-left: 0;
|
||||
padding: 0 !important;
|
||||
overflow: hidden;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.nn-navigation-calendar-month.has-inline-month-nav .nn-navigation-calendar-inline-month-center .nn-navigation-calendar-period-month {
|
||||
padding-inline: 1px;
|
||||
}
|
||||
@@ -3286,6 +3300,13 @@ body {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.nn-navigation-calendar-month.has-inline-help:not(.has-inline-month-nav):hover .nn-navigation-calendar-inline-help,
|
||||
.nn-navigation-calendar-month.has-inline-help:not(.has-inline-month-nav):focus-within .nn-navigation-calendar-inline-help {
|
||||
width: 20px !important;
|
||||
min-width: 20px !important;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
:is(.nn-navigation-pane, .nn-list-pane, .nn-single-pane-calendar) .nn-navigation-calendar-header .nn-navigation-calendar-help-inline {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
@@ -3501,6 +3522,8 @@ body {
|
||||
|
||||
.nn-calendar-right-sidebar .nn-navigation-calendar {
|
||||
--nn-calendar-header-chip-bg: var(--nn-calendar-right-sidebar-bg);
|
||||
--nn-calendar-header-font-size: 13px;
|
||||
--nn-calendar-today-font-size: 13px;
|
||||
}
|
||||
|
||||
.nn-calendar-right-sidebar .nn-navigation-calendar-year-grid {
|
||||
@@ -3512,34 +3535,6 @@ body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* ========================================================================
|
||||
Header mode: compact yearly (right sidebar)
|
||||
======================================================================== */
|
||||
|
||||
.nn-calendar-right-sidebar .nn-navigation-calendar[data-compact-header='true'] .nn-navigation-calendar-header {
|
||||
height: auto;
|
||||
min-height: var(--nn-calendar-header-row-height);
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.nn-calendar-right-sidebar .nn-navigation-calendar[data-compact-header='true'] .nn-navigation-calendar-month {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
font-size: calc(var(--nn-calendar-header-font-size) + 2px);
|
||||
}
|
||||
|
||||
.nn-calendar-right-sidebar
|
||||
.nn-navigation-calendar[data-compact-header='true']
|
||||
.nn-navigation-calendar-month
|
||||
.nn-navigation-calendar-period-month {
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
.is-mobile .nn-calendar-right-sidebar {
|
||||
--nn-calendar-right-sidebar-bg: var(--mobile-sidebar-background);
|
||||
}
|
||||
@@ -5394,22 +5389,23 @@ body.nn-resizing {
|
||||
/* Version container */
|
||||
.nn-whats-new-version {
|
||||
margin-bottom: 16px;
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
/* Version container - last child no border */
|
||||
/* Version container - last child no margin */
|
||||
.nn-whats-new-version:last-child {
|
||||
border-bottom: none;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Version header */
|
||||
.nn-whats-new-version h3 {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: var(--nn-theme-foreground);
|
||||
background: var(--background-secondary);
|
||||
margin: 0 0 4px 0;
|
||||
padding: 6px 10px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
/* Feature list */
|
||||
@@ -5440,14 +5436,6 @@ body.nn-resizing {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
/* Version date */
|
||||
.nn-whats-new-date {
|
||||
color: var(--nn-theme-foreground-muted);
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* Release banner image */
|
||||
.nn-whats-new-banner {
|
||||
position: relative;
|
||||
@@ -5628,14 +5616,10 @@ body.nn-resizing {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* Version header and date sizes on mobile */
|
||||
/* Version header size on mobile */
|
||||
.nn-whats-new-version h3 {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.nn-whats-new-date {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Obsidian mobile app adjustments */
|
||||
@@ -5657,11 +5641,6 @@ body.nn-resizing {
|
||||
.nn-whats-new-version h3 {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
/* Date line */
|
||||
.nn-whats-new-date {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
/* Source: src/styles/sections/modal-icon-picker.css */
|
||||
|
||||
|
||||
+1
-1
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.1"
|
||||
"version": "2.38.2"
|
||||
}
|
||||
|
||||
+12
-12
File diff suppressed because one or more lines are too long
+3
-3
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"id": "obsidian-hover-editor",
|
||||
"name": "Hover Editor",
|
||||
"version": "0.11.28",
|
||||
"minAppVersion": "1.5.8",
|
||||
"description": "Transform the Page Preview hover popover into a fully working editor instance",
|
||||
"version": "0.11.29",
|
||||
"minAppVersion": "1.10.6",
|
||||
"description": "Transform the Page Preview hover popover into a floating tab",
|
||||
"author": "NothingIsLost",
|
||||
"authorUrl": "https://github.com/nothingislost",
|
||||
"isDesktopOnly": false
|
||||
|
||||
+36
-39
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-latex-suite",
|
||||
"name": "Latex Suite",
|
||||
"version": "1.11.3",
|
||||
"version": "1.11.5",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Make typesetting LaTeX math as fast as handwriting through snippets, text expansion, and editor enhancements",
|
||||
"author": "artisticat",
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-markmind",
|
||||
"name": "Markmind",
|
||||
"version": "3.4.7",
|
||||
"version": "3.4.8",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "This is a mindmap , outline tool for obsidian.",
|
||||
"author": "Mark",
|
||||
|
||||
+98
-161
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-meta-bind-plugin",
|
||||
"name": "Meta Bind",
|
||||
"version": "1.4.6",
|
||||
"version": "1.4.8",
|
||||
"minAppVersion": "1.4.0",
|
||||
"description": "Make your notes interactive with inline input fields, metadata displays, and buttons.",
|
||||
"author": "Moritz Jung",
|
||||
|
||||
+21
-940
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@
|
||||
{
|
||||
"id": 1,
|
||||
"name": "Ma bibliothèque",
|
||||
"lastUpdate": 1776883694827
|
||||
"lastUpdate": 1777061284642
|
||||
}
|
||||
],
|
||||
"renderCitations": true,
|
||||
|
||||
+28
-20
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "2.19.0",
|
||||
"version": "2.19.3",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "1.12.2",
|
||||
"author": "SilentVoid",
|
||||
|
||||
+18
-2
@@ -1797,6 +1797,7 @@ var DEFAULT_SETTINGS = {
|
||||
excludeInternalLinkPathGlobPatterns: [],
|
||||
excludeSelfInternalLink: false,
|
||||
excludeExistingInActiveFileInternalLinks: false,
|
||||
excludeUnresolvedInternalLinks: false,
|
||||
updateInternalLinksOnSave: true,
|
||||
insertAliasTransformedFromDisplayedInternalLink: {
|
||||
enabled: false,
|
||||
@@ -2704,6 +2705,20 @@ var VariousComplementsSettingTab = class extends import_obsidian3.PluginSettingT
|
||||
});
|
||||
}
|
||||
);
|
||||
addFilterableSetting(
|
||||
"Exclude unresolved internal links",
|
||||
"Exclude internal links that point to non-existing files (phantom links) from the suggestions.",
|
||||
(setting) => {
|
||||
setting.addToggle((tc) => {
|
||||
tc.setValue(
|
||||
this.plugin.settings.excludeUnresolvedInternalLinks
|
||||
).onChange(async (value) => {
|
||||
this.plugin.settings.excludeUnresolvedInternalLinks = value;
|
||||
await this.plugin.saveSettings({ internalLink: true });
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
addFilterableSetting(
|
||||
"Insert an alias that is transformed from the displayed internal link",
|
||||
null,
|
||||
@@ -5033,7 +5048,7 @@ var InternalLinkWordProvider = class {
|
||||
];
|
||||
}
|
||||
});
|
||||
const unresolvedInternalLinkWords = this.appHelper.searchPhantomLinks().map(({ path: path2, link }) => {
|
||||
const unresolvedInternalLinkWords = option.excludeUnresolvedLinks ? [] : this.appHelper.searchPhantomLinks().map(({ path: path2, link }) => {
|
||||
return {
|
||||
value: link,
|
||||
type: "internalLink",
|
||||
@@ -7804,7 +7819,8 @@ var AutoCompleteSuggest = class _AutoCompleteSuggest extends import_obsidian7.Ed
|
||||
makeSynonymAboutEmoji: this.settings.matchingWithoutEmoji,
|
||||
makeSynonymAboutAccentsDiacritics: this.settings.treatAccentDiacriticsAsAlphabeticCharacters,
|
||||
frontMatterKeyForExclusion: this.settings.frontMatterKeyForExclusionInternalLink,
|
||||
tagsForExclusion: this.settings.tagsForExclusionInternalLink
|
||||
tagsForExclusion: this.settings.tagsForExclusionInternalLink,
|
||||
excludeUnresolvedLinks: this.settings.excludeUnresolvedInternalLinks
|
||||
});
|
||||
this.statusBar.setInternalLinkIndexed(
|
||||
this.internalLinkWordProvider.wordCount
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "various-complements",
|
||||
"name": "Various Complements",
|
||||
"version": "11.1.0",
|
||||
"version": "11.2.0",
|
||||
"minAppVersion": "1.11.4",
|
||||
"description": "This plugin enables you to complete words like the auto-completion of IDE",
|
||||
"author": "tadashi-aikawa",
|
||||
|
||||
Reference in New Issue
Block a user