vault backup: 2025-03-04 23:30:01

This commit is contained in:
2025-03-04 23:30:01 +08:00
parent 2243684a22
commit 1f88c97f28
16 changed files with 3144 additions and 9729 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "Blue Topaz",
"version": "2023112601",
"minAppVersion": "1.0.0",
"author": "WhyI & Pkmer",
"authorUrl": "https://github.com/whyt-byte"
"name": "Blue Topaz",
"version": "2024121301",
"minAppVersion": "1.0.0",
"author": "WhyI & Pkmer",
"authorUrl": "https://github.com/whyt-byte"
}

File diff suppressed because one or more lines are too long

View File

@@ -1,9 +1,12 @@
{
"name": "Shimmering Focus",
"version": "3.599",
"minAppVersion": "1.3.1",
"author": "pseudometa",
"fundingUrl": "https://ko-fi.com/pseudometa",
"authorUrl": "https://github.com/chrisgrieser/shimmering-focus",
"helpUrl": "https://github.com/chrisgrieser/shimmering-focus#readme"
"name": "Shimmering Focus",
"author": "pseudometa aka Chris Grieser",
"version": "5.27",
"minAppVersion": "1.6.0",
"authorUrl": "https://github.com/chrisgrieser/shimmering-focus",
"helpUrl": "https://github.com/chrisgrieser/shimmering-focus#readme",
"fundingUrl": {
"Ko-Fi": "https://ko-fi.com/pseudometa",
"PayPal": "https://www.paypal.me/ChrisGrieser"
}
}

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "Things",
"version": "2.1.19",
"version": "2.1.20",
"minAppVersion": "1.0.0",
"author": "@colineckert",
"authorUrl": "https://twitter.com/colineckert"

View File

@@ -1,6 +1,6 @@
/*───────────────────────────────────────────────────────
THINGS
Version 2.1.19
Version 2.1.20
Created by @colineckert
Readme:
@@ -54,6 +54,12 @@ body {
--highlight-background-color-underline: hsl(50deg 100% 50% / 100%) !important;
--highlight-background-color--active: hsl(50deg 100% 50% / 20%) !important;
--progress-color-1: #ad5758;
--progress-color-2: #b87f4c;
--progress-color-3: #d2b874;
--progress-color-4: #b0c07e;
--progress-color-5: #768399;
/* Font families */
--font-text-theme: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Inter, Ubuntu, sans-serif;
@@ -334,15 +340,6 @@ body:not(.default-font-color) mark em {
color: var(--text-normal);
}
/* Highlight styling */
span.cm-highlight,
.markdown-preview-view mark,
span.search-result-file-matched-text {
padding: 0.05em 0;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
/* Fancy highlight */
body.fancy-highlight span.cm-highlight,
body.fancy-highlight .markdown-preview-view mark,
@@ -962,6 +959,50 @@ body:not(.tasks) li[data-task='D'].task-list-item.is-checked {
color: var(--text-normal);
}
/* ------------------- */
/* Progress bars styling. Credit Minimal theme: https://minimal.guide/progress-bars */
/* Support @kepano - https://www.buymeacoffee.com/kepano */
/* ------------------- */
.progress-color {
.markdown-rendered progress,
.markdown-source-view.is-live-preview progress,
.markdown-preview-view progress {
&[value^='1']::-webkit-progress-value,
&[value^='2']::-webkit-progress-value,
&[value^='3']::-webkit-progress-value {
background-color: var(--progress-color-1);
}
&[value^='4']::-webkit-progress-value,
&[value^='5']::-webkit-progress-value {
background-color: var(--progress-color-2);
}
&[value^='6']::-webkit-progress-value,
&[value^='7']::-webkit-progress-value {
background-color: var(--progress-color-3);
}
&[value^='8']::-webkit-progress-value,
&[value^='9']::-webkit-progress-value {
background-color: var(--progress-color-4);
}
&[value='1']::-webkit-progress-value,
&[value='100']::-webkit-progress-value {
background-color: var(--progress-color-5);
}
&[value='0']::-webkit-progress-value,
&[value='2']::-webkit-progress-value,
&[value='3']::-webkit-progress-value,
&[value='4']::-webkit-progress-value,
&[value='5']::-webkit-progress-value,
&[value='6']::-webkit-progress-value,
&[value='7']::-webkit-progress-value,
&[value='8']::-webkit-progress-value,
&[value='9']::-webkit-progress-value {
background-color: var(--progress-color-1);
}
}
}
/* ─────────────────────────────────────────────────── */
/* Plugins */
/* ─────────────────────────────────────────────────── */
@@ -1161,6 +1202,23 @@ body:not(.no-kanban-styles)
> textarea {
background: transparent;
}
body .kanban-plugin__item-button-wrapper > button {
color: var(--text-muted);
font-weight: 400;
background: 0 0;
min-height: calc(var(--input-height) + 8px);
}
body .kanban-plugin__item-form .kanban-plugin__item-input-wrapper {
min-height: calc(var(--input-height) + 8px);
display: flex;
justify-content: center;
}
.kanban-plugin__item-input-wrapper textarea {
background-color: var(--background-primary);
}
.kanban-plugin__lane-items {
padding-bottom: 0;
}
/* ─────────────────────────────────────────────────── */
/* Styles Settings */
@@ -1308,6 +1366,47 @@ settings:
type: variable-color
format: hex
default: '#FFFFFF'
-
id: progress-color
title: Progress colorful mode switcher
description: Toggle progress color scheme
type: class-toggle
default: false
-
id: progress-color-1
title: progress 2-39% color
type: variable-color
opacity: true
format: hex
default: '#ad5758'
-
id: progress-color-2
title: progress 40-59% color
type: variable-color
opacity: true
format: hex
default: '#b87f4c'
-
id: progress-color-3
title: progress 60-79% color
type: variable-color
opacity: true
format: hex
default: '#d2b874'
-
id: progress-color-4
title: progress 80-99% color
type: variable-color
opacity: true
format: hex
default: '#b0c07e'
-
id: progress-color-5
title: progress 1,100% color
type: variable-color
opacity: true
format: hex
default: '#768399'
-
id: headings
title: Headings