Update from obsidian - thinkpad
Affected files: .obsidian/community-plugins.json .obsidian/plugins/dataview/main.js .obsidian/plugins/dataview/manifest.json .obsidian/plugins/dataview/styles.css .obsidian/plugins/dbfolder/data.json .obsidian/plugins/dbfolder/main.js .obsidian/plugins/dbfolder/manifest.json .obsidian/plugins/dbfolder/styles.css .obsidian/plugins/obsidian-projects/data.json .obsidian/workspace.json games/Castlevania symphony of the Night.md games/Mega Man X2.md games/batman-arkham-asylum-game-of-the-year-edition.md games/batman-arkham-city.md games/celeste.md games/god-of-war--1.md games/god-of-war-ii.md games/god-of-war.md games/hollow-knight.md games/metroid-prime-remastered.md games/monster-hunter-rise.md games/nier-automata.md games/persona-4-golden--1.md games/persona-5-royal.md games/persona-5.md games/super-mario-galaxy-2.md games/the-elder-scrolls-v-skyrim.md games/the-last-of-us-part-ii.md games/the-last-of-us.md games/the-legend-of-zelda-twilight-princess--1.md games/uncharted-2-among-thieves.md games/uncharted-3-drake-s-deception.md games/uncharted-drake-s-fortune.md projects/games.md
This commit is contained in:
parent
4384f6d9dc
commit
d02c99f724
34 changed files with 22467 additions and 113 deletions
4
.obsidian/community-plugins.json
vendored
4
.obsidian/community-plugins.json
vendored
|
|
@ -4,5 +4,7 @@
|
|||
"obsidian-style-settings",
|
||||
"obsidian-projects",
|
||||
"obsidian-kanban",
|
||||
"editor-width-slider"
|
||||
"editor-width-slider",
|
||||
"dbfolder",
|
||||
"dataview"
|
||||
]
|
||||
19888
.obsidian/plugins/dataview/main.js
vendored
Normal file
19888
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
10
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.56",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--text-selection) !important;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
||||
48
.obsidian/plugins/dbfolder/data.json
vendored
Normal file
48
.obsidian/plugins/dbfolder/data.json
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"global_settings": {
|
||||
"enable_debug_mode": false,
|
||||
"enable_show_state": false,
|
||||
"enable_row_shadow": true,
|
||||
"enable_auto_update": true,
|
||||
"show_search_bar_by_default": false,
|
||||
"logger_level_info": "error",
|
||||
"csv_file_header_key": "File",
|
||||
"media_settings": {
|
||||
"link_alias_enabled": true,
|
||||
"enable_media_view": true,
|
||||
"width": 100,
|
||||
"height": 100
|
||||
}
|
||||
},
|
||||
"local_settings": {
|
||||
"remove_field_when_delete_column": true,
|
||||
"cell_size": "normal",
|
||||
"sticky_first_column": true,
|
||||
"group_folder_column": "",
|
||||
"remove_empty_folders": false,
|
||||
"automatically_group_files": false,
|
||||
"hoist_files_with_empty_attributes": true,
|
||||
"show_metadata_created": false,
|
||||
"show_metadata_modified": true,
|
||||
"show_metadata_tasks": false,
|
||||
"show_metadata_inlinks": false,
|
||||
"show_metadata_outlinks": false,
|
||||
"show_metadata_tags": true,
|
||||
"source_data": "current_folder",
|
||||
"source_form_result": "",
|
||||
"source_destination_path": "/",
|
||||
"row_templates_folder": "templates",
|
||||
"current_row_template": "",
|
||||
"pagination_size": 10,
|
||||
"font_size": 16,
|
||||
"enable_js_formulas": false,
|
||||
"formula_folder_path": "/",
|
||||
"inline_default": false,
|
||||
"inline_new_position": "last_field",
|
||||
"date_format": "yyyy-MM-dd",
|
||||
"datetime_format": "yyyy-MM-dd HH:mm:ss",
|
||||
"metadata_date_format": "yyyy-MM-dd HH:mm:ss",
|
||||
"enable_footer": false,
|
||||
"implementation": "default"
|
||||
}
|
||||
}
|
||||
121
.obsidian/plugins/dbfolder/main.js
vendored
Normal file
121
.obsidian/plugins/dbfolder/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dbfolder/manifest.json
vendored
Normal file
11
.obsidian/plugins/dbfolder/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "dbfolder",
|
||||
"name": "DB Folder",
|
||||
"version": "3.4.0",
|
||||
"minAppVersion": "1.1.1",
|
||||
"description": "Folder with the capability to store and retrieve data from a folder like database",
|
||||
"author": "RafaelGB",
|
||||
"authorUrl": "https://github.com/RafaelGB/obsidian-bd-folder",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://www.buymeacoffee.com/5tsytn22v9Z"
|
||||
}
|
||||
1864
.obsidian/plugins/dbfolder/styles.css
vendored
Normal file
1864
.obsidian/plugins/dbfolder/styles.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
34
.obsidian/plugins/obsidian-projects/data.json
vendored
34
.obsidian/plugins/obsidian-projects/data.json
vendored
|
|
@ -58,6 +58,40 @@
|
|||
],
|
||||
"id": "693ec588-0a43-4498-9428-7337ddef9516",
|
||||
"name": "personal-page"
|
||||
},
|
||||
{
|
||||
"fieldConfig": {},
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"excludedNotes": [],
|
||||
"isDefault": false,
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "games",
|
||||
"recursive": true
|
||||
}
|
||||
},
|
||||
"newNotesFolder": "",
|
||||
"views": [
|
||||
{
|
||||
"config": {},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"sort": {
|
||||
"criteria": []
|
||||
},
|
||||
"id": "29122e1a-d208-4203-ba3b-6b3373595e5b",
|
||||
"name": "Table",
|
||||
"type": "table"
|
||||
}
|
||||
],
|
||||
"id": "3666070f-21b0-4bcd-97b9-54b21dde9fdd",
|
||||
"name": "Games"
|
||||
}
|
||||
],
|
||||
"preferences": {
|
||||
|
|
|
|||
35
.obsidian/workspace.json
vendored
35
.obsidian/workspace.json
vendored
|
|
@ -4,15 +4,19 @@
|
|||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "f88ca8150de95079",
|
||||
"id": "ad6fbf876e5dec40",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "8155f681e9f56caf",
|
||||
"id": "772303a551e0940a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {}
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "games/Castlevania symphony of the Night.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
@ -65,7 +69,7 @@
|
|||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 241
|
||||
"width": 245
|
||||
},
|
||||
"right": {
|
||||
"id": "fca86750b2867923",
|
||||
|
|
@ -81,6 +85,7 @@
|
|||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "games/Castlevania symphony of the Night.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
|
|
@ -97,6 +102,7 @@
|
|||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "games/Castlevania symphony of the Night.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
|
|
@ -118,7 +124,9 @@
|
|||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {}
|
||||
"state": {
|
||||
"file": "games/Castlevania symphony of the Night.md"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -146,12 +154,18 @@
|
|||
"obsidian-excalidraw-plugin:Create new drawing": false,
|
||||
"zk-prefixer:Create new unique note": false,
|
||||
"workspaces:Manage workspace layouts": false,
|
||||
"obsidian-projects:Open projects": false
|
||||
"obsidian-projects:Open projects": false,
|
||||
"dbfolder:Create a new database table": false
|
||||
}
|
||||
},
|
||||
"active": "8155f681e9f56caf",
|
||||
"active": "772303a551e0940a",
|
||||
"lastOpenFiles": [
|
||||
"projects/games.md",
|
||||
"games/Castlevania symphony of the Night.md",
|
||||
"games/the-elder-scrolls-v-skyrim.md",
|
||||
"games/metroid-prime-remastered.md",
|
||||
"projects/personal-page.md",
|
||||
"games/Untitled database.md",
|
||||
"projects/todos-notes/Update dots.md",
|
||||
"projects/todos.md",
|
||||
"projects/todos-notes/Update tmux config.md",
|
||||
|
|
@ -173,14 +187,9 @@
|
|||
"projects/todos-notes/Improve VPN setup.md",
|
||||
"projects/todos-notes/Setup notification services.md",
|
||||
"projects/todos-notes/Rewrite neovim config.md",
|
||||
"templates/todo.md",
|
||||
"projects/homelab-notes/Untitled",
|
||||
"blog/Pokerus Project.md",
|
||||
"projects/todos-notes/Improve Remote Access Setup.md",
|
||||
"projects/todos-notes",
|
||||
"notes/utils",
|
||||
"notes/foo.md",
|
||||
"notes/thoughts/Depression.md",
|
||||
"blog",
|
||||
"projects/personal-page-notes/Landing_Page.excalidraw",
|
||||
"projects/notes/Untitled",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue