From 91451b3f308858a5ae0cc71a42d584c316da675c Mon Sep 17 00:00:00 2001 From: Dread <34528298+islandbitcoin@users.noreply.github.com> Date: Fri, 27 Jan 2023 12:49:34 -0700 Subject: [PATCH] update service name (#94) Co-authored-by: islandbitcoin --- .gitignore | 2 ++ manifest.yaml | 7 ++++--- scripts/services/migrations.ts | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index df23960..ae5bd45 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ lnd.s9pk scripts/embassy.js .vscode/ docker-images/ +.DS_Store +scripts/.DS_Store diff --git a/manifest.yaml b/manifest.yaml index 4263812..55eb479 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,9 +1,10 @@ id: lnd -title: Lightning Network Daemon -version: 0.15.5 +title: LND +version: 0.15.5.1 release-notes: |- * LND v0.15.5 [Release Notes](https://github.com/lightningnetwork/lnd/blob/v0-15-5-branch/docs/release-notes/release-notes-0.15.5.md) * Add new action for migration from Umbrel v0.5 and update action for migration from Umbrel v0.4 + * Updated service name from Lightning Network Daemon to LND license: mit wrapper-repo: "https://github.com/Start9Labs/lnd-wrapper" upstream-repo: "https://github.com/lightningnetwork/lnd" @@ -13,7 +14,7 @@ build: ["make"] description: short: A complete implementation of a Lightning Network node by Lightning Labs long: | - LND fully conforms to the Lightning Network specification (BOLTs). BOLT stands for: Basis of Lightning Technology. In the current state lnd is capable of: creating channels, closing channels, managing all channel states (including the exceptional ones!), maintaining a fully authenticated+validated channel graph, performing path finding within the network, passively forwarding incoming payments, sending outgoing onion-encrypted payments through the network, updating advertised fee schedules, and automatic channel management (autopilot). + Lightning Network Daemon (LND) fully conforms to the Lightning Network specification (BOLTs). BOLT stands for: Basis of Lightning Technology. In the current state lnd is capable of: creating channels, closing channels, managing all channel states (including the exceptional ones!), maintaining a fully authenticated+validated channel graph, performing path finding within the network, passively forwarding incoming payments, sending outgoing onion-encrypted payments through the network, updating advertised fee schedules, and automatic channel management (autopilot). assets: license: LICENSE # default = LICENSE.md icon: icon.png # default = icon.png - assumes icon.png if this field does not exist diff --git a/scripts/services/migrations.ts b/scripts/services/migrations.ts index 8f8f9f5..43305a5 100644 --- a/scripts/services/migrations.ts +++ b/scripts/services/migrations.ts @@ -134,5 +134,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations down: () => { throw new Error('Cannot downgrade') }, }, }, - "0.15.5", + "0.15.5.1", );