mirror of
https://github.com/danbulant/notes
synced 2026-06-20 15:01:05 +00:00
vault backup: 2022-04-25 12:31:18
This commit is contained in:
parent
c3585d195b
commit
f98d438542
55 changed files with 138207 additions and 138138 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
html
|
html
|
||||||
notes/.obsidian/workspace
|
notes/.obsidian/workspace
|
||||||
.mdzk_summary.md
|
.mdzk_summary.md
|
||||||
|
/tmp
|
||||||
28
fixdata.js
Normal file
28
fixdata.js
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
const fs = require("fs");
|
||||||
|
const dir = fs.readdirSync("./tmp/data").sort().reverse();
|
||||||
|
const reqFile = (path) => require("./tmp/data/" + path);
|
||||||
|
|
||||||
|
let data = reqFile(dir[0]);
|
||||||
|
|
||||||
|
function merge(first, second) {
|
||||||
|
for(let item of second) {
|
||||||
|
let i = first.findIndex(t => t.date === item.date);
|
||||||
|
if(i !== -1) {
|
||||||
|
first[i].value = Math.max(item.value, first[i].value);
|
||||||
|
} else {
|
||||||
|
first.push(item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return first;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let file of dir) {
|
||||||
|
let current = reqFile(file);
|
||||||
|
if(!current.activityHistory[0].size || !current.activityHistory[0].size.length) continue; // JS moment
|
||||||
|
let b = data;
|
||||||
|
data = current;
|
||||||
|
current = b;
|
||||||
|
data.activityHistory[0].size = merge(current.activityHistory[0].size, data.activityHistory[0].size);
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(JSON.stringify(data));
|
||||||
58
getdata.sh
Normal file
58
getdata.sh
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# we'll write all git versions of the file to this folder:
|
||||||
|
EXPORT_TO=./tmp/data
|
||||||
|
|
||||||
|
# take relative path to the file to inspect
|
||||||
|
GIT_PATH_TO_FILE=./notes/.obsidian/plugins/obsidian-activity-history/data.json
|
||||||
|
|
||||||
|
# ---------------- don't edit below this line --------------
|
||||||
|
|
||||||
|
USAGE="Please cd to the root of your git proj and specify path to file you with to inspect (example: $0 some/path/to/file)"
|
||||||
|
|
||||||
|
# check if got argument
|
||||||
|
if [ "${GIT_PATH_TO_FILE}" == "" ]; then
|
||||||
|
echo "error: no arguments given. ${USAGE}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# check if file exist
|
||||||
|
if [ ! -f ${GIT_PATH_TO_FILE} ]; then
|
||||||
|
echo "error: File '${GIT_PATH_TO_FILE}' does not exist. ${USAGE}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# extract just a filename from given relative path (will be used in result file names)
|
||||||
|
GIT_SHORT_FILENAME=$(basename $GIT_PATH_TO_FILE)
|
||||||
|
|
||||||
|
# create folder to store all revisions of the file
|
||||||
|
if [ ! -d ${EXPORT_TO} ]; then
|
||||||
|
echo "creating folder: ${EXPORT_TO}"
|
||||||
|
mkdir ${EXPORT_TO}
|
||||||
|
fi
|
||||||
|
|
||||||
|
## uncomment next line to clear export folder each time you run script
|
||||||
|
#rm ${EXPORT_TO}/*
|
||||||
|
|
||||||
|
# reset coutner
|
||||||
|
COUNT=0
|
||||||
|
|
||||||
|
# iterate all revisions
|
||||||
|
git rev-list --all --objects -- ${GIT_PATH_TO_FILE} | \
|
||||||
|
cut -d ' ' -f1 | \
|
||||||
|
while read h; do \
|
||||||
|
COUNT=$((COUNT + 1)); \
|
||||||
|
COUNT_PRETTY=$(printf "%04d" $COUNT); \
|
||||||
|
COMMIT_DATE=`git show $h | head -3 | grep 'Date:' | awk '{print $4"-"$3"-"$6}'`; \
|
||||||
|
if [ "${COMMIT_DATE}" != "" ]; then \
|
||||||
|
git cat-file -p ${h}:${GIT_PATH_TO_FILE} > ${EXPORT_TO}/${COUNT_PRETTY}.${COMMIT_DATE}.${h}.${GIT_SHORT_FILENAME};\
|
||||||
|
fi;\
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "result stored to ${EXPORT_TO}"
|
||||||
|
|
||||||
|
node ./fixdata > notes/.obsidian/plugins/obsidian-activity-history/data.json
|
||||||
|
rm ${EXPORT_TO} -r
|
||||||
|
|
||||||
|
echo "done"
|
||||||
|
exit 0
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "dataview",
|
"id": "dataview",
|
||||||
"name": "Dataview",
|
"name": "Dataview",
|
||||||
"version": "0.4.22",
|
"version": "0.4.26",
|
||||||
"minAppVersion": "0.13.11",
|
"minAppVersion": "0.13.11",
|
||||||
"description": "Complex data views for the data-obsessed.",
|
"description": "Complex data views for the data-obsessed.",
|
||||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||||
|
|
|
||||||
79574
notes/.obsidian/plugins/juggl/main.js
vendored
79574
notes/.obsidian/plugins/juggl/main.js
vendored
File diff suppressed because one or more lines are too long
2
notes/.obsidian/plugins/juggl/manifest.json
vendored
2
notes/.obsidian/plugins/juggl/manifest.json
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "juggl",
|
"id": "juggl",
|
||||||
"name": "Juggl",
|
"name": "Juggl",
|
||||||
"version": "1.2.5",
|
"version": "1.4.0",
|
||||||
"minAppVersion": "0.11.5",
|
"minAppVersion": "0.11.5",
|
||||||
"description": "Adds a completely interactive, stylable and expandable graph view to Obsidian.",
|
"description": "Adds a completely interactive, stylable and expandable graph view to Obsidian.",
|
||||||
"author": "Emile",
|
"author": "Emile",
|
||||||
|
|
|
||||||
5
notes/.obsidian/plugins/juggl/styles.css
vendored
5
notes/.obsidian/plugins/juggl/styles.css
vendored
|
|
@ -58,8 +58,9 @@ div.juggl-error {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.juggl-hover {
|
.juggl-hover.is-loaded.hover-popover.popover {
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
|
height: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.juggl-preview-edge {
|
.juggl-preview-edge {
|
||||||
|
|
@ -67,7 +68,7 @@ div.juggl-error {
|
||||||
}
|
}
|
||||||
|
|
||||||
.cy-content {
|
.cy-content {
|
||||||
padding: 0;
|
padding: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cy-toolbar {
|
.cy-toolbar {
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@
|
||||||
"checkpointList": [
|
"checkpointList": [
|
||||||
{
|
{
|
||||||
"path": "/",
|
"path": "/",
|
||||||
"date": "2022-04-22",
|
"date": "2022-04-25",
|
||||||
"size": 828428
|
"size": 829506
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"activityHistory": [
|
"activityHistory": [
|
||||||
|
|
@ -594,7 +594,11 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"date": "2022-04-22",
|
"date": "2022-04-22",
|
||||||
"value": 1854
|
"value": 1988
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"date": "2022-04-25",
|
||||||
|
"value": 944
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,13 +15,27 @@
|
||||||
},
|
},
|
||||||
"syntaxHighlight": false,
|
"syntaxHighlight": false,
|
||||||
"copyButton": false,
|
"copyButton": false,
|
||||||
"version": "6.9.6",
|
"version": "9.0.1",
|
||||||
"autoCollapse": false,
|
"autoCollapse": false,
|
||||||
"defaultCollapseType": "open",
|
"defaultCollapseType": "open",
|
||||||
"syncLinks": true,
|
|
||||||
"enableMarkdownProcessor": false,
|
|
||||||
"injectColor": true,
|
"injectColor": true,
|
||||||
"parseTitles": true,
|
"parseTitles": true,
|
||||||
|
"dropShadow": true,
|
||||||
|
"hideEmpty": false,
|
||||||
|
"open": {
|
||||||
|
"admonitions": true,
|
||||||
|
"icons": true,
|
||||||
|
"other": true,
|
||||||
|
"advanced": false
|
||||||
|
},
|
||||||
|
"icons": [],
|
||||||
|
"useFontAwesome": true,
|
||||||
|
"rpgDownloadedOnce": false,
|
||||||
|
"msDocConverted": false,
|
||||||
|
"useSnippet": false,
|
||||||
|
"snippetPath": "custom-admonitions.8e02f6",
|
||||||
|
"syncLinks": true,
|
||||||
|
"enableMarkdownProcessor": false,
|
||||||
"allowMSSyntax": true,
|
"allowMSSyntax": true,
|
||||||
"livePreviewMS": true
|
"livePreviewMS": true
|
||||||
}
|
}
|
||||||
15829
notes/.obsidian/plugins/obsidian-admonition/main.js
vendored
15829
notes/.obsidian/plugins/obsidian-admonition/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-admonition",
|
"id": "obsidian-admonition",
|
||||||
"name": "Admonition",
|
"name": "Admonition",
|
||||||
"version": "6.9.6",
|
"version": "9.0.1",
|
||||||
"minAppVersion": "0.11.0",
|
"minAppVersion": "0.14.0",
|
||||||
"description": "Admonition block-styled content for Obsidian.md",
|
"description": "Enhanced callouts for Obsidian.md",
|
||||||
"author": "Jeremy Valentine",
|
"author": "Jeremy Valentine",
|
||||||
"authorUrl": "",
|
"authorUrl": "",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
112
notes/.obsidian/plugins/obsidian-charts/main.js
vendored
112
notes/.obsidian/plugins/obsidian-charts/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-charts",
|
"id": "obsidian-charts",
|
||||||
"name": "Obsidian Charts",
|
"name": "Obsidian Charts",
|
||||||
"version": "3.1.1",
|
"version": "3.6.1",
|
||||||
"minAppVersion": "0.12.7",
|
"minAppVersion": "0.12.7",
|
||||||
"description": "This Plugin lets you create Charts within Obsidian",
|
"description": "This Plugin lets you create Charts within Obsidian",
|
||||||
"author": "phibr0",
|
"author": "phibr0",
|
||||||
|
|
|
||||||
|
|
@ -17,4 +17,9 @@ div.chart-error {
|
||||||
|
|
||||||
div.chart-error pre > code {
|
div.chart-error pre > code {
|
||||||
color: crimson !important;
|
color: crimson !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.print .block-language-chart {
|
||||||
|
/* Hardcoded with for printed Charts, see #41 */
|
||||||
|
width: 500px !important;
|
||||||
|
}
|
||||||
|
|
|
||||||
35069
notes/.obsidian/plugins/obsidian-chartsview-plugin/main.js
vendored
35069
notes/.obsidian/plugins/obsidian-chartsview-plugin/main.js
vendored
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-chartsview-plugin",
|
"id": "obsidian-chartsview-plugin",
|
||||||
"name": "Charts View",
|
"name": "Charts View",
|
||||||
"version": "1.1.3",
|
"version": "1.1.6",
|
||||||
"minAppVersion": "0.9.12",
|
"minAppVersion": "0.9.12",
|
||||||
"description": "Data visualization solution in Obsidian based on Ant Design Charts.",
|
"description": "Data visualization solution in Obsidian based on Ant Design Charts.",
|
||||||
"author": "caronchen",
|
"author": "caronchen",
|
||||||
|
|
|
||||||
|
|
@ -35,4 +35,21 @@
|
||||||
.chartsview-thumbnail-container .chartsview-thumbnail img {
|
.chartsview-thumbnail-container .chartsview-thumbnail img {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.chartsview-export-button {
|
||||||
|
padding: 5px;
|
||||||
|
position: relative;
|
||||||
|
width: fit-content;
|
||||||
|
display: flex;
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 500ms;
|
||||||
|
background-color: var(--interactive-accent);
|
||||||
|
color: var(--text-on-accent);
|
||||||
|
border-radius: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-language-chartsview:hover .chartsview-export-button {
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
121117
notes/.obsidian/plugins/obsidian-emoji-toolbar/main.js
vendored
121117
notes/.obsidian/plugins/obsidian-emoji-toolbar/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-emoji-toolbar",
|
"id": "obsidian-emoji-toolbar",
|
||||||
"name": "Emoji Toolbar",
|
"name": "Emoji Toolbar",
|
||||||
"version": "0.2.2",
|
"version": "0.3.1",
|
||||||
"description": "Quickly search for and insert emojis into your notes.",
|
"description": "Quickly search for and insert emojis into your notes.",
|
||||||
"author": "oliveryh",
|
"author": "oliveryh",
|
||||||
"authorUrl": "https://github.com/oliveryh/obsidian-emoji-toolbar",
|
"authorUrl": "https://github.com/oliveryh/obsidian-emoji-toolbar",
|
||||||
|
|
|
||||||
|
|
@ -5,3 +5,501 @@ img.emoji {
|
||||||
vertical-align: -0.1em;
|
vertical-align: -0.1em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.emoji-mart,
|
||||||
|
.emoji-mart * {
|
||||||
|
box-sizing: border-box;
|
||||||
|
line-height: 1.15;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
|
||||||
|
font-size: 16px;
|
||||||
|
display: inline-block;
|
||||||
|
color: #222427;
|
||||||
|
border: 1px solid #d9d9d9;
|
||||||
|
border-radius: 5px;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart .emoji-mart-emoji {
|
||||||
|
padding: 6px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-bar {
|
||||||
|
border: 0 solid #d9d9d9;
|
||||||
|
}
|
||||||
|
.emoji-mart-bar:first-child {
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-top-left-radius: 5px;
|
||||||
|
border-top-right-radius: 5px;
|
||||||
|
}
|
||||||
|
.emoji-mart-bar:last-child {
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-left-radius: 5px;
|
||||||
|
border-bottom-right-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchors {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 0 6px;
|
||||||
|
line-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchor {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
color: #858585;
|
||||||
|
text-align: center;
|
||||||
|
padding: 12px 4px !important;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: color .1s ease-out;
|
||||||
|
margin: 0 !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
background: none !important;
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
.emoji-mart-anchor:focus { outline: 0 }
|
||||||
|
.emoji-mart-anchor:hover,
|
||||||
|
.emoji-mart-anchor:focus,
|
||||||
|
.emoji-mart-anchor-selected {
|
||||||
|
color: #464646;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchor-selected .emoji-mart-anchor-bar {
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchor-bar {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -3px; left: 0;
|
||||||
|
width: 100%; height: 3px;
|
||||||
|
background-color: #464646;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchors i {
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchors svg,
|
||||||
|
.emoji-mart-anchors img {
|
||||||
|
fill: currentColor;
|
||||||
|
height: 18px;
|
||||||
|
width: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-scroll {
|
||||||
|
overflow-y: scroll;
|
||||||
|
overflow-x: hidden;
|
||||||
|
height: 270px;
|
||||||
|
padding: 0 6px 6px 6px;
|
||||||
|
will-change: transform; /* avoids "repaints on scroll" in mobile Chrome */
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-search {
|
||||||
|
margin-top: 6px;
|
||||||
|
padding: 0 6px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-search input {
|
||||||
|
font-size: 16px;
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
padding: 5px 25px 6px 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #d9d9d9;
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-search input,
|
||||||
|
.emoji-mart-search input::-webkit-search-decoration,
|
||||||
|
.emoji-mart-search input::-webkit-search-cancel-button,
|
||||||
|
.emoji-mart-search input::-webkit-search-results-button,
|
||||||
|
.emoji-mart-search input::-webkit-search-results-decoration {
|
||||||
|
/* remove webkit/blink styles for <input type="search">
|
||||||
|
* via https://stackoverflow.com/a/9422689 */
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-search-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 7px;
|
||||||
|
right: 11px;
|
||||||
|
z-index: 2;
|
||||||
|
padding: 2px 5px 1px;
|
||||||
|
border: none !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category .emoji-mart-emoji span {
|
||||||
|
z-index: 1;
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category .emoji-mart-emoji:focus { outline: 0 }
|
||||||
|
|
||||||
|
.emoji-mart-category .emoji-mart-emoji:hover:before,
|
||||||
|
.emoji-mart-category .emoji-mart-emoji:focus:before {
|
||||||
|
z-index: 0;
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 0; left: 0;
|
||||||
|
width: 100%; height: 100%;
|
||||||
|
background-color: #c5c5c5;
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category-label {
|
||||||
|
z-index: 2;
|
||||||
|
position: relative;
|
||||||
|
position: -webkit-sticky;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category-label span {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
font-weight: 500;
|
||||||
|
padding: 5px 6px;
|
||||||
|
background-color: #fff;
|
||||||
|
background-color: rgba(255, 255, 255, .95);
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category-list {
|
||||||
|
border-spacing: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category-list td {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-emoji {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 0;
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
border: none !important;
|
||||||
|
background: none !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-emoji-native {
|
||||||
|
font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "Apple Color Emoji", "Twemoji Mozilla", "Noto Color Emoji", "Android Emoji";
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-no-results {
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 70px;
|
||||||
|
color: #858585;
|
||||||
|
}
|
||||||
|
.emoji-mart-no-results-img {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
.emoji-mart-no-results .emoji-mart-category-label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.emoji-mart-no-results .emoji-mart-no-results-label {
|
||||||
|
margin-top: .2em;
|
||||||
|
}
|
||||||
|
.emoji-mart-no-results .emoji-mart-emoji:hover:before {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview {
|
||||||
|
position: relative;
|
||||||
|
height: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-emoji,
|
||||||
|
.emoji-mart-preview-data,
|
||||||
|
.emoji-mart-preview-skins {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-emoji {
|
||||||
|
left: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-data {
|
||||||
|
left: 68px; right: 12px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-skins {
|
||||||
|
right: 30px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-skins.custom {
|
||||||
|
right: 10px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-name {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-shortname {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
.emoji-mart-preview-shortname + .emoji-mart-preview-shortname,
|
||||||
|
.emoji-mart-preview-shortname + .emoji-mart-preview-emoticon,
|
||||||
|
.emoji-mart-preview-emoticon + .emoji-mart-preview-emoticon {
|
||||||
|
margin-left: .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-preview-emoticon {
|
||||||
|
font-size: 11px;
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-title span {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-title .emoji-mart-emoji {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-title-label {
|
||||||
|
color: #999A9C;
|
||||||
|
font-size: 26px;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches {
|
||||||
|
font-size: 0;
|
||||||
|
padding: 2px 0;
|
||||||
|
border: 1px solid #d9d9d9;
|
||||||
|
border-radius: 12px;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches.custom {
|
||||||
|
font-size: 0;
|
||||||
|
border: none;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch {
|
||||||
|
width: 16px;
|
||||||
|
padding: 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch.selected:after {
|
||||||
|
opacity: .75;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch {
|
||||||
|
display: inline-block;
|
||||||
|
width: 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
transition-property: width, padding;
|
||||||
|
transition-duration: .125s;
|
||||||
|
transition-timing-function: ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch:nth-child(1) { transition-delay: 0s }
|
||||||
|
.emoji-mart-skin-swatch:nth-child(2) { transition-delay: .03s }
|
||||||
|
.emoji-mart-skin-swatch:nth-child(3) { transition-delay: .06s }
|
||||||
|
.emoji-mart-skin-swatch:nth-child(4) { transition-delay: .09s }
|
||||||
|
.emoji-mart-skin-swatch:nth-child(5) { transition-delay: .12s }
|
||||||
|
.emoji-mart-skin-swatch:nth-child(6) { transition-delay: .15s }
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch.selected {
|
||||||
|
position: relative;
|
||||||
|
width: 16px;
|
||||||
|
padding: 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch.selected:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 50%; left: 50%;
|
||||||
|
width: 4px; height: 4px;
|
||||||
|
margin: -2px 0 0 -2px;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 100%;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity .2s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch.custom {
|
||||||
|
display: inline-block;
|
||||||
|
width: 0;
|
||||||
|
height: 38px;
|
||||||
|
overflow: hidden;
|
||||||
|
vertical-align: middle;
|
||||||
|
transition-property: width, height;
|
||||||
|
transition-duration: .125s;
|
||||||
|
transition-timing-function: ease-out;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch.custom.selected {
|
||||||
|
position: relative;
|
||||||
|
width: 36px;
|
||||||
|
height: 38px;
|
||||||
|
padding: 0 2px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatch.custom.selected:after {
|
||||||
|
content: "";
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches.custom .emoji-mart-skin-swatch.custom:hover {
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
border-radius: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom {
|
||||||
|
width: 36px;
|
||||||
|
height: 38px;
|
||||||
|
padding: 0 2px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom.selected:after {
|
||||||
|
opacity: .75;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-text.opened {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: left;
|
||||||
|
color: #888;
|
||||||
|
font-size: 11px;
|
||||||
|
padding: 5px 2px;
|
||||||
|
width: 95px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin {
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
padding-top: 100%;
|
||||||
|
max-width: 12px;
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-skin-tone-1 { background-color: #ffc93a }
|
||||||
|
.emoji-mart-skin-tone-2 { background-color: #fadcbc }
|
||||||
|
.emoji-mart-skin-tone-3 { background-color: #e0bb95 }
|
||||||
|
.emoji-mart-skin-tone-4 { background-color: #bf8f68 }
|
||||||
|
.emoji-mart-skin-tone-5 { background-color: #9b643d }
|
||||||
|
.emoji-mart-skin-tone-6 { background-color: #594539 }
|
||||||
|
|
||||||
|
/* For screenreaders only, via https://stackoverflow.com/a/19758620 */
|
||||||
|
.emoji-mart-sr-only {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
padding: 0;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0, 0, 0, 0);
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Dark mode styles
|
||||||
|
*/
|
||||||
|
|
||||||
|
.emoji-mart-dark {
|
||||||
|
color: #fff;
|
||||||
|
border-color: #555453;
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-bar {
|
||||||
|
border-color: #555453;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-search input {
|
||||||
|
color: #fff;
|
||||||
|
border-color: #555453;
|
||||||
|
background-color: #2f2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-search-icon svg {
|
||||||
|
fill: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-category .emoji-mart-emoji {
|
||||||
|
background-color: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-anchor {
|
||||||
|
background-color: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-search-icon {
|
||||||
|
background-color: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-category .emoji-mart-emoji:hover:before,
|
||||||
|
.emoji-mart-dark .emoji-mart-category .emoji-mart-emoji:focus:before {
|
||||||
|
background-color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-category-label span {
|
||||||
|
background-color: #222;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-skin-swatches {
|
||||||
|
border-color: #555453;
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emoji-mart-dark .emoji-mart-anchor:hover,
|
||||||
|
.emoji-mart-dark .emoji-mart-anchor:focus,
|
||||||
|
.emoji-mart-dark .emoji-mart-anchor-selected {
|
||||||
|
color: #bfbfbf;
|
||||||
|
}
|
||||||
|
|
||||||
|
#emoji-modal {
|
||||||
|
padding: 0px;
|
||||||
|
min-width: unset;
|
||||||
|
width: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#emoji-modal > .modal-content {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#emoji-modal > button {
|
||||||
|
background-color: unset;
|
||||||
|
border: 0px !important;
|
||||||
|
box-shadow: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#emoji-modal > .modal-close-button {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
@ -1,40 +1,57 @@
|
||||||
{
|
{
|
||||||
"folder": "Excalidraw",
|
"folder": "Excalidraw",
|
||||||
|
"embedUseExcalidrawFolder": false,
|
||||||
"templateFilePath": "Excalidraw/Template.excalidraw",
|
"templateFilePath": "Excalidraw/Template.excalidraw",
|
||||||
"scriptFolderPath": "Excalidraw/Scripts",
|
"scriptFolderPath": "Excalidraw/Scripts",
|
||||||
|
"compress": false,
|
||||||
|
"autosave": true,
|
||||||
|
"autosaveInterval": 10000,
|
||||||
"drawingFilenamePrefix": "Drawing ",
|
"drawingFilenamePrefix": "Drawing ",
|
||||||
|
"drawingEmbedPrefixWithFilename": true,
|
||||||
|
"drawingFilnameEmbedPostfix": " ",
|
||||||
"drawingFilenameDateTime": "YYYY-MM-DD HH.mm.ss",
|
"drawingFilenameDateTime": "YYYY-MM-DD HH.mm.ss",
|
||||||
|
"useExcalidrawExtension": true,
|
||||||
"displaySVGInPreview": true,
|
"displaySVGInPreview": true,
|
||||||
|
"displayExportedImageIfAvailable": false,
|
||||||
"previewMatchObsidianTheme": false,
|
"previewMatchObsidianTheme": false,
|
||||||
"width": "400",
|
"width": "400",
|
||||||
|
"isLeftHanded": false,
|
||||||
"matchTheme": false,
|
"matchTheme": false,
|
||||||
"matchThemeAlways": false,
|
"matchThemeAlways": false,
|
||||||
"matchThemeTrigger": false,
|
"matchThemeTrigger": false,
|
||||||
"defaultMode": "normal",
|
"defaultMode": "normal",
|
||||||
|
"defaultPenMode": "never",
|
||||||
"zoomToFitOnResize": true,
|
"zoomToFitOnResize": true,
|
||||||
"zoomToFitMaxLevel": 2,
|
"zoomToFitMaxLevel": 2,
|
||||||
"linkPrefix": "📍",
|
"linkPrefix": "📍",
|
||||||
"urlPrefix": "🌐",
|
"urlPrefix": "🌐",
|
||||||
|
"hoverPreviewWithoutCTRL": false,
|
||||||
|
"linkOpacity": 1,
|
||||||
"openInAdjacentPane": false,
|
"openInAdjacentPane": false,
|
||||||
"showLinkBrackets": true,
|
"showLinkBrackets": true,
|
||||||
"allowCtrlClick": true,
|
"allowCtrlClick": true,
|
||||||
"forceWrap": false,
|
"forceWrap": false,
|
||||||
"pageTransclusionCharLimit": 200,
|
"pageTransclusionCharLimit": 200,
|
||||||
|
"wordWrappingDefault": 0,
|
||||||
"iframelyAllowed": true,
|
"iframelyAllowed": true,
|
||||||
"pngExportScale": 1,
|
"pngExportScale": 1,
|
||||||
"exportWithTheme": true,
|
"exportWithTheme": true,
|
||||||
"exportWithBackground": true,
|
"exportWithBackground": true,
|
||||||
|
"exportPaddingSVG": 10,
|
||||||
"keepInSync": false,
|
"keepInSync": false,
|
||||||
"autoexportSVG": false,
|
"autoexportSVG": false,
|
||||||
"autoexportPNG": false,
|
"autoexportPNG": false,
|
||||||
"autoexportExcalidraw": false,
|
"autoexportExcalidraw": false,
|
||||||
"embedType": "excalidraw",
|
"embedType": "excalidraw",
|
||||||
|
"embedWikiLink": true,
|
||||||
"syncExcalidraw": false,
|
"syncExcalidraw": false,
|
||||||
"experimentalFileType": false,
|
"experimentalFileType": false,
|
||||||
"experimentalFileTag": "✏️",
|
"experimentalFileTag": "✏️",
|
||||||
"experimentalLivePreview": true,
|
"experimentalLivePreview": true,
|
||||||
|
"experimentalEnableFourthFont": false,
|
||||||
|
"experimantalFourthFont": "Virgil",
|
||||||
|
"fieldSuggester": true,
|
||||||
"compatibilityMode": false,
|
"compatibilityMode": false,
|
||||||
"loadCount": 1,
|
|
||||||
"drawingOpenCount": 0,
|
"drawingOpenCount": 0,
|
||||||
"library": "{\"type\":\"excalidrawlib\",\"version\":1,\"library\":[]}",
|
"library": "{\"type\":\"excalidrawlib\",\"version\":1,\"library\":[]}",
|
||||||
"library2": {
|
"library2": {
|
||||||
|
|
@ -43,14 +60,19 @@
|
||||||
"source": "https://excalidraw.com",
|
"source": "https://excalidraw.com",
|
||||||
"libraryItems": []
|
"libraryItems": []
|
||||||
},
|
},
|
||||||
"patchCommentBlock": false,
|
|
||||||
"imageElementNotice": false,
|
"imageElementNotice": false,
|
||||||
"runWYSIWYGpatch": false,
|
|
||||||
"fixInfinitePreviewLoop": false,
|
|
||||||
"mdSVGwidth": 500,
|
"mdSVGwidth": 500,
|
||||||
"mdSVGmaxHeight": 800,
|
"mdSVGmaxHeight": 800,
|
||||||
"mdFont": "Virgil",
|
"mdFont": "Virgil",
|
||||||
"mdFontColor": "Black",
|
"mdFontColor": "Black",
|
||||||
|
"mdBorderColor": "Black",
|
||||||
"mdCSS": "",
|
"mdCSS": "",
|
||||||
"scriptEngineSettings": {}
|
"scriptEngineSettings": {},
|
||||||
|
"defaultTrayMode": false,
|
||||||
|
"previousRelease": "1.6.25",
|
||||||
|
"showReleaseNotes": true,
|
||||||
|
"loadCount": 1,
|
||||||
|
"patchCommentBlock": false,
|
||||||
|
"runWYSIWYGpatch": false,
|
||||||
|
"fixInfinitePreviewLoop": false
|
||||||
}
|
}
|
||||||
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.5.19",
|
"version": "1.6.25",
|
||||||
"minAppVersion": "0.12.16",
|
"minAppVersion": "0.12.16",
|
||||||
"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",
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
.App{font-family:sans-serif;text-align:center}.excalidraw-wrapper{height:100%;margin:0px;background-color:#fff}.context-menu-option__shortcut{background-color:transparent!important}.block-language-excalidraw{text-align:center}.excalidraw .github-corner{display:none}img.excalidraw-svg-right-wrap{float:right;margin:0px 0px 20px 20px}img.excalidraw-svg-left-wrap{float:left;margin:0px 35px 20px 0px}img.excalidraw-svg-right{float:right}.excalidraw-svg-center{text-align:center}img.excalidraw-svg-left{float:left}div.excalidraw-svg-right,div.excalidraw-svg-left{display:table;width:100%}button.ToolIcon_type_button[title=Export]{display:none}.excalidraw-prompt-div{display:flex;max-width:800px}.excalidraw-prompt-form{display:flex;flex-grow:1}.excalidraw-prompt-input{flex-grow:1}li[data-testid]{border:0!important;margin:0!important;padding:0!important;width:100%!important}.excalidraw .context-menu-option-separator{margin:4px!important}.excalidraw .popover{padding:0!important;border-color:transparent!important;border:0!important;box-shadow:0!important;background-color:transparent!important}.disable-zen-mode--visible{color:var(--text-primary-color)}.disable-zen-mode{width:9em!important}.ex-coffee-div{text-align:center;margin-bottom:20px}.excalidraw-scriptengine-install td>img{width:100%;max-width:800px}.excalidraw-scriptengine-install img.coffee{width:130px}.excalidraw-scriptengine-install tr{vertical-align:top}.excalidraw-scriptengine-install table{max-width:130ch}.excalidraw-scriptengine-install td.label{width:11ch;font-weight:bold;padding-right:5px}.excalidraw-scriptengine-install td.data{width:100%}.modal-content.excalidraw-scriptengine-install{max-width:130ch}.excalidraw-scriptengine-install .modal{max-height:90%}
|
.App{font-family:sans-serif;text-align:center}.excalidraw-wrapper{height:100%;margin:0px;background-color:#fff}.context-menu-option__shortcut{background-color:transparent!important}.block-language-excalidraw{text-align:center}.excalidraw .github-corner{display:none}img.excalidraw-svg-right-wrap{float:right;margin:0px 0px 20px 20px}img.excalidraw-svg-left-wrap{float:left;margin:0px 35px 20px 0px}img.excalidraw-svg-right{float:right}.excalidraw-svg-center{text-align:center}img.excalidraw-svg-left{float:left}div.excalidraw-svg-right,div.excalidraw-svg-left{display:table;width:100%}button.ToolIcon_type_button[title=Export]{display:none}.excalidraw-prompt-div{display:flex;max-width:800px}.excalidraw-prompt-form{display:flex;flex-grow:1}.excalidraw-prompt-input{flex-grow:1}li[data-testid]{border:0!important;margin:0!important;padding:0!important;width:100%!important}.excalidraw .context-menu-option-separator{margin:4px!important}.excalidraw .popover{padding:0!important;border-color:transparent!important;border:0!important;box-shadow:0!important;background-color:transparent!important}.disable-zen-mode--visible{color:var(--text-primary-color)}.disable-zen-mode{width:9em!important}.ex-coffee-div{text-align:center;margin-bottom:20px}.excalidraw-scriptengine-install td>img{width:100%;max-width:800px}.excalidraw-scriptengine-install img.coffee{width:130px}.excalidraw-scriptengine-install tr{vertical-align:top}.excalidraw-scriptengine-install table{max-width:130ch}.excalidraw-scriptengine-install td.label{min-width:11ch;font-weight:bold;padding-right:5px}.excalidraw-scriptengine-install td.data{width:100%}.modal-content.excalidraw-scriptengine-install{max-width:130ch;user-select:text}.excalidraw-scriptengine-install .modal{max-height:90%}.excalidraw-prompt-center{text-align:center}.excalidraw-prompt-center.filepath{text-align:center;font-weight:bold;margin-bottom:2em}.excalidraw-dirty{color:red}.workspace-leaf-content .excalidraw-view{padding:0px 1px}.excalidraw-videoWrapper{max-width:600px}.excalidraw-videoWrapper div{position:relative;padding-bottom:56.25%;height:0;margin:0 auto}.excalidraw-videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.excalidraw-release{padding-right:5px;margin-right:-5px;max-width:130ch;user-select:text}.excalidraw-release .modal{max-height:90%}.excalidraw .Island .scrollbar{--scrollbar-thumb-bg: silver}.excalidraw .ToolIcon__icon img{height:1em}.excalidraw-scriptengine-install tbody>tr>td>div>img{height:20px;background-color:silver;padding:2px}.excalidraw-scriptengine-install tbody>tr>td>div{width:50px;display:inline-block}.excalidraw-release p>a>img{width:100%}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-filename-heading-sync",
|
"id": "obsidian-filename-heading-sync",
|
||||||
"name": "Filename Heading Sync",
|
"name": "Filename Heading Sync",
|
||||||
"version": "1.5.3",
|
"version": "1.6.0",
|
||||||
"minAppVersion": "0.11.0",
|
"minAppVersion": "0.11.0",
|
||||||
"description": "Obsidian plugin for keeping the filename with the first heading of a file in sync",
|
"description": "Obsidian plugin for keeping the filename with the first heading of a file in sync",
|
||||||
"author": "dvcrn",
|
"author": "dvcrn",
|
||||||
|
|
|
||||||
21
notes/.obsidian/plugins/obsidian-git/data.json
vendored
Normal file
21
notes/.obsidian/plugins/obsidian-git/data.json
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"commitMessage": "vault backup: {{date}}",
|
||||||
|
"autoCommitMessage": "vault backup: {{date}}",
|
||||||
|
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
|
||||||
|
"autoSaveInterval": 0,
|
||||||
|
"autoPullInterval": 0,
|
||||||
|
"autoPullOnBoot": false,
|
||||||
|
"disablePush": false,
|
||||||
|
"pullBeforePush": true,
|
||||||
|
"disablePopups": false,
|
||||||
|
"listChangedFilesInMessageBody": false,
|
||||||
|
"showStatusBar": true,
|
||||||
|
"updateSubmodules": false,
|
||||||
|
"syncMethod": "merge",
|
||||||
|
"gitPath": "",
|
||||||
|
"customMessageOnAutoBackup": false,
|
||||||
|
"autoBackupAfterFileChange": false,
|
||||||
|
"treeStructure": false,
|
||||||
|
"refreshSourceControl": true,
|
||||||
|
"basePath": ""
|
||||||
|
}
|
||||||
11036
notes/.obsidian/plugins/obsidian-git/main.js
vendored
11036
notes/.obsidian/plugins/obsidian-git/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -4,5 +4,5 @@
|
||||||
"description": "Backup your vault with git.",
|
"description": "Backup your vault with git.",
|
||||||
"isDesktopOnly": true,
|
"isDesktopOnly": true,
|
||||||
"js": "main.js",
|
"js": "main.js",
|
||||||
"version": "1.20.0"
|
"version": "1.25.1"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
193
notes/.obsidian/plugins/obsidian-git/styles.css
vendored
193
notes/.obsidian/plugins/obsidian-git/styles.css
vendored
|
|
@ -6,22 +6,25 @@
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading > svg {
|
.loading > svg {
|
||||||
animation: 2s linear infinite loading;
|
animation: 2s linear infinite loading;
|
||||||
transform-origin: 50% 50%;
|
transform-origin: 50% 50%;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.obsidian-git-center {
|
.obsidian-git-center {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip.mod-left {
|
.tooltip.mod-left {
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip.mod-right {
|
.tooltip.mod-right {
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.obsidian-git-shortcuts {
|
.obsidian-git-shortcuts {
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
}
|
}
|
||||||
|
|
@ -38,30 +41,30 @@
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.d2h-d-none {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.d2h-wrapper {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.d2h-file-header {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
border-bottom: 1px solid var(--interactive-accent);
|
border-bottom: 1px solid var(--interactive-accent);
|
||||||
font-family: var(--font-monospace);
|
font-family: var(--font-monospace);
|
||||||
height: 35px;
|
height: 35px;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
.d2h-file-header,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
|
||||||
.d2h-file-stats {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.d2h-file-stats {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
.d2h-lines-added {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
|
||||||
border: 1px solid #b4e2b4;
|
border: 1px solid #b4e2b4;
|
||||||
border-radius: 5px 0 0 5px;
|
border-radius: 5px 0 0 5px;
|
||||||
color: #399839;
|
color: #399839;
|
||||||
|
|
@ -69,7 +72,7 @@
|
||||||
text-align: right;
|
text-align: right;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.d2h-lines-deleted {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
|
||||||
border: 1px solid #e9aeae;
|
border: 1px solid #e9aeae;
|
||||||
border-radius: 0 5px 5px 0;
|
border-radius: 0 5px 5px 0;
|
||||||
color: #c33;
|
color: #c33;
|
||||||
|
|
@ -78,7 +81,7 @@
|
||||||
text-align: left;
|
text-align: left;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.d2h-file-name-wrapper {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
|
||||||
-webkit-box-align: center;
|
-webkit-box-align: center;
|
||||||
-ms-flex-align: center;
|
-ms-flex-align: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -88,17 +91,17 @@
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.d2h-file-name {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.d2h-file-wrapper {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
|
||||||
border: 1px solid var(--background-modifier-border);
|
border: 1px solid var(--background-modifier-border);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
.d2h-file-collapse {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
|
||||||
-webkit-box-pack: end;
|
-webkit-box-pack: end;
|
||||||
-ms-flex-pack: end;
|
-ms-flex-pack: end;
|
||||||
-webkit-box-align: center;
|
-webkit-box-align: center;
|
||||||
|
|
@ -112,25 +115,25 @@
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
}
|
}
|
||||||
.d2h-file-collapse.d2h-selected {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
|
||||||
background-color: #c8e1ff;
|
background-color: #c8e1ff;
|
||||||
}
|
}
|
||||||
.d2h-file-collapse-input {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
|
||||||
margin: 0 4px 0 0;
|
margin: 0 4px 0 0;
|
||||||
}
|
}
|
||||||
.d2h-diff-table {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
font-family: Menlo, Consolas, monospace;
|
font-family: Menlo, Consolas, monospace;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.d2h-files-diff {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.d2h-file-diff {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
.d2h-file-side-diff {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-bottom: -8px;
|
margin-bottom: -8px;
|
||||||
margin-right: -4px;
|
margin-right: -4px;
|
||||||
|
|
@ -138,11 +141,11 @@
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
.d2h-code-line {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
|
||||||
padding: 0 8em;
|
padding: 0 8em;
|
||||||
}
|
}
|
||||||
.d2h-code-line,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
|
||||||
.d2h-code-side-line {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
|
|
@ -151,10 +154,10 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.d2h-code-side-line {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
|
||||||
padding: 0 4.5em;
|
padding: 0 4.5em;
|
||||||
}
|
}
|
||||||
.d2h-code-line-ctn {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
|
||||||
word-wrap: normal;
|
word-wrap: normal;
|
||||||
background: none;
|
background: none;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
@ -167,46 +170,58 @@
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.theme-light .d2h-code-line del,
|
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||||
.theme-light .d2h-code-side-line del {
|
.theme-light
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-code-side-line
|
||||||
|
del {
|
||||||
background-color: #ffb6ba;
|
background-color: #ffb6ba;
|
||||||
}
|
}
|
||||||
.theme-dark .d2h-code-line del,
|
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||||
.theme-dark .d2h-code-side-line del {
|
.theme-dark
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-code-side-line
|
||||||
|
del {
|
||||||
background-color: #8d232881;
|
background-color: #8d232881;
|
||||||
}
|
}
|
||||||
.d2h-code-line del,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||||
.d2h-code-line ins,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||||
.d2h-code-side-line del,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
|
||||||
.d2h-code-side-line ins {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
|
||||||
border-radius: 0.2em;
|
border-radius: 0.2em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: -1px;
|
margin-top: -1px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.theme-light .d2h-code-line ins,
|
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||||
.theme-light .d2h-code-side-line ins {
|
.theme-light
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-code-side-line
|
||||||
|
ins {
|
||||||
background-color: #97f295;
|
background-color: #97f295;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.theme-dark .d2h-code-line ins,
|
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||||
.theme-dark .d2h-code-side-line ins {
|
.theme-dark
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-code-side-line
|
||||||
|
ins {
|
||||||
background-color: #1d921996;
|
background-color: #1d921996;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.d2h-code-line-prefix {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
|
||||||
word-wrap: normal;
|
word-wrap: normal;
|
||||||
background: none;
|
background: none;
|
||||||
display: inline;
|
display: inline;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
}
|
}
|
||||||
.line-num1 {
|
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.line-num1,
|
.workspace-leaf-content[data-type="diff-view"] .line-num1,
|
||||||
.line-num2 {
|
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
@ -214,10 +229,10 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
width: 3.5em;
|
width: 3.5em;
|
||||||
}
|
}
|
||||||
.line-num2 {
|
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
.d2h-code-linenumber {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
border: solid var(--background-modifier-border);
|
border: solid var(--background-modifier-border);
|
||||||
border-width: 0 1px;
|
border-width: 0 1px;
|
||||||
|
|
@ -230,10 +245,10 @@
|
||||||
text-align: right;
|
text-align: right;
|
||||||
width: 7.5em;
|
width: 7.5em;
|
||||||
}
|
}
|
||||||
.d2h-code-linenumber:after {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
|
||||||
content: "\200b";
|
content: "\200b";
|
||||||
}
|
}
|
||||||
.d2h-code-side-linenumber {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
border: solid var(--background-modifier-border);
|
border: solid var(--background-modifier-border);
|
||||||
border-width: 0 1px;
|
border-width: 0 1px;
|
||||||
|
|
@ -249,119 +264,133 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
width: 4em;
|
width: 4em;
|
||||||
}
|
}
|
||||||
.d2h-code-side-linenumber:after {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
|
||||||
content: "\200b";
|
content: "\200b";
|
||||||
}
|
}
|
||||||
.d2h-code-side-emptyplaceholder,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
|
||||||
.d2h-emptyplaceholder {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
border-color: var(--background-modifier-border);
|
border-color: var(--background-modifier-border);
|
||||||
}
|
}
|
||||||
.d2h-code-line-prefix,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
|
||||||
.d2h-code-linenumber,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
|
||||||
.d2h-code-side-linenumber,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
|
||||||
.d2h-emptyplaceholder {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
.d2h-code-linenumber,
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
|
||||||
.d2h-code-side-linenumber {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
|
||||||
direction: rtl;
|
direction: rtl;
|
||||||
}
|
}
|
||||||
.theme-light .d2h-del {
|
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
|
||||||
background-color: #fee8e9;
|
background-color: #fee8e9;
|
||||||
border-color: #e9aeae;
|
border-color: #e9aeae;
|
||||||
}
|
}
|
||||||
.theme-light .d2h-ins {
|
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
|
||||||
background-color: #dfd;
|
background-color: #dfd;
|
||||||
border-color: #b4e2b4;
|
border-color: #b4e2b4;
|
||||||
}
|
}
|
||||||
.theme-dark .d2h-del {
|
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
|
||||||
background-color: #521b1d83;
|
background-color: #521b1d83;
|
||||||
border-color: #691d1d73;
|
border-color: #691d1d73;
|
||||||
}
|
}
|
||||||
.theme-dark .d2h-ins {
|
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
|
||||||
background-color: rgba(30, 71, 30, 0.5);
|
background-color: rgba(30, 71, 30, 0.5);
|
||||||
border-color: #13501381;
|
border-color: #13501381;
|
||||||
}
|
}
|
||||||
.d2h-info {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
border-color: var(--background-modifier-border);
|
border-color: var(--background-modifier-border);
|
||||||
color: var(--text-normal);
|
color: var(--text-normal);
|
||||||
}
|
}
|
||||||
.theme-light .d2h-file-diff .d2h-del.d2h-change {
|
.theme-light
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-file-diff
|
||||||
|
.d2h-del.d2h-change {
|
||||||
background-color: #fdf2d0;
|
background-color: #fdf2d0;
|
||||||
}
|
}
|
||||||
.theme-dark .d2h-file-diff .d2h-del.d2h-change {
|
.theme-dark
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-file-diff
|
||||||
|
.d2h-del.d2h-change {
|
||||||
background-color: #55492480;
|
background-color: #55492480;
|
||||||
}
|
}
|
||||||
.theme-light .d2h-file-diff .d2h-ins.d2h-change {
|
.theme-light
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-file-diff
|
||||||
|
.d2h-ins.d2h-change {
|
||||||
background-color: #ded;
|
background-color: #ded;
|
||||||
}
|
}
|
||||||
.theme-dark .d2h-file-diff .d2h-ins.d2h-change {
|
.theme-dark
|
||||||
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-file-diff
|
||||||
|
.d2h-ins.d2h-change {
|
||||||
background-color: rgba(37, 78, 37, 0.418);
|
background-color: rgba(37, 78, 37, 0.418);
|
||||||
}
|
}
|
||||||
.d2h-file-list-wrapper {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
.d2h-file-list-wrapper a {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
|
||||||
color: #3572b0;
|
color: #3572b0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
.d2h-file-list-wrapper a:visited {
|
.workspace-leaf-content[data-type="diff-view"]
|
||||||
|
.d2h-file-list-wrapper
|
||||||
|
a:visited {
|
||||||
color: #3572b0;
|
color: #3572b0;
|
||||||
}
|
}
|
||||||
.d2h-file-list-header {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.d2h-file-list-title {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
.d2h-file-list-line {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.d2h-file-list {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
|
||||||
display: block;
|
display: block;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.d2h-file-list > li {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
|
||||||
border-bottom: 1px solid var(--background-modifier-border);
|
border-bottom: 1px solid var(--background-modifier-border);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
.d2h-file-list > li:last-child {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
.d2h-file-switch {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: none;
|
display: none;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
.d2h-icon {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.d2h-deleted {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
|
||||||
color: #c33;
|
color: #c33;
|
||||||
}
|
}
|
||||||
.d2h-added {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
|
||||||
color: #399839;
|
color: #399839;
|
||||||
}
|
}
|
||||||
.d2h-changed {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
|
||||||
color: #d0b44c;
|
color: #d0b44c;
|
||||||
}
|
}
|
||||||
.d2h-moved {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
|
||||||
color: #3572b0;
|
color: #3572b0;
|
||||||
}
|
}
|
||||||
.d2h-tag {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
|
||||||
background-color: var(--background-primary);
|
background-color: var(--background-primary);
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
|
|
@ -370,15 +399,15 @@
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
padding: 0 2px;
|
padding: 0 2px;
|
||||||
}
|
}
|
||||||
.d2h-deleted-tag {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
|
||||||
border: 2px solid #c33;
|
border: 2px solid #c33;
|
||||||
}
|
}
|
||||||
.d2h-added-tag {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
|
||||||
border: 1px solid #399839;
|
border: 1px solid #399839;
|
||||||
}
|
}
|
||||||
.d2h-changed-tag {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
|
||||||
border: 1px solid #d0b44c;
|
border: 1px solid #d0b44c;
|
||||||
}
|
}
|
||||||
.d2h-moved-tag {
|
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
|
||||||
border: 1px solid #3572b0;
|
border: 1px solid #3572b0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
104
notes/.obsidian/plugins/obsidian-kanban/main.js
vendored
104
notes/.obsidian/plugins/obsidian-kanban/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-kanban",
|
"id": "obsidian-kanban",
|
||||||
"name": "Kanban",
|
"name": "Kanban",
|
||||||
"version": "1.2.28",
|
"version": "1.2.39",
|
||||||
"minAppVersion": "0.12.3",
|
"minAppVersion": "0.12.3",
|
||||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||||
"author": "mgmeyers",
|
"author": "mgmeyers",
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
66
notes/.obsidian/plugins/obsidian-latex/main.js
vendored
66
notes/.obsidian/plugins/obsidian-latex/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-latex",
|
"id": "obsidian-latex",
|
||||||
"name": "Extended MathJax",
|
"name": "Extended MathJax",
|
||||||
"version": "0.2.0",
|
"version": "0.3.0",
|
||||||
"minAppVersion": "0.11.13",
|
"minAppVersion": "0.12.16",
|
||||||
"description": "Adds support for a MathJax preamble and enables additional MathJax extensions for specific domains (chemistry, proofs).",
|
"description": "Adds support for a MathJax preamble and enables additional MathJax extensions for specific domains (chemistry, proofs).",
|
||||||
"author": "Xavier Denis",
|
"author": "Xavier Denis",
|
||||||
"authorUrl": "https://github.com/xldenis/obsidian-latex",
|
"authorUrl": "https://github.com/xldenis/obsidian-latex",
|
||||||
|
|
|
||||||
652
notes/.obsidian/plugins/obsidian-outliner/main.js
vendored
652
notes/.obsidian/plugins/obsidian-outliner/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-outliner",
|
"id": "obsidian-outliner",
|
||||||
"name": "Outliner",
|
"name": "Outliner",
|
||||||
"version": "2.0.7",
|
"version": "2.2.5",
|
||||||
"minAppVersion": "0.13.14",
|
"minAppVersion": "0.13.23",
|
||||||
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
"description": "Work with your lists like in Workflowy or RoamResearch.",
|
||||||
"author": "Viacheslav Slinko",
|
"author": "Viacheslav Slinko",
|
||||||
"authorUrl": "https://github.com/vslinko",
|
"authorUrl": "https://github.com/vslinko",
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,16 @@
|
||||||
/* lists */
|
/* lists */
|
||||||
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
.outliner-plugin-better-lists .cm-s-obsidian .HyperMD-list-line {
|
||||||
padding-top: 0.4em;
|
padding-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* bullets */
|
/* bullets */
|
||||||
.outliner-plugin-better-bullets
|
.outliner-plugin-better-bullets
|
||||||
.cm-s-obsidian:not(.is-live-preview)
|
.cm-s-obsidian:not(.is-live-preview)
|
||||||
.cm-formatting-list-ul:before,
|
.cm-formatting-list-ul:before,
|
||||||
.outliner-plugin-better-bullets .cm-s-obsidian.is-live-preview .list-bullet:before {
|
.outliner-plugin-better-bullets
|
||||||
|
.cm-s-obsidian.is-live-preview
|
||||||
|
.list-bullet:before {
|
||||||
|
visibility: visible;
|
||||||
content: "•";
|
content: "•";
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
@ -16,29 +19,73 @@
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.outliner-plugin-better-bullets
|
||||||
|
.cm-s-obsidian.is-live-preview
|
||||||
|
.list-bullet::after {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* lines */
|
/* lines */
|
||||||
.outliner-plugin-vertical-lines .cm-s-obsidian .HyperMD-list-line {
|
.outliner-plugin-list-lines-scroller {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
padding: 20px;
|
||||||
|
padding-left: 0;
|
||||||
|
pointer-events: none;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outliner-plugin-vertical-lines .cm-hmd-list-indent {
|
.outliner-plugin-list-lines-content-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outliner-plugin-vertical-lines .cm-line .cm-hmd-list-indent::before {
|
.outliner-plugin-list-line {
|
||||||
content: "";
|
pointer-events: auto;
|
||||||
display: block;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
width: 5px;
|
||||||
|
margin-left: 0.5ch;
|
||||||
|
margin-top: 1.8em;
|
||||||
|
z-index: 1;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
background-image: linear-gradient(
|
background-image: linear-gradient(
|
||||||
to right,
|
to right,
|
||||||
var(--text-faint) 1px,
|
var(--text-faint) 1px,
|
||||||
transparent 1px
|
transparent 1px
|
||||||
);
|
);
|
||||||
/* https://developer.mozilla.org/en-US/docs/Web/CSS/length#units */
|
background-position-x: 2px;
|
||||||
background-size: 1.8ch 1px;
|
background-repeat: no-repeat;
|
||||||
background-position-x: 3px;
|
}
|
||||||
width: 100%;
|
|
||||||
left: 0;
|
.outliner-plugin-better-bullets .outliner-plugin-list-line {
|
||||||
top: -1.6em;
|
margin-top: 2em;
|
||||||
padding-bottom: 999em;
|
}
|
||||||
|
|
||||||
|
.markdown-source-view.mod-cm6.is-readable-line-width
|
||||||
|
.outliner-plugin-list-lines-content-container {
|
||||||
|
max-width: 700px;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-source-view.mod-cm6.is-folding .outliner-plugin-list-line {
|
||||||
|
margin-left: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.outliner-plugin-better-bullets
|
||||||
|
.markdown-source-view.mod-cm6.is-folding
|
||||||
|
.outliner-plugin-list-line {
|
||||||
|
margin-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.outliner-plugin-list-line:hover {
|
||||||
|
background: var(--text-faint);
|
||||||
|
}
|
||||||
|
|
||||||
|
.outliner-plugin-vertical-lines
|
||||||
|
.markdown-source-view.mod-cm6
|
||||||
|
.cm-indent::before {
|
||||||
|
content: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -178,6 +178,13 @@ var getCurrentHeaderDepth = (headings, cursor) => {
|
||||||
var getSubsequentHeadings = (headings, cursor) => {
|
var getSubsequentHeadings = (headings, cursor) => {
|
||||||
return headings.filter((heading) => heading.position.end.line > cursor.line);
|
return headings.filter((heading) => heading.position.end.line > cursor.line);
|
||||||
};
|
};
|
||||||
|
var getPreviousLevelHeading = (headings, currentHeading) => {
|
||||||
|
const index = headings.indexOf(currentHeading);
|
||||||
|
const targetHeadings = headings.slice(0, index).reverse();
|
||||||
|
return targetHeadings.find((item, _index, _array) => {
|
||||||
|
return item.level == currentHeading.level - 1;
|
||||||
|
});
|
||||||
|
};
|
||||||
var createToc = ({headings = []}, cursor, settings) => {
|
var createToc = ({headings = []}, cursor, settings) => {
|
||||||
const currentDepth = getCurrentHeaderDepth(headings, cursor);
|
const currentDepth = getCurrentHeaderDepth(headings, cursor);
|
||||||
const subsequentHeadings = getSubsequentHeadings(headings, cursor);
|
const subsequentHeadings = getSubsequentHeadings(headings, cursor);
|
||||||
|
|
@ -201,7 +208,12 @@ var createToc = ({headings = []}, cursor, settings) => {
|
||||||
const links = includedHeadings.map((heading) => {
|
const links = includedHeadings.map((heading) => {
|
||||||
const itemIndication = settings.listStyle === "number" && "1." || "-";
|
const itemIndication = settings.listStyle === "number" && "1." || "-";
|
||||||
const indent = new Array(Math.max(0, heading.level - firstHeadingDepth)).fill(" ").join("");
|
const indent = new Array(Math.max(0, heading.level - firstHeadingDepth)).fill(" ").join("");
|
||||||
return `${indent}${itemIndication} [[#${heading.heading}|${heading.heading}]]`;
|
const previousLevelHeading = getPreviousLevelHeading(includedHeadings, heading);
|
||||||
|
if (typeof previousLevelHeading == "undefined") {
|
||||||
|
return `${indent}${itemIndication} [[#${heading.heading}|${heading.heading}]]`;
|
||||||
|
} else {
|
||||||
|
return `${indent}${itemIndication} [[#${previousLevelHeading.heading}#${heading.heading}|${heading.heading}]]`;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return import_endent.default`
|
return import_endent.default`
|
||||||
${settings.title ? `${settings.title}
|
${settings.title ? `${settings.title}
|
||||||
|
|
|
||||||
|
|
@ -6,5 +6,5 @@
|
||||||
"description": "Create a table of contents for a note.",
|
"description": "Create a table of contents for a note.",
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"minAppVersion": "0.10.12",
|
"minAppVersion": "0.10.12",
|
||||||
"version": "0.1.2"
|
"version": "0.1.3"
|
||||||
}
|
}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -6,6 +6,6 @@
|
||||||
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"minAppVersion": "0.13.8",
|
"minAppVersion": "0.13.8",
|
||||||
"version": "0.17.2",
|
"version": "0.17.3",
|
||||||
"js": "main.js"
|
"js": "main.js"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
10905
notes/.obsidian/plugins/templater-obsidian/main.js
vendored
10905
notes/.obsidian/plugins/templater-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "templater-obsidian",
|
"id": "templater-obsidian",
|
||||||
"name": "Templater",
|
"name": "Templater",
|
||||||
"version": "1.9.11",
|
"version": "1.12.0",
|
||||||
"description": "Create and use templates",
|
"description": "Create and use templates",
|
||||||
"minAppVersion": "0.11.13",
|
"minAppVersion": "0.11.13",
|
||||||
"author": "SilentVoid",
|
"author": "SilentVoid",
|
||||||
|
|
|
||||||
217
notes/.obsidian/plugins/url-into-selection/main.js
vendored
217
notes/.obsidian/plugins/url-into-selection/main.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -4,5 +4,5 @@
|
||||||
"description": "Paste URL \"into\" selected text.",
|
"description": "Paste URL \"into\" selected text.",
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"js": "main.js",
|
"js": "main.js",
|
||||||
"version": "1.6.0"
|
"version": "1.7.0"
|
||||||
}
|
}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "zoottelkeeper-obsidian-plugin",
|
"id": "zoottelkeeper-obsidian-plugin",
|
||||||
"name": "Zoottelkeeper Plugin",
|
"name": "Zoottelkeeper Plugin",
|
||||||
"version": "0.17.3",
|
"version": "0.18.0",
|
||||||
"minAppVersion": "0.12.1",
|
"minAppVersion": "0.12.1",
|
||||||
"description": "This plugin automatically creates, maintains and tags MOCs for all your folders.",
|
"description": "This plugin automatically creates, maintains and tags MOCs for all your folders.",
|
||||||
"author": "Akos Balasko, Micha Brugger",
|
"author": "Akos Balasko, Micha Brugger",
|
||||||
|
|
|
||||||
3
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/styles.css
vendored
Normal file
3
notes/.obsidian/plugins/zoottelkeeper-obsidian-plugin/styles.css
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
.zottelkeeper {
|
||||||
|
|
||||||
|
}
|
||||||
BIN
notes/data/šroub M24.bmp
Normal file
BIN
notes/data/šroub M24.bmp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 MiB |
|
|
@ -167,5 +167,6 @@ $$D=b^2-4ac=(-7)^2-4*1*11=49-44=5$$
|
||||||
|
|
||||||
|
|
||||||
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
|
||||||
|
- [[mat/Rovnice/Soustavy rovnic.excalidraw|Soustavy rovnic.excalidraw]]
|
||||||
- [[mat/Rovnice/Soustavy rovnic|Soustavy rovnic]]
|
- [[mat/Rovnice/Soustavy rovnic|Soustavy rovnic]]
|
||||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||||
|
|
|
||||||
40
notes/mat/Rovnice/Soustavy rovnic.excalidraw.md
Normal file
40
notes/mat/Rovnice/Soustavy rovnic.excalidraw.md
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
excalidraw-plugin: parsed
|
||||||
|
|
||||||
|
---
|
||||||
|
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠==
|
||||||
|
|
||||||
|
|
||||||
|
# Text Elements
|
||||||
|
%%
|
||||||
|
# Drawing
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"type": "excalidraw",
|
||||||
|
"version": 2,
|
||||||
|
"source": "https://excalidraw.com",
|
||||||
|
"elements": [],
|
||||||
|
"appState": {
|
||||||
|
"theme": "light",
|
||||||
|
"viewBackgroundColor": "#ffffff",
|
||||||
|
"currentItemStrokeColor": "#000000",
|
||||||
|
"currentItemBackgroundColor": "transparent",
|
||||||
|
"currentItemFillStyle": "hachure",
|
||||||
|
"currentItemStrokeWidth": 1,
|
||||||
|
"currentItemStrokeStyle": "solid",
|
||||||
|
"currentItemRoughness": 1,
|
||||||
|
"currentItemOpacity": 100,
|
||||||
|
"currentItemFontFamily": 1,
|
||||||
|
"currentItemFontSize": 20,
|
||||||
|
"currentItemTextAlign": "left",
|
||||||
|
"currentItemStrokeSharpness": "sharp",
|
||||||
|
"currentItemStartArrowhead": null,
|
||||||
|
"currentItemEndArrowhead": "arrow",
|
||||||
|
"currentItemLinearStrokeSharpness": "round",
|
||||||
|
"gridSize": null
|
||||||
|
},
|
||||||
|
"files": {}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
%%
|
||||||
2
notes/tek/Spoj kantavým šroubem, sestava.md
Normal file
2
notes/tek/Spoj kantavým šroubem, sestava.md
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Spoj kantavým šroubem, sestava
|
||||||
|

|
||||||
|
|
@ -15,6 +15,7 @@ imagePrefix: 'data/'
|
||||||
- [[tek/Metrický závit|Metrický závit]]
|
- [[tek/Metrický závit|Metrický závit]]
|
||||||
- [[tek/Opakující se prvky|Opakující se prvky]]
|
- [[tek/Opakující se prvky|Opakující se prvky]]
|
||||||
- [[tek/Přerušení|Přerušení]]
|
- [[tek/Přerušení|Přerušení]]
|
||||||
|
- [[tek/Spoj kantavým šroubem, sestava|Spoj kantavým šroubem, sestava]]
|
||||||
- [[tek/Spoj průchozím šroubem|Spoj průchozím šroubem]]
|
- [[tek/Spoj průchozím šroubem|Spoj průchozím šroubem]]
|
||||||
- [[tek/Struktura povrchu|Struktura povrchu]]
|
- [[tek/Struktura povrchu|Struktura povrchu]]
|
||||||
%% Zoottelkeeper: End of the autogenerated index file list %%
|
%% Zoottelkeeper: End of the autogenerated index file list %%
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue