1
0
Fork 0

Manual backup: 2024-05-04 13:41:23

This commit is contained in:
Alexander Schäferdiek 2024-05-04 13:41:23 +02:00
parent 9cd5ce16ce
commit 69861c7c66
8 changed files with 618 additions and 327 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,11 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.5.64",
"version": "0.5.66",
"minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>",
"authorUrl": "https://github.com/blacksmithgu",
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
"isDesktopOnly": false
}

View file

@ -8,6 +8,7 @@
"disablePush": false,
"pullBeforePush": true,
"disablePopups": false,
"disablePopupsForNoChanges": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
@ -26,6 +27,8 @@
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"authorInHistoryView": "hide",
"dateInHistoryView": false,
"lineAuthor": {
"show": false,
"followMovement": "inactive",

View file

@ -34261,7 +34261,7 @@ var LineAuthoringFeature = class {
}
activateFeature() {
try {
if (!this.isAvailableOnCurrentPlatform())
if (!this.isAvailableOnCurrentPlatform().available)
return;
setTextColorCssBasedOnSetting(this.plg.settings.lineAuthor);
this.lineAuthorInfoProvider = new LineAuthorProvider(this.plg);
@ -44772,11 +44772,10 @@ var ObsidianGit = class extends import_obsidian31.Plugin {
dispatchEvent(new CustomEvent("git-refresh"));
return true;
}
//
// Used for internals
// Returns whether the pull added a commit or not.
//
// See {@link pullChangesFromRemote} for the command version.
/** Used for internals
Returns whether the pull added a commit or not.
See {@link pullChangesFromRemote} for the command version. */
async pull() {
if (!await this.remotesAreSet()) {
return false;

View file

@ -5,5 +5,5 @@
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js",
"version": "2.24.0"
"version": "2.24.1"
}

View file

@ -4,11 +4,11 @@
"type": "split",
"children": [
{
"id": "d44494af75811809",
"id": "6854345a6146d553",
"type": "tabs",
"children": [
{
"id": "71e7b4a13fe35619",
"id": "cddd25e9a53cb89c",
"type": "leaf",
"state": {
"type": "empty",
@ -128,36 +128,36 @@
"templater-obsidian:Templater": false
}
},
"active": "71e7b4a13fe35619",
"active": "cddd25e9a53cb89c",
"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/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/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/sway.md",
"KB/Linux/Desktop/ArchLinux/i3.md",
"KB/Linux/Desktop/ArchLinux/Surface.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/Audio/aptx and pulseaudio.md",
"KB/Linux/Server/systemd.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/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/SSH Guard.md",
"KB/Linux/AMD.md",
"KB/Linux/Server/Domains.md",
"KB/Linux/Desktop/Firewall"
]
}

View file

@ -1,4 +1,3 @@
---
creation date: 2022-09-03
tags: [docker,volume,operations,migration]

View file

@ -1,4 +1,3 @@
# README
This is a collection of instructions and guides found useful.