vault backup: 2024-08-14 19:39:40

This commit is contained in:
Elizabeth
2024-08-14 19:39:40 +02:00
commit e871d43bdb
71 changed files with 180156 additions and 0 deletions

3
.obsidian/app.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"promptDelete": false
}

1
.obsidian/appearance.json vendored Normal file
View File

@@ -0,0 +1 @@
{}

4
.obsidian/community-plugins.json vendored Normal file
View File

@@ -0,0 +1,4 @@
[
"folder-note-plugin",
"obsidian-git"
]

30
.obsidian/core-plugins-migration.json vendored Normal file
View File

@@ -0,0 +1,30 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"properties": false,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false
}

20
.obsidian/core-plugins.json vendored Normal file
View File

@@ -0,0 +1,20 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"page-preview",
"daily-notes",
"templates",
"note-composer",
"command-palette",
"editor-status",
"bookmarks",
"outline",
"word-count",
"file-recovery"
]

22
.obsidian/graph.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": false
}

View File

@@ -0,0 +1,9 @@
{
"folderNoteHide": true,
"folderNoteType": "inside",
"folderNoteName": "_about_",
"folderNoteKey": "ctrl",
"folderNoteAutoRename": true,
"folderDelete2Note": false,
"folderNoteStrInit": ""
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "folder-note-plugin",
"name": "Folder Note",
"version": "0.7.3",
"minAppVersion": "0.9.12",
"description": "Click a folder node to show a note describing the folder.",
"author": "xpgo",
"authorUrl": "https://github.com/xpgo/obsidian-folder-note",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,229 @@
/* hide the folder note file node */
div.is-folder-note {
display: none;
}
/* indicate the folder has note */
div.has-folder-note {
color: var(--text-nav-selected);
}
/*---------------------------------------------
Cute card view
-----------------------------------------------*/
.cute-card-band {
width: 100%;
max-width: 900px;
margin: 0 auto;
margin-top: 15px;
margin-bottom: 5px;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
grid-gap: 20px;
}
@media (min-width: 30em) {
.cute-card-band {
grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 60em) {
.cute-card-band {
grid-template-columns: repeat(3, 1fr);
}
}
.cute-card-view {
background: var(--background-accent);
text-decoration: none !important;
color: var(--text-normal);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
min-height: 100%;
position: relative;
top: 0;
transition: all 0.1s ease-in;
border-radius: 10px;
}
.cute-card-view:hover {
top: -2px;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}
.cute-card-view article {
padding: 15px;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.cute-card-view h1 {
font-size: 1.2rem;
margin: 0;
color: var(--text-accent);
}
.cute-card-view a {
text-decoration: none !important;
}
.cute-card-view p {
flex: 1;
line-height: 1.0;
}
.cute-card-view span {
font-size: 0.8rem;
font-weight: bold;
color: var(--text-faint);
letter-spacing: 0.05em;
}
.cute-card-view .thumb {
padding-bottom: 60%;
background-size: cover;
background-position: center center;
border-radius: 10px 10px 0px 0px;
}
.cute-card-view .thumb-color {
padding-bottom: 10%;
background-size: cover;
background-position: center center;
border-radius: 10px 10px 0px 0px;
text-transform: uppercase;
font-size: 1.2rem;
font-weight: bold;
text-align: center;
color: #FFFFFF;
padding: 10px;
}
.cute-card-view .thumb-color-folder {
background-color: slateblue;
}
.cute-card-view .thumb-color-note {
background-color: salmon;
}
/*---------------------------------------------
strip card view
-----------------------------------------------*/
.strip-card-band {
width: 100%;
}
.strip-card-view {
width: 100%;
max-width: 100%;
margin-top: 1.0rem;
margin-bottom: 1.0rem;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
min-height: 8rem;
-webkit-border-radius: 10px;
border-radius: 10px;
overflow: hidden;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
-webkit-box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
box-shadow: 0 1px 1px 0 rgba(31, 35, 46, 0.15);
/* add by xpgo */
background: var(--background-accent);
text-decoration: none !important;
color: var(--text-normal);
}
.strip-card-view:hover {
-webkit-transform: translate(0px, -2px);
-ms-transform: translate(0px, -2px);
transform: translate(0px, -2px);
-webkit-box-shadow: 0 15px 45px -10px rgba(10, 16, 34, 0.2);
box-shadow: 0 15px 45px -10px rgba(10, 16, 34, 0.2);
}
.strip-card-view .thumb {
width: 20%;
max-width: 100%;
min-height: 9rem;
-webkit-background-size: cover;
background-size: cover;
background-position: 50% 50%;
}
.strip-card-view .thumb-color {
width: 20%;
max-width: 100%;
min-height: 9rem;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
/* add by xpgo */
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
text-transform: uppercase;
font-size: 1.2rem;
font-weight: bold;
text-align: center;
color: #FFFFFF;
}
.strip-card-view .thumb-color-folder {
background-color: slateblue;
}
.strip-card-view .thumb-color-note {
background-color: salmon;
}
.strip-card-view article {
padding: 1rem;
width: 80%;
}
.strip-card-view h1 {
font-size: 1.5rem;
margin: 0 0 10px;
color: var(--text-accent);
}
.strip-card-view a {
text-decoration: none !important;
}
.strip-card-view p {
margin-top: 0;
flex: 1;
line-height: 1.0;
}
.strip-card-view span {
font-size: 0.8rem;
font-weight: bold;
color: var(--text-faint);
letter-spacing: 0.05em;
}

View File

@@ -0,0 +1,58 @@
{
"commitMessage": "vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 0,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": false,
"disablePush": false,
"pullBeforePush": true,
"disablePopups": false,
"disablePopupsForNoChanges": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "merge",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false,
"treeStructure": false,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": true,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"authorInHistoryView": "full",
"dateInHistoryView": false,
"lineAuthor": {
"show": false,
"followMovement": "inactive",
"authorDisplay": "initials",
"showCommitHash": false,
"dateTimeFormatOptions": "date",
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
"dateTimeTimezone": "viewer-local",
"coloringMaxAge": "1y",
"colorNew": {
"r": 255,
"g": 150,
"b": 150
},
"colorOld": {
"r": 120,
"g": 160,
"b": 255
},
"textColorCss": "var(--text-muted)",
"ignoreWhitespace": false,
"gutterSpacingFallbackLength": 5,
"lastShownAuthorDisplay": "initials",
"lastShownDateTimeFormatOptions": "date"
},
"autoCommitMessage": "vault backup: {{date}}"
}

44901
.obsidian/plugins/obsidian-git/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

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

View File

@@ -0,0 +1,562 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s);
}
.workspace-leaf-content[data-type="git-view"] .view-content {
padding: 0;
}
.workspace-leaf-content[data-type="git-history-view"] .view-content {
padding: 0;
}
.loading > svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
.git-tools {
display: flex;
margin-left: auto;
}
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.is-active .git-tools .buttons > * {
color: var(--nav-item-color-active);
}
.git-author {
color: var(--text-accent);
}
.git-date {
color: var(--text-accent);
}
.git-ref {
color: var(--text-accent);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-list-wrapper
a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div,
.line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}
@media (max-width: 800px) {
/* hide git blame gutter not to superpose text */
.cm-gutterElement.obs-git-blame-gutter {
display: none;
}
}

View File

@@ -0,0 +1,143 @@
{
"remoteType": "",
"useCustomRequestHandler": false,
"couchDB_URI": "",
"couchDB_USER": "",
"couchDB_PASSWORD": "",
"couchDB_DBNAME": "",
"liveSync": true,
"syncOnSave": true,
"syncOnStart": false,
"savingDelay": 200,
"lessInformationInLog": false,
"gcDelay": 0,
"versionUpFlash": "",
"minimumChunkSize": 20,
"longLineThreshold": 250,
"showVerboseLog": false,
"suspendFileWatching": false,
"trashInsteadDelete": true,
"periodicReplication": false,
"periodicReplicationInterval": 60,
"syncOnFileOpen": false,
"encrypt": false,
"passphrase": "",
"usePathObfuscation": false,
"doNotDeleteFolder": true,
"resolveConflictsByNewerFile": true,
"batchSave": false,
"batchSaveMinimumDelay": 5,
"batchSaveMaximumDelay": 60,
"deviceAndVaultName": "",
"usePluginSettings": false,
"showOwnPlugins": false,
"showStatusOnEditor": true,
"showStatusOnStatusbar": true,
"showOnlyIconsOnEditor": false,
"usePluginSync": true,
"autoSweepPlugins": true,
"autoSweepPluginsPeriodic": true,
"notifyPluginOrSettingUpdated": true,
"checkIntegrityOnSave": false,
"batch_size": 25,
"batches_limit": 25,
"useHistory": true,
"disableRequestURI": true,
"skipOlderFilesOnSync": true,
"checkConflictOnlyOnOpen": false,
"showMergeDialogOnlyOnActive": false,
"syncInternalFiles": true,
"syncInternalFilesBeforeReplication": false,
"syncInternalFilesIgnorePatterns": "\\/node_modules\\/, \\/\\.git\\/, \\/obsidian-livesync\\/",
"syncInternalFilesInterval": 60,
"additionalSuffixOfDatabaseName": "3719da583cc6987d",
"ignoreVersionCheck": false,
"lastReadUpdates": 23,
"deleteMetadataOfDeletedFiles": true,
"syncIgnoreRegEx": "",
"syncOnlyRegEx": "",
"customChunkSize": 50,
"readChunksOnline": true,
"watchInternalFileChanges": true,
"automaticallyDeleteMetadataOfDeletedFiles": 0,
"disableMarkdownAutoMerge": false,
"writeDocumentsIfConflicted": false,
"useDynamicIterationCount": false,
"syncAfterMerge": false,
"configPassphraseStore": "",
"encryptedPassphrase": "",
"encryptedCouchDBConnection": "%715397eb7e2bc5d56bc88bf109000000fafc3ff1f1fcef6659c7a50964edabb8alBKDrfdWWaYF/bum5agBsCe1bGO+/jGE55lOTiXvGH+KFPQG1+agqxg3mu4rqrXcHUXhS4tz8TeWYy5hjobGmJFAGHDJJvTp7rO+rQ8OrXmEkJDEIOaOfpLYgTIFPp6WGBgznqSMLqHUlMpwDg7BSOzln535X8o4J88CVcGZMtc/kU5cG4PjI7n6qHmkQlMJ8+CTvrEcVKx30VZwX22X6XRZ2p4+aGeslj6BvKFKjRtMtSyQN9JcV1BCfeUBymYV9soaOXdV8jRQKVsANvn1O/ggEAWAafYkcnYYGw9S6OowhSwnSgBH9W9ACckmszV7L7LhFSkLvbBmOQ=",
"permitEmptyPassphrase": false,
"useIndexedDBAdapter": true,
"useTimeouts": false,
"writeLogToTheFile": false,
"doNotPaceReplication": false,
"hashCacheMaxCount": 300,
"hashCacheMaxAmount": 50,
"concurrencyOfReadChunksOnline": 30,
"minimumIntervalOfReadChunksOnline": 25,
"hashAlg": "xxhash64",
"suspendParseReplicationResult": false,
"doNotSuspendOnFetching": false,
"useIgnoreFiles": false,
"ignoreFiles": ".gitignore",
"syncOnEditorSave": false,
"pluginSyncExtendedSetting": {
"PLUGIN_DATA/folder-note-plugin": {
"key": "PLUGIN_DATA/folder-note-plugin",
"mode": 1,
"files": [
"plugins/folder-note-plugin/data.json"
]
},
"PLUGIN_MAIN/folder-note-plugin": {
"key": "PLUGIN_MAIN/folder-note-plugin",
"mode": 1,
"files": [
"plugins/folder-note-plugin/manifest.json",
"plugins/folder-note-plugin/main.js",
"plugins/folder-note-plugin/styles.css"
]
},
"PLUGIN_DATA/obsidian-livesync": {
"key": "PLUGIN_DATA/obsidian-livesync",
"mode": 1,
"files": [
"plugins/obsidian-livesync/data.json"
]
},
"PLUGIN_MAIN/obsidian-livesync": {
"key": "PLUGIN_MAIN/obsidian-livesync",
"mode": 1,
"files": [
"plugins/obsidian-livesync/manifest.json",
"plugins/obsidian-livesync/main.js",
"plugins/obsidian-livesync/styles.css"
]
}
},
"syncMaxSizeInMB": 50,
"settingSyncFile": "settings",
"writeCredentialsForSettingSync": false,
"notifyAllSettingSyncFile": true,
"isConfigured": true,
"settingVersion": 0,
"enableCompression": false,
"accessKey": "",
"bucket": "",
"endpoint": "",
"region": "",
"secretKey": "",
"useEden": false,
"maxChunksInEden": 10,
"maxTotalLengthInEden": 1024,
"maxAgeInEden": 10,
"disableCheckingConfigMismatch": false,
"displayLanguage": "",
"enableChunkSplitterV2": false,
"disableWorkerForGeneratingChunks": false,
"processSmallFilesInUIThread": false,
"notifyThresholdOfRemoteStorageSize": 0,
"usePluginSyncV2": false,
"usePluginEtc": false
}

45102
.obsidian/plugins/obsidian-livesync/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-livesync",
"name": "Self-hosted LiveSync",
"version": "0.23.20",
"minAppVersion": "0.9.12",
"description": "Community implementation of self-hosted livesync. Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.",
"author": "vorotamoroz",
"authorUrl": "https://github.com/vrtmrz",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,342 @@
.added {
color: var(--text-on-accent);
background-color: var(--text-accent);
}
.normal {
color: var(--text-normal);
}
.deleted {
color: var(--text-on-accent);
background-color: var(--text-muted);
}
.op-scrollable {
overflow-y: scroll;
/* min-height: 280px; */
max-height: 280px;
user-select: text;
}
.op-pre {
white-space: pre-wrap;
}
.op-warn {
border: 1px solid salmon;
padding: 2px;
border-radius: 4px;
}
.op-warn::before {
content: "Warning";
font-weight: bold;
color: salmon;
position: relative;
display: block;
}
.op-warn-info {
border: 1px solid rgb(255, 209, 81);
padding: 2px;
border-radius: 4px;
}
.op-warn-info::before {
content: "Notice";
font-weight: bold;
color: rgb(255, 209, 81);
position: relative;
display: block;
}
.syncstatusbar {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.tcenter {
text-align: center;
}
.sls-plugins-wrap {
display: flex;
flex-grow: 1;
max-height: 50vh;
overflow-y: scroll;
}
.sls-plugins-tbl {
border: 1px solid var(--background-modifier-border);
width: 100%;
max-height: 80%;
}
.divider th {
border-top: 1px solid var(--background-modifier-border);
}
.sls-header-button {
margin-left: 2em;
}
.sls-hidden {
display: none;
}
:root {
--sls-log-text: "";
}
.sls-troubleshoot-preview {
max-width: max-content;
}
.sls-troubleshoot-preview img {
max-width: 100%;
}
.CodeMirror-wrap::before,
.markdown-preview-view.cm-s-obsidian::before,
.markdown-source-view.cm-s-obsidian::before,
.canvas-wrapper::before,
.empty-state::before {
content: var(--sls-log-text, "");
font-variant-numeric: tabular-nums;
font-variant-emoji: emoji;
tab-size: 4;
text-align: right;
white-space: pre-wrap;
position: absolute;
border-radius: 4px;
/* border:1px solid --background-modifier-border; */
display: inline-block;
top: 8px;
color: --text-normal;
opacity: 0.5;
font-size: 80%;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.empty-state::before,
.markdown-preview-view.cm-s-obsidian::before,
.markdown-source-view.cm-s-obsidian::before {
top: var(--header-height);
right: 1em;
}
.is-mobile .empty-state::before,
.is-mobile .markdown-preview-view.cm-s-obsidian::before,
.is-mobile .markdown-source-view.cm-s-obsidian::before {
top: var(--view-header-height);
right: 1em;
}
.canvas-wrapper::before {
right: 48px;
}
.CodeMirror-wrap::before {
right: 0px;
}
.cm-s-obsidian > .cm-editor::before {
right: 16px;
}
.sls-setting-tab {
display: none;
}
div.sls-setting-menu-btn {
color: var(--text-normal);
background-color: var(--background-secondary-alt);
border-radius: 4px 4px 0 0;
padding: 6px 10px;
cursor: pointer;
margin-right: 12px;
font-family: "Inter", sans-serif;
outline: none;
user-select: none;
flex-grow: 1;
text-align: center;
flex-shrink: 1;
}
.sls-setting-label.selected {
/* order: 1; */
flex-grow: 1;
/* width: 100%; */
}
.sls-setting-tab:hover ~ div.sls-setting-menu-btn,
.sls-setting-label.selected .sls-setting-tab:checked ~ div.sls-setting-menu-btn {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
}
.sls-setting-menu {
display: flex;
flex-direction: row;
/* flex-wrap: wrap; */
overflow-x: auto;
}
.sls-setting-label {
flex-grow: 1;
display: inline-flex;
justify-content: center;
}
.setting-collapsed {
display: none;
}
.sls-plugins-tbl-buttons {
text-align: right;
}
.sls-plugins-tbl-buttons button {
flex-grow: 0;
padding: 6px 10px;
}
.sls-plugins-tbl-device-head {
background-color: var(--background-secondary-alt);
color: var(--text-accent);
}
.op-flex {
display: flex;
}
.op-flex input {
display: inline-flex;
flex-grow: 1;
margin-bottom: 8px;
}
.op-info {
display: inline-flex;
flex-grow: 1;
border-bottom: 1px solid var(--background-modifier-border);
width: 100%;
margin-bottom: 4px;
padding-bottom: 4px;
}
.history-added {
color: var(--text-on-accent);
background-color: var(--text-accent);
}
.history-normal {
color: var(--text-normal);
}
.history-deleted {
color: var(--text-on-accent);
background-color: var(--text-muted);
text-decoration: line-through;
}
.ob-btn-config-fix label {
margin-right: 40px;
}
.ob-btn-config-info {
border: 1px solid salmon;
padding: 2px;
margin: 1px;
border-radius: 4px;
}
.ob-btn-config-head {
padding: 2px;
margin: 1px;
border-radius: 4px;
}
.isWizard .wizardHidden {
display: none;
}
.sls-setting:not(.isWizard) .wizardOnly {
display: none;
}
.sls-item-dirty::before {
content: "✏";
}
.sls-item-dirty-help::after {
content: " ❓";
}
.sls-item-invalid-value {
background-color: rgba(var(--background-modifier-error-rgb), 0.3) !important;
}
.sls-setting-disabled input[type=text],
.sls-setting-disabled input[type=number],
.sls-setting-disabled input[type=password] {
filter: brightness(80%);
color: var(--text-muted);
}
.sls-setting-hidden {
display: none;
}
.password-input > .setting-item-control > input {
-webkit-text-security: disc;
}
span.ls-mark-cr::after {
user-select: none;
content: "↲";
color: var(--text-muted);
font-size: 0.8em;
}
.deleted span.ls-mark-cr::after {
color: var(--text-on-accent);
}
.ls-imgdiff-wrap {
display: flex;
justify-content: center;
align-items: center;
}
.ls-imgdiff-wrap .overlay {
position: relative;
}
.ls-imgdiff-wrap .overlay .img-base {
position: relative;
top: 0;
left: 0;
}
.ls-imgdiff-wrap .overlay .img-overlay {
-webkit-filter: invert(100%) opacity(50%);
filter: invert(100%) opacity(50%);
position: absolute;
top: 0;
left: 0;
animation: ls-blink-diff 0.5s cubic-bezier(0.4, 0, 1, 1) infinite alternate;
}
@keyframes ls-blink-diff {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}

View File

@@ -0,0 +1,34 @@
{
"lightStyle": "minimal-light",
"darkStyle": "minimal-dark",
"lightScheme": "minimal-default-light",
"darkScheme": "minimal-default-dark",
"editorFont": "",
"lineHeight": 1.5,
"lineWidth": 40,
"lineWidthWide": 50,
"maxWidth": 88,
"textNormal": 16,
"textSmall": 13,
"imgGrid": false,
"imgWidth": "img-default-width",
"tableWidth": "table-default-width",
"iframeWidth": "iframe-default-width",
"mapWidth": "map-default-width",
"chartWidth": "chart-default-width",
"colorfulHeadings": true,
"colorfulFrame": true,
"colorfulActiveStates": true,
"trimNames": true,
"labeledNav": false,
"fullWidthMedia": true,
"bordersToggle": true,
"minimalStatus": true,
"focusMode": false,
"underlineInternal": true,
"underlineExternal": true,
"folding": true,
"lineNumbers": false,
"readableLineLength": true,
"devBlockWidth": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-minimal-settings",
"name": "Minimal Theme Settings",
"version": "8.0.2",
"minAppVersion": "1.1.9",
"description": "Change the colors, fonts and features of Minimal Theme.",
"author": "@kepano",
"authorUrl": "https://www.twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano",
"isDesktopOnly": false
}

View File

@@ -0,0 +1 @@
/* Empty */

View File

@@ -0,0 +1,52 @@
{
"settingsVersion": "1.8.01",
"makeOfflineCompatible": false,
"inlineAssets": false,
"includePluginCSS": "",
"includeSvelteCSS": true,
"titleProperty": "title",
"customHeadContentPath": "",
"faviconPath": "",
"documentWidth": "40em",
"sidebarWidth": "20em",
"minOutlineCollapse": 2,
"startOutlineCollapsed": false,
"allowFoldingHeadings": true,
"allowFoldingLists": true,
"allowResizingSidebars": true,
"logLevel": "warning",
"minifyHTML": true,
"makeNamesWebStyle": true,
"onlyExportModified": true,
"deleteOldFiles": true,
"addThemeToggle": true,
"addOutline": true,
"addFileNav": true,
"addSearchBar": true,
"addGraphView": true,
"addTitle": true,
"addRSSFeed": true,
"siteURL": "",
"authorName": "",
"vaultTitle": "TTRPG",
"exportPreset": "website",
"openAfterExport": true,
"graphAttractionForce": 1,
"graphLinkLength": 10,
"graphRepulsionForce": 150,
"graphCentralForce": 3,
"graphEdgePruning": 100,
"graphMinNodeSize": 3,
"graphMaxNodeSize": 7,
"showDefaultTreeIcons": true,
"emojiStyle": "Native",
"defaultFileIcon": "lucide//file",
"defaultFolderIcon": "lucide//folder",
"defaultMediaIcon": "lucide//file-image",
"exportPath": "C:\\\\Users\\Elizabeth.Bruynooghe\\OneDrive - Gemeentebestuur Zonnebeke\\Documenten\\TTRPG\\.server",
"filesToExport": [
[
"all"
]
]
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,12 @@
{
"id": "webpage-html-export",
"name": "Webpage HTML Export",
"version": "1.8.01",
"minAppVersion": "1.4.0",
"description": "Export html from single files, canvas pages, or whole vaults. Direct access to the exported HTML files allows you to publish your digital garden anywhere. Focuses on flexibility, features, and style parity.",
"author": "Nathan George",
"authorUrl": "https://github.com/KosmosisDire/obsidian-webpage-export",
"isDesktopOnly": true,
"fundingUrl": "https://www.buymeacoffee.com/nathangeorge",
"updateNote": "This is a quick patch to fix the style issue\ncaused by the obsidian 1.5.8 update.\nIt is not newer than the current 1.8.1 beta."
}

View File

@@ -0,0 +1,432 @@
/* THIS FILE IS NOT EXPORTED WITH THE HTML FILE! */
/* Flow list used on the settings page */
.flow-list {
contain: inline-size;
gap: 0.2em;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
width: -webkit-fill-available;
background-color: var(--background-secondary);
border: 1px solid var(--divider-color);
border-radius: 5px;
padding: 6px;
}
.flow-item {
display: flex;
flex-direction: row;
border-radius: 100px;
border: 1px solid var(--divider-color);
font-size: 0.9em;
height: min-content;
width: max-content;
padding: 3px 8px 3px 8px;
margin: 0.1em 0em 0.1em 0.0em;
background-color: var(--background-primary);
align-items: center;
}
.flow-item:has(input:checked) {
background-color: hsla(var(--color-accent-hsl), 0.3);
}
.flow-item input[type="checkbox"] {
padding: 0;
margin: 0.1em;
margin-right: 0.5em;
}
/* Progressbar used in the render progress */
.html-render-progressbar::-webkit-progress-bar {
background-color: var(--background-secondary);
border-radius: 500px;
}
.html-render-progressbar::-webkit-progress-value {
background-color: currentColor;
border-radius: 500px;
}
/*#region Tree */
.tree-container
{
--checkbox-size: 1.2em;
--collapse-arrow-size: 0.5em;
--tree-horizontal-spacing: calc(var(--collapse-arrow-size) * 2);
--tree-vertical-spacing: 0.5em;
--sidebar-margin: 12px;
font-size: 14px;
font-family: var(--font-family);
}
input[type=checkbox].file-checkbox
{
position: absolute;
margin-left: calc(0px - var(--collapse-arrow-size) * 2 - 0.5em - var(--checkbox-size) - 0.5em);
z-index: 20;
}
.theme-dark .tree-item:has(.file-checkbox.checked).mod-tree-folder
{
transition: border-radius 0.2s, background-color 0.2s;
background-color: rgba(var(--color-blue-rgb), 0.05);
border-radius: 3px var(--radius-l) var(--radius-l) 3px;
}
.tree-item:has(.tree-item-contents)
{
cursor: pointer;
}
.tree-item:has(.file-checkbox).mod-tree-folder
{
margin-top: 2px;
margin-bottom: 2px;
}
.tree-item.mod-tree-control
{
background-color: var(--color-base-00);
border-radius: var(--radius-s);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
width: fit-content;
margin-bottom: 1em;
}
.tree-item:has(.file-checkbox.checked).mod-tree-folder.is-collapsed
{
border-radius: 3px;
}
.tree-item-title *
{
padding: 0;
margin: 0;
overflow: visible;
display: inline-block;
}
.tree-container .tree-item-icon *
{
color: var(--text-muted);
font-family: emoji;
}
.tree-container .tree-item-icon :is(svg,img)
{
-webkit-mask-image-repeat: no-repeat;
-webkit-mask-image-position: center;
max-width: 1.3em;
height: 100%;
}
/* Skip outer wrappers around icons */
.tree-container .tree-item-icon *:has(svg)
{
display: contents !important;
}
.tree-container .tree-item-icon
{
min-width: 1.6em;
max-width: 1.6em;
display: flex;
align-items: center;
justify-content: flex-start;
}
.theme-dark .tree-item:has(> .tree-link > .tree-item-contents > .file-checkbox:not(.checked)):has(.file-checkbox.checked).mod-tree-folder
{
background-color: rgba(var(--color-pink-rgb), 0.1);
}
.theme-light .tree-item:has(.file-checkbox.checked).mod-tree-folder
{
transition: border-radius 0.2s, background-color 0.2s;
background-color: rgba(var(--color-blue-rgb), 0.15);
border-radius: 3px var(--radius-l) var(--radius-l) 3px;
}
.theme-light .tree-item:has(> .tree-link > .tree-item-contents > .file-checkbox:not(.checked)):has(.file-checkbox.checked).mod-tree-folder
{
background-color: rgba(var(--color-pink-rgb), 0.15);
}
/* Base tree */
.tree-container
{
/* padding-bottom: 12px; */
/* margin: 12px; */
/* height: 100%; */
/* position: relative; */
/* display: contents; */
position: relative;
height: 100%;
width: auto;
margin: var(--sidebar-margin);
margin-top: 3em;
margin-bottom: 0;
}
.tree-container .tree-header
{
display: flex;
flex-direction: row;
align-items: center;
position: absolute;
top: -3em;
}
.tree-container .tree-header .sidebar-section-header
{
margin: 1em;
margin-left: 0;
}
.tree-container:has(.tree-scroll-area:empty)
{
display: none;
}
.tree-container .tree-scroll-area
{
width: 100%;
height: 100%;
max-height: 100%;
overflow-y: auto;
padding: 1em;
padding-right: calc(1em + var(--sidebar-margin));
padding-bottom: 3em;
border-radius: var(--radius-m);
}
.tree-container .tree-item
{
transition: background-color 0.2s;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0;
border: none !important;
}
.tree-container .tree-item-children
{
padding: 0;
margin-bottom: 0;
margin-left: 0;
border-left: none;
width: -webkit-fill-available;
}
.tree-container .tree-item.mod-active > .tree-link > .tree-item-contents
{
color: var(--interactive-accent);
}
.tree-container .tree-link {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
text-decoration: none;
color: var(--nav-item-color);
width: -webkit-fill-available;
margin-left: var(--tree-horizontal-spacing);
}
.tree-container .tree-link:active
{
color: var(--nav-item-color-active);
}
.tree-container .tree-item-contents
{
width: 100%;
height: 100%;
margin: 0 !important;
padding: 0 !important;
background-color: transparent !important;
border-radius: var(--radius-s);
padding-left: calc(var(--tree-horizontal-spacing) + var(--checkbox-size) * 2 + 1px) !important;
padding-bottom: calc(var(--tree-vertical-spacing) / 2) !important;
padding-top: calc(var(--tree-vertical-spacing) / 2) !important;
color: var(--text-normal);
display: flex !important;
flex-direction: row !important;
justify-content: flex-start;
align-items: center;
}
.tree-container .tree-item-contents:has(.tree-item-icon.collapse-icon)
{
cursor: pointer !important;
}
.tree-container .tree-item-title
{
overflow: hidden;
text-overflow: ellipsis;
text-wrap: nowrap;
white-space: nowrap;
width: 100%;
width: -webkit-fill-available;
width: -moz-available;
width: fill-available;
position: relative;
}
.tree-container .collapse-icon {
margin-left: calc(0px - var(--collapse-arrow-size) * 2 - 0.5em);
position: absolute;
}
.tree-container .tree-item.mod-tree-folder > .tree-link > .collapse-icon
{
width: 100%;
}
.tree-container .collapse-icon > svg {
color: unset !important;
}
.tree-container .collapse-icon:hover
{
color: var(--nav-item-color-hover);
}
.tree-container .tree-item.is-collapsed > .tree-link > .tree-item-contents > .collapse-icon > svg
{
transition: transform 0.1s ease-in-out;
transform: rotate(-90deg);
}
.tree-container .tree-item-contents:hover
{
cursor: default;
text-decoration: none;
}
.tree-container .tree-link:hover
{
background-color: var(--nav-item-background-hover);
border-radius: var(--radius-s);
}
.tree-container .tree-item-title
{
background-color: transparent !important;
color: var(--nav-item-color) !important;
}
/* Indentation guide */
.tree-container > .tree-scroll-area > * .tree-item
{
margin-left: calc(var(--tree-horizontal-spacing) + var(--collapse-arrow-size) / 2 + 1px);
border-left: var(--nav-indentation-guide-width) solid var(--nav-indentation-guide-color);
}
.tree-container .tree-scroll-area > * > * > .tree-item
{
margin-left: calc(var(--collapse-arrow-size) / 2 + 1px);
}
.tree-container .tree-item.mod-active
{
border-left: var(--nav-indentation-guide-width) solid var(--interactive-accent);
}
.tree-container .tree-item:hover:not(.mod-active):not(.mod-collapsible):not(:has(.tree-item:hover)) /* Hover */
{
border-left: var(--nav-indentation-guide-width) solid var(--nav-item-color-hover);
}
.tree-container .tree-item:not(.mod-collapsible) > .tree-item-children > .tree-item,
.tree-container > .tree-scroll-area > .tree-item,
.tree-container:not(.mod-nav-indicator) .tree-item
{
border-left: none !important;
}
.tree-container .tree-item:not(.mod-collapsible) > .tree-item-children > .tree-item > .tree-link,
.tree-container:not(.mod-nav-indicator) .tree-item .tree-link,
.tree-container > .tree-scroll-area > .tree-item > .tree-link
{
margin-left: 0 !important;
}
/* Special */
/* AnuPpuccin rainbow indent support */
.anp-simple-rainbow-color-toggle.anp-simple-rainbow-indentation-toggle .tree-container .tree-item
{
border-color: rgba(var(--rainbow-folder-color), 0.5);
}
.tree-container.outline-tree .tree-item[data-depth='1'] > .tree-link > .tree-item-contents
{
font-weight: 900;
font-size: 1.1em;
margin-left: 0;
padding-left: 1em;
}
.tree-container .nav-folder.mod-root .nav-folder>.nav-folder-children
{
padding: 0 !important;
margin: 0 !important;
border: none !important;
}
.tree-container .nav-file
{
border-radius: 0 !important;
}
.tree-container .nav-folder.mod-root .nav-folder > .nav-folder-children
{
border-radius: var(--radius-s) !important;;
}
.tree-container .nav-file-tag
{
margin-right: 1em;
}
.tree-container .nav-file-title-content, .tree-container .nav-folder-title-content
{
margin-top: unset !important;
margin-bottom: unset !important;
margin-left: unset !important;
margin-right: unset !important;
display: unset !important;
border-radius: unset !important;
cursor: unset !important;
font-size: unset !important;
font-weight: unset !important;
line-height: unset !important;
padding: unset !important;
border: unset !important;
}
.tree-item-contents:has(.tree-item-icon) .tree-item-title::before
{
display: none !important;
}
/*#endregion */

View File

@@ -0,0 +1,8 @@
{
"name": "Minimal",
"version": "7.7.14",
"minAppVersion": "1.6.1",
"author": "@kepano",
"authorUrl": "https://twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano"
}

2208
.obsidian/themes/Minimal/theme.css vendored Normal file

File diff suppressed because one or more lines are too long

147
.obsidian/workspace-mobile.json vendored Normal file
View File

@@ -0,0 +1,147 @@
{
"main": {
"id": "3b07607271ee3634",
"type": "split",
"children": [
{
"id": "6fd47df8f4629841",
"type": "tabs",
"children": [
{
"id": "de525d64f1a3ba3a",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Party/Alicia.md",
"mode": "source",
"source": false
}
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "b5d26017ae17bfc7",
"type": "mobile-drawer",
"children": [
{
"id": "76ff774663a09046",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "d687d9c190ad001a",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "e8662b5ae37efe64",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "1687a2e73b76439e",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {}
}
}
],
"currentTab": 0
},
"right": {
"id": "075deef186933181",
"type": "mobile-drawer",
"children": [
{
"id": "0717e1c502b055f6",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Party/Alicia.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "b584cefa932bfd8b",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Party/Alicia.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "9d02e39637fbe2ca",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Party/Alicia.md"
}
}
}
],
"currentTab": 0
},
"left-ribbon": {
"hiddenItems": {
"obsidian-livesync:Replicate": false,
"obsidian-livesync:Show log": false,
"obsidian-livesync:Show Customization sync": false,
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "de525d64f1a3ba3a",
"lastOpenFiles": [
"settings",
"Party/Party.md",
"Party/Alicia.md",
"Untitled.canvas",
"Party/Lyra.md",
"Party/Zafira Moonchild.md",
"Party"
]
}

188
.obsidian/workspace.json vendored Normal file
View File

@@ -0,0 +1,188 @@
{
"main": {
"id": "bb5244fd82448908",
"type": "split",
"children": [
{
"id": "82c24efce084d835",
"type": "tabs",
"children": [
{
"id": "7a8810d4ef7564b8",
"type": "leaf",
"state": {
"type": "graph",
"state": {}
}
},
{
"id": "e600c99cd3ea8f41",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "NPCs/NPCs.md",
"mode": "source",
"source": false
}
}
},
{
"id": "f16608f959d7ccdf",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Party/Ashley Char.md",
"mode": "source",
"source": false
}
}
}
],
"currentTab": 2
}
],
"direction": "vertical"
},
"left": {
"id": "691ea87c516da303",
"type": "split",
"children": [
{
"id": "4d1391ec7538e80b",
"type": "tabs",
"children": [
{
"id": "49a1f4e9f8a9e6a7",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "cc4755cb0d087ed9",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "0f3551e403db8951",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "54380bdcb5b3fe4c",
"type": "split",
"children": [
{
"id": "3f7477425b1a6971",
"type": "tabs",
"children": [
{
"id": "c20c71b0b793532f",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Party/Ashley Char.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "47a9fd0e90fe93e1",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Party/Ashley Char.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "553a0e1ce7494f83",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "8a34191479078c5b",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Party/Ashley Char.md"
}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "f16608f959d7ccdf",
"lastOpenFiles": [
"Party/Party.md",
"NPCs/NPCs.md",
"Party/Ashley Char.md",
"Party/Alicia.md",
"Party/Zafira Moonchild.md",
"Party/Dhargana.md",
"settings",
"NPCs",
"2024-08-13.md",
"Party/Lyra.md",
"Welcome.md",
"Party",
"Untitled.canvas",
"Untitled 2.canvas",
"Untitled 1.canvas"
]
}

20
.server/Party/Alicia.html Normal file

File diff suppressed because one or more lines are too long

19
.server/Party/Lyra.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
<div class="tree-container mod-root nav-folder tree-item file-tree mod-nav-indicator" data-depth="0"><div class="tree-header"><span class="sidebar-section-header">TTRPG</span><button class="clickable-icon collapse-tree-button is-collapsed" aria-label="Collapse All"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></svg></button></div><div class="tree-scroll-area tree-item-children nav-folder-children"><div class="tree-item mod-tree-folder nav-folder mod-collapsible is-collapsed" style="display: none;"></div><div class="tree-item mod-tree-folder nav-folder mod-collapsible is-collapsed" data-depth="1"><div class="tree-link"><div class="tree-item-contents nav-folder-title"><div class="collapse-icon"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg-icon right-triangle"><path d="M3 8L12 17L21 8"></path></svg></div><div class="tree-item-icon"><svg class="svg-icon lucide-folder-open" stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" fill="none" viewBox="0 0 24 24" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg></div><span class="tree-item-title nav-folder-title-content tree-item-inner">Party</span></div></div><div class="tree-item-children nav-folder-children" style="display: none;"><div class="tree-item mod-tree-file nav-file" data-depth="2"><a class="tree-link" href="party/alicia.html"><div class="tree-item-contents nav-file-title"><div class="tree-item-icon"><svg class="svg-icon lucide-file" stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" fill="none" viewBox="0 0 24 24" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"></path><polyline points="14 2 14 8 20 8"></polyline></svg></div><span class="tree-item-title nav-file-title-content tree-item-inner">Alicia</span></div></a><div class="tree-item-children nav-folder-children"></div></div><div class="tree-item mod-tree-file nav-file" data-depth="2"><a class="tree-link" href="party/lyra.html"><div class="tree-item-contents nav-file-title"><div class="tree-item-icon"><svg class="svg-icon lucide-file" stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" fill="none" viewBox="0 0 24 24" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"></path><polyline points="14 2 14 8 20 8"></polyline></svg></div><span class="tree-item-title nav-file-title-content tree-item-inner">Lyra</span></div></a><div class="tree-item-children nav-folder-children"></div></div><div class="tree-item mod-tree-file nav-file" data-depth="2"><a class="tree-link" href="party/zafira-moonchild.html"><div class="tree-item-contents nav-file-title"><div class="tree-item-icon"><svg class="svg-icon lucide-file" stroke-linejoin="round" stroke-linecap="round" stroke-width="2" stroke="currentColor" fill="none" viewBox="0 0 24 24" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"></path><polyline points="14 2 14 8 20 8"></polyline></svg></div><span class="tree-item-title nav-file-title-content tree-item-inner">Zafira Moonchild</span></div></a><div class="tree-item-children nav-folder-children"></div></div></div></div></div></div>

View File

@@ -0,0 +1 @@
<svg fill="none" height="14" stroke="#888" stroke-linecap="round" stroke-linejoin="round" stroke-width="9.38%" viewBox="0 0 32 32" width="14" xmlns="http://www.w3.org/2000/svg"><path transform="translate(32), scale(-1, 1)" d="m14 9h-11v20h20v-11m-5-14h10v10m0-10-14 14"/></svg>

After

Width:  |  Height:  |  Size: 278 B

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns='http://www.w3.org/2000/svg' class='i-external' viewBox='0 0 32 32' width='14' height='14' fill='none' stroke='#888888' stroke-linecap='round' stroke-linejoin='round' stroke-width='9.38%'><path d='M14 9 L3 9 3 29 23 29 23 18 M18 4 L28 4 28 14 M28 4 L14 18'/></svg>

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

283
.server/lib/metadata.json Normal file
View File

@@ -0,0 +1,283 @@
{
"vaultName": "TTRPG",
"lastExport": 1723632202027,
"pluginVersion": "1.8.01",
"validBodyClasses": "publish css-settings-manager theme-dark show-inline-title show-ribbon minimal-default-light minimal-default-dark minimal-readable colorful-headings colorful-frame colorful-active links-int-on links-ext-on full-width-media",
"useCustomHeadContent": false,
"useCustomFavicon": false,
"files": [
"Party/Alicia.md",
"Party/Lyra.md",
"Party/Zafira Moonchild.md",
"lib/scripts/graph-wasm.wasm",
"lib/fonts/94f2f163d4b698242fef.otf",
"lib/fonts/72505e6a122c6acd5471.woff2",
"lib/fonts/2d5198822ab091ce4305.woff2",
"lib/fonts/c8ba52b05a9ef10f4758.woff2",
"lib/fonts/cb10ffd7684cd9836a05.woff2",
"lib/fonts/b5f0f109bc88052d4000.woff2",
"lib/fonts/cbe0ae49c52c920fd563.woff2",
"lib/fonts/535a6cf662596b3bd6a6.woff2",
"lib/fonts/70cc7ff27245e82ad414.ttf",
"lib/fonts/454577c22304619db035.ttf",
"lib/fonts/52ac8f3034507f1d9e53.ttf",
"lib/fonts/05b618077343fbbd92b7.ttf",
"lib/fonts/4bb6ac751d1c5478ff3a.woff2",
"lib/media/874d8b8e340f75575caa.svg",
"lib/media/3d6c1bdc4d87cde4de67.svg",
"lib/html/file-tree.html",
"lib/scripts/webpage.js",
"lib/scripts/graph-view.js",
"lib/scripts/graph-wasm.js",
"lib/scripts/graph-render-worker.js",
"lib/scripts/tinycolor.js",
"lib/scripts/pixi.js",
"lib/scripts/minisearch.js",
"lib/media/favicon.png",
"lib/scripts/graph-data.js",
"lib/styles/obsidian.css",
"lib/styles/theme.css",
"lib/styles/global-variable-styles.css",
"lib/styles/supported-plugins.css",
"lib/styles/main-styles.css"
],
"mainDependencies": [
"lib/scripts/graph-wasm.wasm",
"lib/fonts/94f2f163d4b698242fef.otf",
"lib/fonts/72505e6a122c6acd5471.woff2",
"lib/fonts/2d5198822ab091ce4305.woff2",
"lib/fonts/c8ba52b05a9ef10f4758.woff2",
"lib/fonts/cb10ffd7684cd9836a05.woff2",
"lib/fonts/b5f0f109bc88052d4000.woff2",
"lib/fonts/cbe0ae49c52c920fd563.woff2",
"lib/fonts/535a6cf662596b3bd6a6.woff2",
"lib/fonts/70cc7ff27245e82ad414.ttf",
"lib/fonts/454577c22304619db035.ttf",
"lib/fonts/52ac8f3034507f1d9e53.ttf",
"lib/fonts/05b618077343fbbd92b7.ttf",
"lib/fonts/4bb6ac751d1c5478ff3a.woff2",
"lib/media/874d8b8e340f75575caa.svg",
"lib/media/3d6c1bdc4d87cde4de67.svg",
"lib/html/file-tree.html",
"lib/scripts/webpage.js",
"lib/scripts/graph-view.js",
"lib/scripts/graph-wasm.js",
"lib/scripts/graph-render-worker.js",
"lib/scripts/tinycolor.js",
"lib/scripts/pixi.js",
"lib/scripts/minisearch.js",
"lib/media/favicon.png",
"lib/scripts/graph-data.js",
"lib/styles/obsidian.css",
"lib/styles/theme.css",
"lib/styles/global-variable-styles.css",
"lib/styles/supported-plugins.css",
"lib/styles/main-styles.css"
],
"fileInfo": {
"Party/Alicia.md": {
"modifiedTime": 1723632202027,
"sourceSize": 277,
"exportedPath": "party/alicia.html",
"dependencies": []
},
"Party/Lyra.md": {
"modifiedTime": 1723632202027,
"sourceSize": 0,
"exportedPath": "party/lyra.html",
"dependencies": []
},
"Party/Zafira Moonchild.md": {
"modifiedTime": 1723632202027,
"sourceSize": 0,
"exportedPath": "party/zafira-moonchild.html",
"dependencies": []
},
"lib/fonts/94f2f163d4b698242fef.otf": {
"modifiedTime": 1723632202027,
"sourceSize": 66800,
"exportedPath": "lib/fonts/94f2f163d4b698242fef.otf",
"dependencies": []
},
"lib/fonts/72505e6a122c6acd5471.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 104232,
"exportedPath": "lib/fonts/72505e6a122c6acd5471.woff2",
"dependencies": []
},
"lib/fonts/2d5198822ab091ce4305.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 104332,
"exportedPath": "lib/fonts/2d5198822ab091ce4305.woff2",
"dependencies": []
},
"lib/fonts/c8ba52b05a9ef10f4758.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 98868,
"exportedPath": "lib/fonts/c8ba52b05a9ef10f4758.woff2",
"dependencies": []
},
"lib/fonts/cb10ffd7684cd9836a05.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 106876,
"exportedPath": "lib/fonts/cb10ffd7684cd9836a05.woff2",
"dependencies": []
},
"lib/fonts/b5f0f109bc88052d4000.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 105804,
"exportedPath": "lib/fonts/b5f0f109bc88052d4000.woff2",
"dependencies": []
},
"lib/fonts/cbe0ae49c52c920fd563.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 106108,
"exportedPath": "lib/fonts/cbe0ae49c52c920fd563.woff2",
"dependencies": []
},
"lib/fonts/535a6cf662596b3bd6a6.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 111708,
"exportedPath": "lib/fonts/535a6cf662596b3bd6a6.woff2",
"dependencies": []
},
"lib/fonts/70cc7ff27245e82ad414.ttf": {
"modifiedTime": 1723632202027,
"sourceSize": 192740,
"exportedPath": "lib/fonts/70cc7ff27245e82ad414.ttf",
"dependencies": []
},
"lib/fonts/454577c22304619db035.ttf": {
"modifiedTime": 1723632202027,
"sourceSize": 161376,
"exportedPath": "lib/fonts/454577c22304619db035.ttf",
"dependencies": []
},
"lib/fonts/52ac8f3034507f1d9e53.ttf": {
"modifiedTime": 1723632202027,
"sourceSize": 191568,
"exportedPath": "lib/fonts/52ac8f3034507f1d9e53.ttf",
"dependencies": []
},
"lib/fonts/05b618077343fbbd92b7.ttf": {
"modifiedTime": 1723632202027,
"sourceSize": 155288,
"exportedPath": "lib/fonts/05b618077343fbbd92b7.ttf",
"dependencies": []
},
"lib/fonts/4bb6ac751d1c5478ff3a.woff2": {
"modifiedTime": 1723632202027,
"sourceSize": 7876,
"exportedPath": "lib/fonts/4bb6ac751d1c5478ff3a.woff2",
"dependencies": []
},
"lib/media/874d8b8e340f75575caa.svg": {
"modifiedTime": 1723632202027,
"sourceSize": 317,
"exportedPath": "lib/media/874d8b8e340f75575caa.svg",
"dependencies": []
},
"lib/media/3d6c1bdc4d87cde4de67.svg": {
"modifiedTime": 1723632202027,
"sourceSize": 279,
"exportedPath": "lib/media/3d6c1bdc4d87cde4de67.svg",
"dependencies": []
},
"lib/scripts/graph-wasm.wasm": {
"modifiedTime": 1723632202027,
"sourceSize": 23377,
"exportedPath": "lib/scripts/graph-wasm.wasm",
"dependencies": []
},
"lib/html/file-tree.html": {
"modifiedTime": 1723632202027,
"sourceSize": 3834,
"exportedPath": "lib/html/file-tree.html",
"dependencies": []
},
"lib/scripts/webpage.js": {
"modifiedTime": 1723632202027,
"sourceSize": 47290,
"exportedPath": "lib/scripts/webpage.js",
"dependencies": []
},
"lib/scripts/graph-view.js": {
"modifiedTime": 1723632202027,
"sourceSize": 15519,
"exportedPath": "lib/scripts/graph-view.js",
"dependencies": []
},
"lib/scripts/graph-wasm.js": {
"modifiedTime": 1723632202027,
"sourceSize": 14021,
"exportedPath": "lib/scripts/graph-wasm.js",
"dependencies": []
},
"lib/scripts/graph-render-worker.js": {
"modifiedTime": 1723632202027,
"sourceSize": 5179,
"exportedPath": "lib/scripts/graph-render-worker.js",
"dependencies": []
},
"lib/scripts/tinycolor.js": {
"modifiedTime": 1723632202027,
"sourceSize": 29832,
"exportedPath": "lib/scripts/tinycolor.js",
"dependencies": []
},
"lib/scripts/pixi.js": {
"modifiedTime": 1723632202027,
"sourceSize": 449509,
"exportedPath": "lib/scripts/pixi.js",
"dependencies": []
},
"lib/scripts/minisearch.js": {
"modifiedTime": 1723632202027,
"sourceSize": 29422,
"exportedPath": "lib/scripts/minisearch.js",
"dependencies": []
},
"lib/media/favicon.png": {
"modifiedTime": 1723632202027,
"sourceSize": 1105,
"exportedPath": "lib/media/favicon.png",
"dependencies": []
},
"lib/scripts/graph-data.js": {
"modifiedTime": 1723632202027,
"sourceSize": 358,
"exportedPath": "lib/scripts/graph-data.js",
"dependencies": []
},
"lib/styles/obsidian.css": {
"modifiedTime": 1723632202027,
"sourceSize": 130471,
"exportedPath": "lib/styles/obsidian.css",
"dependencies": []
},
"lib/styles/theme.css": {
"modifiedTime": 1723632202027,
"sourceSize": 228140,
"exportedPath": "lib/styles/theme.css",
"dependencies": []
},
"lib/styles/global-variable-styles.css": {
"modifiedTime": 1723632202027,
"sourceSize": 236,
"exportedPath": "lib/styles/global-variable-styles.css",
"dependencies": []
},
"lib/styles/supported-plugins.css": {
"modifiedTime": 1723632202027,
"sourceSize": 3035,
"exportedPath": "lib/styles/supported-plugins.css",
"dependencies": []
},
"lib/styles/main-styles.css": {
"modifiedTime": 1723632202027,
"sourceSize": 23130,
"exportedPath": "lib/styles/main-styles.css",
"dependencies": []
}
}
}

View File

@@ -0,0 +1 @@
let graphData={graphOptions:{attractionForce:1,linkLength:10,repulsionForce:150,centralForce:3,edgePruning:100,minNodeRadius:3,maxNodeRadius:7},isInitialized:!0,paths:["party/alicia.html","party/lyra.html","party/zafira-moonchild.html"],nodeCount:3,linkSources:[],linkTargets:[],labels:["Alicia","Lyra","Zafira Moonchild"],radii:[null,null,null],linkCount:0}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
:root body{--line-width:min(40em, calc(100vw - 2em));--line-width-adaptive:min(40em, calc(100vw - 2em));--file-line-width:min(40em, calc(100vw - 2em));--sidebar-width:min(20em, 80vw)}body{--zoom-factor:1!important;--font-text-size:16px}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
label.svelte-zh5x8.svelte-zh5x8{min-width:4em;width:4em;display:inline-flex;flex-direction:row;justify-content:flex-end}ul.svelte-zh5x8.svelte-zh5x8{flex-grow:1;display:inline-flex;flex-direction:column;list-style-type:none;margin-block:0px;margin-inline:0px;padding-inline-start:0px}li.svelte-zh5x8.svelte-zh5x8{padding:var(--size-2-1) var(--size-4-1);display:inline-flex;flex-grow:1;align-items:center;justify-content:flex-end;gap:var(--size-4-2)}li.svelte-zh5x8 input.svelte-zh5x8{min-width:10em}button.iconbutton.svelte-zh5x8.svelte-zh5x8{max-width:4em}.buttonsWrap.svelte-if2qsj.svelte-if2qsj{padding-bottom:4px}h3.svelte-if2qsj.svelte-if2qsj{position:sticky;top:0;background-color:var(--modal-background)}.labelrow.svelte-if2qsj.svelte-if2qsj{margin-left:.4em;display:flex;justify-content:flex-start;align-items:center;border-top:1px solid var(--background-modifier-border);padding:4px;flex-wrap:wrap}.filerow.svelte-if2qsj.svelte-if2qsj{margin-left:1.25em;display:flex;justify-content:flex-start;align-items:center;padding-right:4px;flex-wrap:wrap}.filerow.hideeven.svelte-if2qsj.svelte-if2qsj:has(.even),.labelrow.hideeven.svelte-if2qsj.svelte-if2qsj:has(.even){display:none}.noterow.svelte-if2qsj.svelte-if2qsj{min-height:2em;display:flex}button.status.svelte-if2qsj.svelte-if2qsj{flex-grow:0;margin:2px 4px;min-width:3em;max-width:4em}.statusnote.svelte-if2qsj.svelte-if2qsj{display:flex;justify-content:flex-end;padding-right:var(--size-4-12);align-items:center;min-width:10em;flex-grow:1}.list.svelte-if2qsj.svelte-if2qsj{overflow-y:auto}.title.svelte-if2qsj.svelte-if2qsj{color:var(--text-normal);font-size:var(--font-ui-medium);line-height:var(--line-height-tight);margin-right:auto}.body.svelte-if2qsj.svelte-if2qsj{margin-left:auto;display:flex;justify-content:flex-start;align-items:center}.filetitle.svelte-if2qsj.svelte-if2qsj{color:var(--text-normal);font-size:var(--font-ui-medium);line-height:var(--line-height-tight);margin-right:auto}.buttons.svelte-if2qsj.svelte-if2qsj{display:flex;flex-flow:wrap;justify-content:flex-end;margin-top:8px}.buttons.svelte-if2qsj>button.svelte-if2qsj{margin-left:4px;width:auto}label.svelte-if2qsj.svelte-if2qsj{display:flex;justify-content:center;align-items:center}label.svelte-if2qsj>span.svelte-if2qsj{margin-right:.25em}.is-mobile .filetitle.svelte-if2qsj.svelte-if2qsj,.is-mobile .title.svelte-if2qsj.svelte-if2qsj{width:100%}.center.svelte-if2qsj.svelte-if2qsj{display:flex;justify-content:center;align-items:center;min-height:3em}.maintenancerow.svelte-if2qsj.svelte-if2qsj{display:flex;justify-content:flex-end;align-items:center}.maintenancerow.svelte-if2qsj label.svelte-if2qsj{margin-right:.5em;margin-left:.5em}.loading.svelte-if2qsj.svelte-if2qsj{transition:height .25s ease-in-out 4ms;overflow-y:hidden;flex-shrink:0;display:flex;justify-content:flex-start;align-items:center}.loading.svelte-if2qsj.svelte-if2qsj:empty{height:0;transition:height .25s ease-in-out 1s}.loading.svelte-if2qsj.svelte-if2qsj:not(:empty){height:2em;transition:height .25s ease-in-out 0s}

File diff suppressed because one or more lines are too long

0
.trash/Lyra.md Normal file
View File

0
NPCs/NPCs.md Normal file
View File

4
Party/Alicia.md Normal file
View File

@@ -0,0 +1,4 @@
Alicia was a already lively as a kid. She ran, she shouted, she sang, she danced.
She loved music just as much as showing the boys she was a force to be reconned with. Yet, due to her lively nature she could never find the time or concentration to take up an instrument.
One day she was just walking somewhere

1
Party/Ashley Char.md Normal file
View File

@@ -0,0 +1 @@
Dragon go rawr

0
Party/Dhargana.md Normal file
View File

4
Party/Party.md Normal file
View File

@@ -0,0 +1,4 @@
[[Alicia]]
[[Dhargana]]
[[Zafira Moonchild]]
[[Ashley Char]]

View File

141
settings Normal file
View File

@@ -0,0 +1,141 @@
This file contains Self-hosted LiveSync settings as YAML.
Except for the `livesync-setting` code block, we can add a note for free.
If the name of this file matches the value of the "settingSyncFile" setting inside the `livesync-setting` block, LiveSync will tell us whenever the settings change. We can decide to accept or decline the remote setting. (In other words, we can back up this file by renaming it to another name).
We can perform a command in this file.
- `Parse setting file` : load the setting from the file.
**Note** Please handle it with all of your care if you have configured to write credentials in.
````yaml:livesync-setting
remoteType: ""
useCustomRequestHandler: false
couchDB_URI: http://couch.bruynooghe.dev/
couchDB_DBNAME: obsidian
liveSync: true
syncOnSave: true
syncOnStart: false
savingDelay: 200
lessInformationInLog: false
gcDelay: 0
versionUpFlash: ""
minimumChunkSize: 20
longLineThreshold: 250
showVerboseLog: false
suspendFileWatching: false
trashInsteadDelete: true
periodicReplication: false
periodicReplicationInterval: 60
syncOnFileOpen: false
encrypt: false
usePathObfuscation: false
doNotDeleteFolder: true
resolveConflictsByNewerFile: true
batchSave: false
batchSaveMinimumDelay: 5
batchSaveMaximumDelay: 60
deviceAndVaultName: ""
usePluginSettings: false
showOwnPlugins: false
showStatusOnEditor: true
showStatusOnStatusbar: true
showOnlyIconsOnEditor: false
usePluginSync: true
autoSweepPlugins: true
autoSweepPluginsPeriodic: true
notifyPluginOrSettingUpdated: true
checkIntegrityOnSave: false
batch_size: 25
batches_limit: 25
useHistory: true
disableRequestURI: true
skipOlderFilesOnSync: true
checkConflictOnlyOnOpen: false
showMergeDialogOnlyOnActive: false
syncInternalFiles: true
syncInternalFilesBeforeReplication: false
syncInternalFilesIgnorePatterns: \/node_modules\/, \/\.git\/, \/obsidian-livesync\/
syncInternalFilesInterval: 60
additionalSuffixOfDatabaseName: 3719da583cc6987d
ignoreVersionCheck: false
lastReadUpdates: 23
deleteMetadataOfDeletedFiles: true
syncIgnoreRegEx: ""
syncOnlyRegEx: ""
customChunkSize: 50
readChunksOnline: true
watchInternalFileChanges: true
automaticallyDeleteMetadataOfDeletedFiles: 0
disableMarkdownAutoMerge: false
writeDocumentsIfConflicted: false
useDynamicIterationCount: false
syncAfterMerge: false
configPassphraseStore: ""
permitEmptyPassphrase: false
useIndexedDBAdapter: true
useTimeouts: false
writeLogToTheFile: false
doNotPaceReplication: false
hashCacheMaxCount: 300
hashCacheMaxAmount: 50
concurrencyOfReadChunksOnline: 30
minimumIntervalOfReadChunksOnline: 25
hashAlg: xxhash64
suspendParseReplicationResult: false
doNotSuspendOnFetching: false
useIgnoreFiles: false
ignoreFiles: .gitignore
syncOnEditorSave: false
pluginSyncExtendedSetting:
PLUGIN_DATA/folder-note-plugin:
key: PLUGIN_DATA/folder-note-plugin
mode: 1
files:
- plugins/folder-note-plugin/data.json
PLUGIN_MAIN/folder-note-plugin:
key: PLUGIN_MAIN/folder-note-plugin
mode: 1
files:
- plugins/folder-note-plugin/manifest.json
- plugins/folder-note-plugin/main.js
- plugins/folder-note-plugin/styles.css
PLUGIN_DATA/obsidian-livesync:
key: PLUGIN_DATA/obsidian-livesync
mode: 1
files:
- plugins/obsidian-livesync/data.json
PLUGIN_MAIN/obsidian-livesync:
key: PLUGIN_MAIN/obsidian-livesync
mode: 1
files:
- plugins/obsidian-livesync/manifest.json
- plugins/obsidian-livesync/main.js
- plugins/obsidian-livesync/styles.css
syncMaxSizeInMB: 50
settingSyncFile: settings
writeCredentialsForSettingSync: false
notifyAllSettingSyncFile: true
isConfigured: true
settingVersion: 0
enableCompression: false
accessKey: ""
bucket: ""
endpoint: ""
region: auto
secretKey: ""
useEden: false
maxChunksInEden: 10
maxTotalLengthInEden: 1024
maxAgeInEden: 10
disableCheckingConfigMismatch: false
displayLanguage: ""
enableChunkSplitterV2: false
disableWorkerForGeneratingChunks: false
processSmallFilesInUIThread: false
notifyThresholdOfRemoteStorageSize: 0
usePluginSyncV2: false
usePluginEtc: false
````