vault backup: 2023-07-28 15:51:08
This commit is contained in:
parent
4d99c6a327
commit
9d0b0540e6
15 changed files with 5212 additions and 101 deletions
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-excalidraw-plugin",
|
"id": "obsidian-excalidraw-plugin",
|
||||||
"name": "Excalidraw",
|
"name": "Excalidraw",
|
||||||
"version": "1.9.8",
|
"version": "1.9.12",
|
||||||
"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",
|
||||||
|
|
|
@ -346,11 +346,11 @@ div.excalidraw-draginfo {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.excalidraw__iframe-container .view-header {
|
.excalidraw__embeddable-container .view-header {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.excalidraw__iframe-container input {
|
.excalidraw__embeddable-container input {
|
||||||
background: initial;
|
background: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -358,10 +358,22 @@ div.excalidraw-draginfo {
|
||||||
background-color: var(--color-gray-80) !important;
|
background-color: var(--color-gray-80) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.excalidraw .iframe-menu {
|
.excalidraw .embeddable-menu {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
z-index: var(--zIndex-layerUI);
|
z-index: var(--zIndex-layerUI);
|
||||||
|
}
|
||||||
|
|
||||||
|
.excalidraw .welcome-screen-center__logo svg {
|
||||||
|
width: 5rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.excalidraw-image-wrapper {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.excalidraw-image-wrapper img {
|
||||||
|
margin: auto;
|
||||||
}
|
}
|
8
.obsidian/plugins/obsidian-git/main.js
vendored
8
.obsidian/plugins/obsidian-git/main.js
vendored
|
@ -29954,21 +29954,21 @@ var SimpleGit = class extends GitManager {
|
||||||
(err) => this.onError(err)
|
(err) => this.onError(err)
|
||||||
);
|
);
|
||||||
return res.all.map((e) => {
|
return res.all.map((e) => {
|
||||||
var _a2, _b;
|
var _a2, _b, _c, _d;
|
||||||
return {
|
return {
|
||||||
...e,
|
...e,
|
||||||
refs: e.refs.split(", "),
|
refs: e.refs.split(", "),
|
||||||
diff: {
|
diff: {
|
||||||
...e.diff,
|
...e.diff,
|
||||||
files: e.diff.files.map((f) => ({
|
files: (_b = (_a2 = e.diff) == null ? void 0 : _a2.files.map((f) => ({
|
||||||
...f,
|
...f,
|
||||||
status: f.status,
|
status: f.status,
|
||||||
path: f.file,
|
path: f.file,
|
||||||
hash: e.hash,
|
hash: e.hash,
|
||||||
vault_path: this.getVaultPath(f.file)
|
vault_path: this.getVaultPath(f.file)
|
||||||
}))
|
}))) != null ? _b : []
|
||||||
},
|
},
|
||||||
fileName: (_b = (_a2 = e.diff) == null ? void 0 : _a2.files.first()) == null ? void 0 : _b.file
|
fileName: (_d = (_c = e.diff) == null ? void 0 : _c.files.first()) == null ? void 0 : _d.file
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
2
.obsidian/plugins/obsidian-git/manifest.json
vendored
2
.obsidian/plugins/obsidian-git/manifest.json
vendored
|
@ -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.20.5"
|
"version": "2.20.6"
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-view-mode-by-frontmatter",
|
"id": "obsidian-view-mode-by-frontmatter",
|
||||||
"name": "Force note view mode",
|
"name": "Force note view mode",
|
||||||
"version": "1.1.2",
|
"version": "1.2.0",
|
||||||
"minAppVersion": "0.9.12",
|
"minAppVersion": "0.9.12",
|
||||||
"description": "This plugin allows to force the view mode and editing mode for a note by using front matter",
|
"description": "This plugin allows to force the view mode and editing mode for a note by using front matter",
|
||||||
"author": "Benny Wydooghe",
|
"author": "Benny Wydooghe",
|
||||||
|
|
13
.obsidian/plugins/obsidian-view-mode-by-frontmatter/styles.css
vendored
Normal file
13
.obsidian/plugins/obsidian-view-mode-by-frontmatter/styles.css
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
.force-view-mode-div > .setting-item > .setting-item-control {
|
||||||
|
justify-content: space-around;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-view-mode-folder > .setting-item > .setting-item-control > *:first-child {
|
||||||
|
flex: 2 1 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.force-view-mode-folder > .setting-item > .setting-item-control > *:nth-child(2) {
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
3
.obsidian/plugins/omnisearch/data.json
vendored
3
.obsidian/plugins/omnisearch/data.json
vendored
|
@ -5,6 +5,7 @@
|
||||||
"indexedFileTypes": [],
|
"indexedFileTypes": [],
|
||||||
"PDFIndexing": false,
|
"PDFIndexing": false,
|
||||||
"imagesIndexing": false,
|
"imagesIndexing": false,
|
||||||
|
"unsupportedFilesIndexing": "no",
|
||||||
"splitCamelCase": false,
|
"splitCamelCase": false,
|
||||||
"openInNewPane": false,
|
"openInNewPane": false,
|
||||||
"ribbonIcon": true,
|
"ribbonIcon": true,
|
||||||
|
@ -14,11 +15,13 @@
|
||||||
"highlight": true,
|
"highlight": true,
|
||||||
"showPreviousQueryResults": true,
|
"showPreviousQueryResults": true,
|
||||||
"simpleSearch": false,
|
"simpleSearch": false,
|
||||||
|
"fuzziness": "1",
|
||||||
"weightBasename": 3,
|
"weightBasename": 3,
|
||||||
"weightDirectory": 2,
|
"weightDirectory": 2,
|
||||||
"weightH1": 1.5,
|
"weightH1": 1.5,
|
||||||
"weightH2": 1.3,
|
"weightH2": 1.3,
|
||||||
"weightH3": 1.1,
|
"weightH3": 1.1,
|
||||||
|
"weightUnmarkedTags": 1.1,
|
||||||
"welcomeMessage": "1.10.1",
|
"welcomeMessage": "1.10.1",
|
||||||
"verboseLogging": false
|
"verboseLogging": false
|
||||||
}
|
}
|
70
.obsidian/plugins/omnisearch/main.js
vendored
70
.obsidian/plugins/omnisearch/main.js
vendored
File diff suppressed because one or more lines are too long
4
.obsidian/plugins/omnisearch/manifest.json
vendored
4
.obsidian/plugins/omnisearch/manifest.json
vendored
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"id": "omnisearch",
|
"id": "omnisearch",
|
||||||
"name": "Omnisearch",
|
"name": "Omnisearch",
|
||||||
"version": "1.14.2",
|
"version": "1.15.2",
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.3.0",
|
||||||
"description": "A search engine that just works",
|
"description": "A search engine that just works",
|
||||||
"author": "Simon Cambier",
|
"author": "Simon Cambier",
|
||||||
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
|
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "settings-search",
|
"id": "settings-search",
|
||||||
"name": "Settings Search",
|
"name": "Settings Search",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"minAppVersion": "0.12.17",
|
"minAppVersion": "0.12.17",
|
||||||
"author": "Jeremy Valentine",
|
"author": "Jeremy Valentine",
|
||||||
"description": "Globally search settings in Obsidian.md",
|
"description": "Globally search settings in Obsidian.md",
|
||||||
|
|
5039
.obsidian/plugins/table-editor-obsidian/main.js
vendored
5039
.obsidian/plugins/table-editor-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,12 @@
|
||||||
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.0.0",
|
||||||
"version": "0.18.1",
|
"version": "0.19.1",
|
||||||
"js": "main.js",
|
"js": "main.js",
|
||||||
|
"fundingUrl": {
|
||||||
|
"Github Sponsor": "https://github.com/sponsors/tgrosinger",
|
||||||
|
"Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
|
||||||
|
"Paypal": "https://paypal.me/tgrosinger"
|
||||||
|
},
|
||||||
"donation": "https://buymeacoffee.com/tgrosinger"
|
"donation": "https://buymeacoffee.com/tgrosinger"
|
||||||
}
|
}
|
4
.obsidian/workspace.json
vendored
4
.obsidian/workspace.json
vendored
|
@ -161,9 +161,9 @@
|
||||||
"daily-notes:Open today's daily note": false,
|
"daily-notes:Open today's daily note": false,
|
||||||
"templates:Insert template": false,
|
"templates:Insert template": false,
|
||||||
"command-palette:Open command palette": false,
|
"command-palette:Open command palette": false,
|
||||||
"table-editor-obsidian:Advanced Tables Toolbar": false,
|
|
||||||
"omnisearch:Omnisearch": false,
|
"omnisearch:Omnisearch": false,
|
||||||
"obsidian-excalidraw-plugin:Create new drawing": false
|
"obsidian-excalidraw-plugin:Create new drawing": false,
|
||||||
|
"table-editor-obsidian:Advanced Tables Toolbar": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "d3ce90df51bd874b",
|
"active": "d3ce90df51bd874b",
|
||||||
|
|
Loading…
Reference in a new issue