2 Commits

Author SHA1 Message Date
087b0b5419 v060 update (#21) 2024-03-29 01:52:45 +00:00
a44b3f5036 Update/v0.5.3 (#18)
* Several copy fixes and improvements

* Remove config, minor copy edits to reflect same
2023-10-19 14:39:41 -06:00
4 changed files with 10 additions and 15 deletions

View File

@ -1,4 +1,4 @@
FROM recksato/robosats-client:v0.5.3-alpha FROM recksato/robosats-client:v0.6.0-alpha
RUN apk add bash curl sudo tini wget yq; \ RUN apk add bash curl sudo tini wget yq; \
rm -f /var/cache/apk/* rm -f /var/cache/apk/*

View File

@ -4,7 +4,6 @@ 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.com/).
## Basic Use ## Basic Use
1. Open RoboSats by using the `LAUNCH UI` button. 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. 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.
**IMPORTANT: Robots are saved in your "Garage." It is strongly recommended to use a new robot every time you start a new exchange! Please be aware that your Robot Garage will be different on the Tor (`.onion`) and LAN (`.local`) interfaces. Be sure to follow your trade to completion on the same interface, as it will not be synced between the two.** **Note: Robots are saved in your "garage." It is strongly recommended to use a new robot every time you start a new exchange.**

View File

@ -1,11 +1,8 @@
id: robosats id: robosats
title: "RoboSats" title: "RoboSats"
version: 0.5.3 version: 0.6.0
release-notes: | release-notes: |
* Updated to v0.5.3-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.5.3-alpha) * Updated to v0.6.0-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.6.0-alpha)
* IMPORTANT: Versions previous to v0.5.1 will no longer be compatible
* Remove old naming conventions
* Remove redundant config option (replaced by Robot Garage in UI)
license: mit license: mit
wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper" wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper"
upstream-repo: "https://github.com/Reckless-Satoshi/robosats" upstream-repo: "https://github.com/Reckless-Satoshi/robosats"
@ -58,15 +55,12 @@ interfaces:
# A human readable name for display in the UI # A human readable name for display in the UI
name: User Interface name: User Interface
# A descriptive description of what the interface does # A descriptive description of what the interface does
description: Your RoboSats UI addresses description: Your RoboSats Tor Hidden Service address
tor-config: tor-config:
# Port mappings are from the external port to the internal container port # Port mappings are from the external port to the internal container port
port-mapping: port-mapping:
80: "12596" 80: "12596"
lan-config: # Port mappings are from the external port to the internal container port
443:
ssl: true
internal: 12596
# Denotes if the service has a user interface to display # Denotes if the service has a user interface to display
ui: true ui: true
# Denotes the protocol specifications used by this interface # Denotes the protocol specifications used by this interface
@ -74,7 +68,9 @@ interfaces:
- tcp - tcp
- http - http
dependencies: {} dependencies: {}
# alerts: alerts:
start: |
ATTENTION: Your browser must have Tor support to use this service.
# Specifies how backups should be run for this service. The default EmbassyOS provided option is to use the duplicity backup library on a system image (compat) # Specifies how backups should be run for this service. The default EmbassyOS provided option is to use the duplicity backup library on a system image (compat)
backup: backup:
create: create:

View File

@ -1,4 +1,4 @@
import { compat, types as T } from "../deps.ts"; import { compat, types as T } from "../deps.ts";
export const migration: T.ExpectedExports.migration = compat.migrations export const migration: T.ExpectedExports.migration = compat.migrations
.fromMapping({}, "0.5.3" ); .fromMapping({}, "0.6.0" );