Manual backup: 2024-05-04 13:41:23
This commit is contained in:
parent
9cd5ce16ce
commit
69861c7c66
8 changed files with 618 additions and 327 deletions
886
.obsidian/plugins/dataview/main.js
vendored
886
.obsidian/plugins/dataview/main.js
vendored
File diff suppressed because one or more lines are too long
3
.obsidian/plugins/dataview/manifest.json
vendored
3
.obsidian/plugins/dataview/manifest.json
vendored
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"id": "dataview",
|
"id": "dataview",
|
||||||
"name": "Dataview",
|
"name": "Dataview",
|
||||||
"version": "0.5.64",
|
"version": "0.5.66",
|
||||||
"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>",
|
||||||
"authorUrl": "https://github.com/blacksmithgu",
|
"authorUrl": "https://github.com/blacksmithgu",
|
||||||
|
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
}
|
}
|
||||||
|
|
3
.obsidian/plugins/obsidian-git/data.json
vendored
3
.obsidian/plugins/obsidian-git/data.json
vendored
|
@ -8,6 +8,7 @@
|
||||||
"disablePush": false,
|
"disablePush": false,
|
||||||
"pullBeforePush": true,
|
"pullBeforePush": true,
|
||||||
"disablePopups": false,
|
"disablePopups": false,
|
||||||
|
"disablePopupsForNoChanges": false,
|
||||||
"listChangedFilesInMessageBody": false,
|
"listChangedFilesInMessageBody": false,
|
||||||
"showStatusBar": true,
|
"showStatusBar": true,
|
||||||
"updateSubmodules": false,
|
"updateSubmodules": false,
|
||||||
|
@ -26,6 +27,8 @@
|
||||||
"submoduleRecurseCheckout": false,
|
"submoduleRecurseCheckout": false,
|
||||||
"gitDir": "",
|
"gitDir": "",
|
||||||
"showFileMenu": true,
|
"showFileMenu": true,
|
||||||
|
"authorInHistoryView": "hide",
|
||||||
|
"dateInHistoryView": false,
|
||||||
"lineAuthor": {
|
"lineAuthor": {
|
||||||
"show": false,
|
"show": false,
|
||||||
"followMovement": "inactive",
|
"followMovement": "inactive",
|
||||||
|
|
11
.obsidian/plugins/obsidian-git/main.js
vendored
11
.obsidian/plugins/obsidian-git/main.js
vendored
|
@ -34261,7 +34261,7 @@ var LineAuthoringFeature = class {
|
||||||
}
|
}
|
||||||
activateFeature() {
|
activateFeature() {
|
||||||
try {
|
try {
|
||||||
if (!this.isAvailableOnCurrentPlatform())
|
if (!this.isAvailableOnCurrentPlatform().available)
|
||||||
return;
|
return;
|
||||||
setTextColorCssBasedOnSetting(this.plg.settings.lineAuthor);
|
setTextColorCssBasedOnSetting(this.plg.settings.lineAuthor);
|
||||||
this.lineAuthorInfoProvider = new LineAuthorProvider(this.plg);
|
this.lineAuthorInfoProvider = new LineAuthorProvider(this.plg);
|
||||||
|
@ -44772,11 +44772,10 @@ var ObsidianGit = class extends import_obsidian31.Plugin {
|
||||||
dispatchEvent(new CustomEvent("git-refresh"));
|
dispatchEvent(new CustomEvent("git-refresh"));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//
|
/** Used for internals
|
||||||
// Used for internals
|
Returns whether the pull added a commit or not.
|
||||||
// Returns whether the pull added a commit or not.
|
|
||||||
//
|
See {@link pullChangesFromRemote} for the command version. */
|
||||||
// See {@link pullChangesFromRemote} for the command version.
|
|
||||||
async pull() {
|
async pull() {
|
||||||
if (!await this.remotesAreSet()) {
|
if (!await this.remotesAreSet()) {
|
||||||
return false;
|
return false;
|
||||||
|
|
2
.obsidian/plugins/obsidian-git/manifest.json
vendored
2
.obsidian/plugins/obsidian-git/manifest.json
vendored
|
@ -5,5 +5,5 @@
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||||
"js": "main.js",
|
"js": "main.js",
|
||||||
"version": "2.24.0"
|
"version": "2.24.1"
|
||||||
}
|
}
|
||||||
|
|
38
.obsidian/workspace.json
vendored
38
.obsidian/workspace.json
vendored
|
@ -4,11 +4,11 @@
|
||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "d44494af75811809",
|
"id": "6854345a6146d553",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "71e7b4a13fe35619",
|
"id": "cddd25e9a53cb89c",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "empty",
|
"type": "empty",
|
||||||
|
@ -128,36 +128,36 @@
|
||||||
"templater-obsidian:Templater": false
|
"templater-obsidian:Templater": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "71e7b4a13fe35619",
|
"active": "cddd25e9a53cb89c",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"KB/Linux/Wireguard.md",
|
||||||
|
"KB/Linux/Pacman.md",
|
||||||
|
"KB/Linux/Desktop/Steam.md",
|
||||||
|
"KB/Linux/Desktop/Mail.md",
|
||||||
"KB/Linux/Desktop/GPG - PGP.md",
|
"KB/Linux/Desktop/GPG - PGP.md",
|
||||||
|
"KB/Linux/Kernel.md",
|
||||||
|
"KB/Linux/GNOME.md",
|
||||||
|
"KB/Linux/DNS.md",
|
||||||
|
"KB/Linux/Disk Speed.md",
|
||||||
|
"KB/Linux/AMD.md",
|
||||||
"KB/Linux/Server/Hetzner/Storagebox.md",
|
"KB/Linux/Server/Hetzner/Storagebox.md",
|
||||||
|
"KB/Linux/Server/DNS.md",
|
||||||
|
"KB/Linux/Server/Client certificate generation.md",
|
||||||
|
"KB/Linux/Server/systemd.md",
|
||||||
|
"KB/Linux/Server/PostgreSQL.md",
|
||||||
|
"KB/Linux/Server/Docker Volume Migration.md",
|
||||||
|
"KB/Linux/Desktop/ArchLinux/Firewall.md",
|
||||||
|
"README.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/Theming Qt and Gtk.md",
|
"KB/Linux/Desktop/ArchLinux/Theming Qt and Gtk.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/sway.md",
|
"KB/Linux/Desktop/ArchLinux/sway.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/i3.md",
|
"KB/Linux/Desktop/ArchLinux/i3.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/Surface.md",
|
"KB/Linux/Desktop/ArchLinux/Surface.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/Audio/EQ.md",
|
"KB/Linux/Desktop/ArchLinux/Audio/EQ.md",
|
||||||
"KB/Linux/Desktop/Mail.md",
|
|
||||||
"KB/Linux/Desktop/Steam.md",
|
|
||||||
"KB/Linux/Desktop/ArchLinux/Tweaks.md",
|
"KB/Linux/Desktop/ArchLinux/Tweaks.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/Audio/aptx and pulseaudio.md",
|
"KB/Linux/Desktop/ArchLinux/Audio/aptx and pulseaudio.md",
|
||||||
"KB/Linux/Server/systemd.md",
|
|
||||||
"KB/Linux/Desktop/ArchLinux/Fonts.md",
|
"KB/Linux/Desktop/ArchLinux/Fonts.md",
|
||||||
"KB/Linux/Desktop/ArchLinux/Firewall.md",
|
|
||||||
"KB/Linux/Desktop/ArchLinux/Install.md",
|
|
||||||
"KB/Linux/Desktop/ArchLinux/KDE/KDE Tiling.md",
|
|
||||||
"KB/Linux/Desktop/ArchLinux",
|
"KB/Linux/Desktop/ArchLinux",
|
||||||
"KB/Linux/Server/PostgreSQL.md",
|
|
||||||
"KB/Linux/Server/Docker Volume Migration.md",
|
|
||||||
"KB/Linux/Server/DNS.md",
|
|
||||||
"KB/Linux/Server/Client certificate generation.md",
|
|
||||||
"KB/Linux/Server/ArchLinux/Remote unlocking at boot.md",
|
|
||||||
"KB/Linux/Server/ArchLinux/Security hardening.md",
|
|
||||||
"KB/Linux/Server/ArchLinux/Bootstrap.md",
|
|
||||||
"KB/Linux/Server/ArchLinux",
|
"KB/Linux/Server/ArchLinux",
|
||||||
"KB/Linux/Server/ArchLinux/SSH Guard.md",
|
|
||||||
"KB/Linux/AMD.md",
|
|
||||||
"KB/Linux/Server/Domains.md",
|
|
||||||
"KB/Linux/Desktop/Firewall"
|
"KB/Linux/Desktop/Firewall"
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
creation date: 2022-09-03
|
creation date: 2022-09-03
|
||||||
tags: [docker,volume,operations,migration]
|
tags: [docker,volume,operations,migration]
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# README
|
|
||||||
|
|
||||||
This is a collection of instructions and guides found useful.
|
This is a collection of instructions and guides found useful.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue