Update plugins

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2023-05-23 11:21:20 +05:30
parent 5eb96ecbaa
commit 19c9718f91
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5
15 changed files with 9748 additions and 3136 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"id": "dataview", "id": "dataview",
"name": "Dataview", "name": "Dataview",
"version": "0.5.55", "version": "0.5.56",
"minAppVersion": "0.13.11", "minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.", "description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>", "author": "Michael Brenan <blacksmithgu@gmail.com>",

View file

@ -401,5 +401,11 @@
} }
} }
], ],
"numberOfCustomPens": 0 "numberOfCustomPens": 0,
"pdfScale": 4,
"pdfBorderBox": true,
"pdfGapSize": 20,
"pdfLockAfterImport": true,
"pdfNumColumns": 1,
"pdfImportScale": 0.3
} }

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"id": "obsidian-excalidraw-plugin", "id": "obsidian-excalidraw-plugin",
"name": "Excalidraw", "name": "Excalidraw",
"version": "1.8.26", "version": "1.9.2",
"minAppVersion": "1.1.6", "minAppVersion": "1.1.6",
"description": "An Obsidian plugin to edit and view Excalidraw drawings", "description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian", "author": "Zsolt Viczian",

View file

@ -341,3 +341,7 @@ div.excalidraw-draginfo {
display: block; display: block;
border-radius: 5px; border-radius: 5px;
} }
.excalidraw [data-radix-popper-content-wrapper] {
position: absolute !important;
}

File diff suppressed because it is too large Load diff

View file

@ -5,5 +5,5 @@
"isDesktopOnly": false, "isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent", "fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js", "js": "main.js",
"version": "2.19.1" "version": "2.20.0"
} }

View file

@ -485,3 +485,23 @@
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag { .workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0; border: 1px solid #3572b0;
} }
/* ====================== 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-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div, .line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}

View file

@ -7,6 +7,7 @@
"selectAll": true, "selectAll": true,
"listLines": false, "listLines": false,
"listLineAction": "toggle-folding", "listLineAction": "toggle-folding",
"dndExperiment": false, "dnd": true,
"previousRelease": "4.6.1" "previousRelease": "4.7.1",
"dndExperiment": false
} }

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"id": "obsidian-outliner", "id": "obsidian-outliner",
"name": "Outliner", "name": "Outliner",
"version": "4.6.7", "version": "4.7.1",
"minAppVersion": "1.1.16", "minAppVersion": "1.1.16",
"description": "Work with your lists like in Workflowy or RoamResearch.", "description": "Work with your lists like in Workflowy or RoamResearch.",
"author": "Viacheslav Slinko", "author": "Viacheslav Slinko",

View file

@ -88,12 +88,9 @@
pointer-events: none; pointer-events: none;
} }
.outliner-plugin-drop-zone-before { .outliner-plugin-drop-zone-padding {
margin-top: -8px; position: absolute;
} height: 4px;
.outliner-plugin-drop-zone-after {
margin-top: -1px;
} }
body.outliner-plugin-dnd:not(.outliner-plugin-dragging) .cm-formatting-list, body.outliner-plugin-dnd:not(.outliner-plugin-dragging) .cm-formatting-list,

View file

@ -1,7 +1,7 @@
{ {
"name": "Prism", "name": "Prism",
"version": "3.2.4", "version": "3.2.6",
"minAppVersion": "1.2.0", "minAppVersion": "1.3.1",
"author": "Damian Korcz", "author": "Damian Korcz",
"authorUrl": "https://github.com/damiankorcz" "authorUrl": "https://github.com/damiankorcz"
} }

File diff suppressed because one or more lines are too long