vault backup: 2022-12-12 22:43:22

This commit is contained in:
Bram Adams
2022-12-12 22:43:22 -06:00
parent 21107d4bdc
commit 87c9e86979
29 changed files with 2622 additions and 602 deletions

View File

@@ -0,0 +1,8 @@
{
"daysToSuppressNewUpdates": 0,
"dismissedVersionsByPluginId": {},
"showIconOnMobile": true,
"excludeBetaVersions": true,
"excludeDisabledPlugins": false,
"hideIconIfNoUpdatesAvailable": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-plugin-update-tracker",
"name": "Plugin Update Tracker",
"version": "1.4.3",
"minAppVersion": "0.15.0",
"description": "Know when installed plugins have updates and evaluate the risk of upgrading",
"author": "Obsidian",
"authorUrl": "https://github.com/swar8080/obsidian-plugin-update-tracker",
"isDesktopOnly": false
}

View File

@@ -2,7 +2,7 @@
"globalFilter": "",
"removeGlobalFilter": false,
"setDoneDate": true,
"autoSuggestInEditor": true,
"autoSuggestInEditor": false,
"autoSuggestMinMatch": 0,
"autoSuggestMaxItems": 6,
"provideAccessKeys": true,

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +1 @@
{
"id": "obsidian-tasks-plugin",
"name": "Tasks",
"version": "1.19.0",
"minAppVersion": "0.14.6",
"description": "Task management for Obsidian",
"author": "Martin Schenck and Clare Macrae",
"authorUrl": "https://github.com/obsidian-tasks-group",
"isDesktopOnly": false
}
{"id":"obsidian-tasks-plugin","name":"Tasks","version":"1.20.0","minAppVersion":"0.14.6","description":"Task management for Obsidian","author":"Martin Schenck and Clare Macrae","authorUrl":"https://github.com/obsidian-tasks-group","isDesktopOnly":false}

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +1 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.9.0",
"minAppVersion": "1.0.0",
"description": "A search engine that just works",
"author": "Simon Cambier",
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
"isDesktopOnly": false
}
{"id":"omnisearch","name":"Omnisearch","version":"1.9.1","minAppVersion":"1.0.0","description":"A search engine that just works","author":"Simon Cambier","authorUrl":"https://github.com/scambier/obsidian-omnisearch","isDesktopOnly":false}

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +1 @@
{
"id": "quickadd",
"name": "QuickAdd",
"version": "0.7.0",
"minAppVersion": "0.13.19",
"description": "Quickly add new pages or content to your vault.",
"author": "Christian B. B. Houmann",
"authorUrl": "https://bagerbach.com",
"isDesktopOnly": false
}
{"id":"quickadd","name":"QuickAdd","version":"0.8.0","minAppVersion":"0.13.19","description":"Quickly add new pages or content to your vault.","author":"Christian B. B. Houmann","authorUrl":"https://bagerbach.com","isDesktopOnly":false}

View File

