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",
"name": "Dataview",
"version": "0.5.55",
"version": "0.5.56",
"minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.",
"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",
"name": "Excalidraw",
"version": "1.8.26",
"version": "1.9.2",
"minAppVersion": "1.1.6",
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian",

View file

@ -340,4 +340,8 @@ div.excalidraw-draginfo {
background: var(--color-base-40);
display: block;
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,
"fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js",
"version": "2.19.1"
"version": "2.20.0"
}

View file

@ -484,4 +484,24 @@
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
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,
"listLines": false,
"listLineAction": "toggle-folding",
"dndExperiment": false,
"previousRelease": "4.6.1"
"dnd": true,
"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",
"name": "Outliner",
"version": "4.6.7",
"version": "4.7.1",
"minAppVersion": "1.1.16",
"description": "Work with your lists like in Workflowy or RoamResearch.",
"author": "Viacheslav Slinko",

View file

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

View file

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

File diff suppressed because one or more lines are too long