From f1e4731cbfa6277ea96fa11c0b2f20e98b509b2c Mon Sep 17 00:00:00 2001 From: koalasat Date: Tue, 12 Aug 2025 17:44:34 +0200 Subject: [PATCH] v0.8.1-alpha --- Dockerfile | 2 +- instructions.md | 2 +- manifest.yaml | 8 +++++--- scripts/procedures/migrations.ts | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6709914..52555b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM recksato/robosats-client:v0.8.0-alpha +FROM recksato/robosats-client:v0.8.1-alpha RUN apk add bash curl sudo tini wget yq; \ rm -f /var/cache/apk/* diff --git a/instructions.md b/instructions.md index 8851e5f..c9b3af7 100644 --- a/instructions.md +++ b/instructions.md @@ -1,7 +1,7 @@ # Welcome to RoboSats! A simple and private Lightning P2P exchange you can use directly from StartOS. -You can find a quick start guide, tutorial videos, and detailed documentation at [Learn RoboSats](https://learn.robosats.com/). +You can find a quick start guide, tutorial videos, and detailed documentation at [Learn RoboSats](https://learn.robosats.org/). ## Basic Use 1. Open RoboSats by using the `LAUNCH UI` button. 2. For the first time using RoboSats, you will be provided a robot token (a unique, transient identifier) - you can create as many of these as you'd like. diff --git a/manifest.yaml b/manifest.yaml index 312c3e1..a100423 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,9 +1,11 @@ id: robosats title: "RoboSats" -version: 0.8.0 +version: 0.8.1 release-notes: | - * Updated to RoboSats v0.8.0-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.8.0-alpha) - * Enable LAN access to RoboSats web interface + * Updated to RoboSats v0.8.1-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.8.1-alpha) + * Brand new mobile view + * New in-app private notifications system using nostr + * Revertible payments warning license: mit wrapper-repo: "https://github.com/Start9Labs/robosats-startos" upstream-repo: "https://github.com/RoboSats/robosats" diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index a3c7164..ddb0c09 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -1,4 +1,4 @@ import { compat, types as T } from "../deps.ts"; export const migration: T.ExpectedExports.migration = - compat.migrations.fromMapping({}, "0.8.0"); + compat.migrations.fromMapping({}, "0.8.1");