1
0

Compare commits

..

No commits in common. "33a3d498c3c822f71b4c0417a17ab5895cf8e9f4" and "369df38d58f6b94ddfbad413de40c51c2e6c51ce" have entirely different histories.

13 changed files with 3189 additions and 2638 deletions

View File

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

File diff suppressed because one or more lines are too long

View File

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

View File

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

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"id": "obsidian-hider", "id": "obsidian-hider",
"name": "Hider", "name": "Hider",
"version": "1.5.1", "version": "1.4.0",
"minAppVersion": "1.6.0", "minAppVersion": "1.6.0",
"description": "Hide UI elements such as tooltips, status, titlebar and more", "description": "Hide UI elements such as tooltips, status, titlebar and more",
"author": "@kepano", "author": "@kepano",

View File

@ -1,66 +1,59 @@
/* Hides vault name */ /* Hides vault name */
.hider-vault .workspace-sidedock-vault-profile, .hider-vault .workspace-sidedock-vault-profile,
body.hider-vault:not(.is-mobile) .workspace-split.mod-left-split .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 */ /* Hide tabs */
.hider-tabs .mod-root .workspace-tabs .workspace-tab-header-container { .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 */ /* Hide sidebar buttons */
.hider-sidebar-buttons .sidebar-toggle-button.mod-right, .hider-sidebar-buttons .sidebar-toggle-button.mod-right,
.hider-sidebar-buttons .sidebar-toggle-button.mod-left { .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 { .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 */ /* Hide meta */
.hider-meta .markdown-reading-view .metadata-container { .hider-meta .markdown-reading-view .metadata-container {
display:none; display:none;
} }
/* Hide scrollbars */ /* Hide scrollbars */
.hider-scroll ::-webkit-scrollbar { .hider-scroll ::-webkit-scrollbar {
display:none; display:none;
} }
/* Hide status */ /* Hide status */
.hider-status .status-bar { .hider-status .status-bar {
display:none; display:none;
} }
/* Hide tooltips */ /* Hide tooltips */
.hider-tooltips .tooltip { .hider-tooltips .tooltip {
display:none; display:none;
} }
/* Hide search suggestions */ /* Hide search suggestions */
.hider-search-suggestions .suggestion-container.mod-search-suggestion { .hider-search-suggestions .suggestion-container.mod-search-suggestion {
display: none; display: none;
} }
/* Hide search count flair */ /* Hide search count flair */
.hider-search-counts .tree-item-flair:not(.tag-pane-tag-count) { .hider-search-counts .tree-item-flair:not(.tag-pane-tag-count) {
display:none; display:none;
} }
/* Hide instructions */ /* Hide instructions */
.hider-instructions .prompt-instructions { .hider-instructions .prompt-instructions {
display:none; display:none;
} }
/* Hide file nav header */ /* Hide file nav header */
.hider-file-nav-header .workspace-leaf-content[data-type=file-explorer] .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 "enabled": true
}, },
"empty-line-around-code-fences": { "empty-line-around-code-fences": {
"enabled": false "enabled": true
}, },
"empty-line-around-math-blocks": { "empty-line-around-math-blocks": {
"enabled": true "enabled": true
@ -205,9 +205,7 @@
"enabled": false "enabled": false
}, },
"space-between-chinese-japanese-or-korean-and-english-or-numbers": { "space-between-chinese-japanese-or-korean-and-english-or-numbers": {
"enabled": true, "enabled": true
"english-symbols-punctuation-before": "-+;:'\"°%$)]",
"english-symbols-punctuation-after": "-+'\"([¥$"
}, },
"trailing-spaces": { "trailing-spaces": {
"enabled": true, "enabled": true,
@ -236,28 +234,6 @@
}, },
"remove-multiple-blank-lines-on-paste": { "remove-multiple-blank-lines-on-paste": {
"enabled": false "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, "lintOnSave": true,
@ -267,7 +243,6 @@
"displayLintOnFileChangeNotice": false, "displayLintOnFileChangeNotice": false,
"settingsConvertedToConfigKeyValues": true, "settingsConvertedToConfigKeyValues": true,
"foldersToIgnore": [], "foldersToIgnore": [],
"filesToIgnore": [],
"linterLocale": "system-default", "linterLocale": "system-default",
"logLevel": "ERROR", "logLevel": "ERROR",
"lintCommands": [], "lintCommands": [],

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long

View File

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