@@ -1,8 +1,80 @@
{
"recentFiles": [
{
"basename": "Resources",
"path": "_PARA/Projects/Test Project/Resources.md"
},
{
"basename": "Test Project",
"path": "_PARA/Projects/Test Project/Test Project.md"
},
{
"basename": "202212090136",
"path": "202212090136.md"
},
{
"basename": "202212122239",
"path": "202212122239.md"
},
{
"basename": "202212120002",
"path": "202212120002.md"
},
{
"basename": "202212090137",
"path": "202212090137.md"
},
{
"basename": "README",
"path": "README.md"
},
{
"basename": "2022-12-12",
"path": "Daily/2022-12-12.md"
},
{
"basename": "Kanban",
"path": "_PARA/Projects/Test Project/Kanban.md"
},
{
"basename": "Computer Capture",
"path": "Inbox/Computer Capture/Computer Capture.md"
},
{
"basename": "Tasks",
"path": "Computed/Tasks.md"
},
{
"basename": "Kanban",
"path": "_PARA/Projects/Test Project 2/Kanban.md"
},
{
"basename": "2022-12-11--11-59-30",
"path": "Inbox/Smartphone Capture/2022-12-11--11-59-30.md"
},
{
"basename": "Computed",
"path": "Computed/Computed.md"
},
{
"basename": "2022-12-11--12-00-00",
"path": "Inbox/Computer Capture/2022-12-11--12-00-00.md"
},
{
"basename": "2022-12-11",
"path": "Daily/2022-12-11.md"
},
{
"basename": "Daily",
"path": "Templates/Daily.md"
},
{
"basename": "CRM",
"path": "Private/CRM/CRM.md"
},
{
"basename": "People",
"path": "Templates/People.md"
}
],
"omittedPaths": [],

View File

@@ -61,6 +61,7 @@ var DEFAULT_SETTINGS = {
waypointFlag: "%% Waypoint %%",
stopScanAtFolderNotes: false,
showFolderNotes: false,
showNonMarkdownFiles: false,
debugLogging: false,
useWikiLinks: true,
showEnclosingNote: false,
@@ -223,12 +224,19 @@ ${_Waypoint.END_WAYPOINT}`;
return __async(this, null, function* () {
const bullet = " ".repeat(indentLevel) + "-";
if (node instanceof import_obsidian.TFile) {
if (node.path.endsWith(".md")) {
console.log(node);
if (node.extension == "md") {
if (this.settings.useWikiLinks) {
return `${bullet} [[${node.basename}]]`;
} else {
return `${bullet} [${node.basename}](${this.getEncodedUri(rootNode, node)})`;
}
} else if (this.settings.showNonMarkdownFiles) {
if (this.settings.useWikiLinks) {
return `${bullet} [[${node.name}]]`;
} else {
return `${bullet} [${node.name}](${this.getEncodedUri(rootNode, node)})`;
}
}
return null;
} else if (node instanceof import_obsidian.TFolder) {
@@ -368,6 +376,10 @@ var WaypointSettingsTab = class extends import_obsidian.PluginSettingTab {
this.plugin.settings.showFolderNotes = value;
yield this.plugin.saveSettings();
})));
new import_obsidian.Setting(containerEl).setName("Show Non-Markdown Files").setDesc("If enabled, non-Markdown files will be listed alongside other notes in the generated waypoints.").addToggle((toggle) => toggle.setValue(this.plugin.settings.showNonMarkdownFiles).onChange((value) => __async(this, null, function* () {
this.plugin.settings.showNonMarkdownFiles = value;
yield this.plugin.saveSettings();
})));
new import_obsidian.Setting(containerEl).setName("Show Enclosing Note").setDesc("If enabled, the name of the folder note containing the waypoint will be listed at the top of the generated waypoints.").addToggle((toggle) => toggle.setValue(this.plugin.settings.showEnclosingNote).onChange((value) => __async(this, null, function* () {
this.plugin.settings.showEnclosingNote = value;
yield this.plugin.saveSettings();

View File

@@ -1,10 +1 @@
{
"id": "waypoint",
"name": "Waypoint",
"version": "1.3.0",
"minAppVersion": "0.12.0",
"description": "Easily generate dynamic content maps in your folder notes. Enables folders to show up in the graph view and removes the need for messy tags!",
"author": "Idrees Hassan",
"authorUrl": "https://idreesinc.com",
"isDesktopOnly": false
}
{"id":"waypoint","name":"Waypoint","version":"1.4.0","minAppVersion":"0.12.0","description":"Easily generate dynamic content maps in your folder notes. Enables folders to show up in the graph view and removes the need for messy tags!","author":"Idrees Hassan","authorUrl":"https://idreesinc.com","isDesktopOnly":false}

0
.obsidian/plugins/waypoint/styles.css vendored Normal file
View File