1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
33a3d498c3
项目:插件更新 2024-08-28 15:15:04 +08:00
4be701941c
Linux:无法启动排查指南 2024-08-28 15:14:44 +08:00
13 changed files with 2635 additions and 3186 deletions

View File

@ -46,6 +46,6 @@
"repelStrength": 20,
"linkStrength": 0.75,
"linkDistance": 400,
"scale": 0.06576306354918951,
"scale": 0.4993882638266578,
"close": true
}

File diff suppressed because one or more lines are too long

View File

@ -1,9 +1,10 @@
{
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03",
"id": "obsidian-git",
"name": "Git",
"description": "Backup your vault with Git.",
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js",
"version": "2.24.3"
"version": "2.25.0"
}

View File

@ -77,6 +77,10 @@
height: auto;
}
.is-active .git-tools .buttons > * {
color: var(--nav-item-color-active);
}
.git-author {
color: var(--text-accent);
}
@ -550,7 +554,7 @@
white-space: pre; /* Keep spaces and do not collapse them. */
}
@media(max-width:800px){
@media (max-width: 800px) {
/* hide git blame gutter not to superpose text */
.cm-gutterElement.obs-git-blame-gutter {
display: none;

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,11 @@
{
"id": "obsidian-hider",
"name": "Hider",
"version": "1.4.0",
"minAppVersion": "1.6.0",
"description": "Hide UI elements such as tooltips, status, titlebar and more",
"author": "@kepano",
"authorUrl": "https://www.twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano",
"isDesktopOnly": false
}
{
"id": "obsidian-hider",
"name": "Hider",
"version": "1.5.1",
"minAppVersion": "1.6.0",
"description": "Hide UI elements such as tooltips, status, titlebar and more",
"author": "@kepano",
"authorUrl": "https://www.twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano",
"isDesktopOnly": false
}

View File

@ -1,59 +1,66 @@
/* Hides vault name */
.hider-vault .workspace-sidedock-vault-profile,
body.hider-vault:not(.is-mobile) .workspace-split.mod-left-split .workspace-sidedock-vault-profile {
display:none;
display:none;
}
/* Hide tabs */
.hider-tabs .mod-root .workspace-tabs .workspace-tab-header-container {
display: none;
display: none;
}
.hider-tabs .mod-top-left-space .view-header {
padding-left: var(--frame-left-space);
}
/* Hide sidebar buttons */
.hider-sidebar-buttons .sidebar-toggle-button.mod-right,
.hider-sidebar-buttons .sidebar-toggle-button.mod-left {
display: none;
display: none;
}
.hider-sidebar-buttons.mod-macos.is-hidden-frameless:not(.is-popout-window) .workspace .workspace-tabs.mod-top-right-space .workspace-tab-header-container {
padding-right: 4px;
padding-right: 4px;
}
.hider-sidebar-buttons.mod-macos {
--frame-left-space: 60px;
}
/* Hide meta */
.hider-meta .markdown-reading-view .metadata-container {
display:none;
display:none;
}
/* Hide scrollbars */
.hider-scroll ::-webkit-scrollbar {
display:none;
display:none;
}
/* Hide status */
.hider-status .status-bar {
display:none;
display:none;
}
/* Hide tooltips */
.hider-tooltips .tooltip {
display:none;
display:none;
}
/* Hide search suggestions */
.hider-search-suggestions .suggestion-container.mod-search-suggestion {
display: none;
display: none;
}
/* Hide search count flair */
.hider-search-counts .tree-item-flair:not(.tag-pane-tag-count) {
display:none;
display:none;
}
/* Hide instructions */
.hider-instructions .prompt-instructions {
display:none;
display:none;
}
/* Hide file nav header */
.hider-file-nav-header .workspace-leaf-content[data-type=file-explorer] .nav-header {
display: none;
display: none;
}

View File

@ -161,7 +161,7 @@
"enabled": true
},
"empty-line-around-code-fences": {
"enabled": true
"enabled": false
},
"empty-line-around-math-blocks": {
"enabled": true
@ -205,7 +205,9 @@
"enabled": false
},
"space-between-chinese-japanese-or-korean-and-english-or-numbers": {
"enabled": true
"enabled": true,
"english-symbols-punctuation-before": "-+;:'\"°%$)]",
"english-symbols-punctuation-after": "-+'\"([¥$"
},
"trailing-spaces": {
"enabled": true,
@ -234,6 +236,28 @@
},
"remove-multiple-blank-lines-on-paste": {
"enabled": false
},
"add-blank-line-after-yaml": {
"enabled": false
},
"dedupe-yaml-array-values": {
"enabled": false,
"dedupe-alias-key": true,
"dedupe-tag-key": true,
"dedupe-array-keys": true,
"ignore-keys": ""
},
"sort-yaml-array-values": {
"enabled": false,
"sort-alias-key": true,
"sort-tag-key": true,
"sort-array-keys": true,
"ignore-keys": "",
"sort-order": "Ascending Alphabetical"
},
"default-language-for-code-fences": {
"enabled": false,
"default-language": ""
}
},
"lintOnSave": true,
@ -243,6 +267,7 @@
"displayLintOnFileChangeNotice": false,
"settingsConvertedToConfigKeyValues": true,
"foldersToIgnore": [],
"filesToIgnore": [],
"linterLocale": "system-default",
"logLevel": "ERROR",
"lintCommands": [],

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"id": "obsidian-minimal-settings",
"name": "Minimal Theme Settings",
"version": "8.0.2",
"version": "8.1.1",
"minAppVersion": "1.1.9",
"description": "Change the colors, fonts and features of Minimal Theme.",
"author": "@kepano",

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"id": "obsidian-weread-plugin",
"name": "Weread",
"version": "0.10.0",
"version": "0.11.2",
"minAppVersion": "0.12.0",
"description": "This is obsidian plugin for Tencent weread.",
"author": "hankzhao",

File diff suppressed because it is too large Load Diff