From ccf000b09465b1775e6bfb17c3b7da7ac56e8a73 Mon Sep 17 00:00:00 2001 From: Dread <34528298+islandbitcoin@users.noreply.github.com> Date: Mon, 16 Jan 2023 14:01:15 -0500 Subject: [PATCH] update upstream to 0.3.3 (#6) Co-authored-by: islandbitcoin --- .gitignore | 2 +- Dockerfile | 2 +- Makefile | 3 +-- manifest.yaml | 5 ++--- scripts/procedures/healthChecks.ts | 2 +- scripts/procedures/migrations.ts | 2 +- 6 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index c2e894c..61eca4b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,4 @@ image.tar scripts/*.js .DS_Store .vscode/ -docker-images/ \ No newline at end of file +docker-images/ diff --git a/Dockerfile b/Dockerfile index ab8c0b6..c890d58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM recksato/robosats-client:v0.3.2-alpha +FROM recksato/robosats-client:v0.3.3-alpha RUN apt-get update && apt-get install wget curl sudo bash tini -y RUN wget https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_amd64.tar.gz -O - |\ tar xz && mv yq_linux_amd64 /usr/bin/yq diff --git a/Makefile b/Makefile index c161637..abb84df 100644 --- a/Makefile +++ b/Makefile @@ -31,5 +31,4 @@ docker-images/aarch64.tar: Dockerfile docker_entrypoint.sh docker buildx build --tag start9/$(PKG_ID)/main:$(PKG_VERSION) --platform=linux/arm64 --build-arg PLATFORM=arm64 -o type=docker,dest=docker-images/aarch64.tar . $(PKG_ID).s9pk: manifest.yaml instructions.md LICENSE icon.png scripts/embassy.js docker-images/aarch64.tar docker-images/x86_64.tar - if ! [ -z "$(ARCH)" ]; then cp docker-images/$(ARCH).tar image.tar; fi - embassy-sdk pack \ No newline at end of file + embassy-sdk pack diff --git a/manifest.yaml b/manifest.yaml index 4dcc533..97e386f 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -5,11 +5,10 @@ id: robosats # A human readable service title title: "RoboSats" # Service version - accepts up to four digits, where the last confirms to revisions necessary for EmbassyOS - see documentation: https://github.com/Start9Labs/emver-rs. This value will change with each release of the service. -version: 0.3.2 +version: 0.3.3 # Release notes for the update - can be a string, paragraph or URL release-notes: | - * Updated to run on x86_64 architecture - * Fix backup restore + * Updated to v0.3.3-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.3.3-alpha) # The type of license for the project. Include the LICENSE in the root of the project directory. A license is required for a Start9 package. license: mit # The Start9 wrapper repository URL for the package. This repo contains the manifest file (this), any scripts necessary for configuration, backups, actions, or health checks (more below). This key must exist. But could be embedded into the source repository. diff --git a/scripts/procedures/healthChecks.ts b/scripts/procedures/healthChecks.ts index 6f3ed2a..3282b1e 100644 --- a/scripts/procedures/healthChecks.ts +++ b/scripts/procedures/healthChecks.ts @@ -2,4 +2,4 @@ import { types as T, healthUtil } from "../deps.ts"; export const health: T.ExpectedExports.health = { "web-ui": healthUtil.checkWebUrl("http://robosats.embassy:12596") -} \ No newline at end of file +} diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index f17fc64..05b7a81 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.3.2" ); + .fromMapping({}, "0.3.3" );