Skip to content

Commit

Permalink
v0.2.0~2: Bump allowable Bitcoin version, Rename service to "Jam" (#20)
Browse files Browse the repository at this point in the history
* Bump allowable Bitcoin version

* copy change

* README.md: Have user checkout v0351 for installing the SDK

* Use upstream's patch for nginx.org repo's new PGP key

* Update release notes

* typo

* Remove a unneccesary line from a previous test
  • Loading branch information
gStart9 authored Jun 24, 2024
1 parent bc571ab commit f5145fa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM ghcr.io/joinmarket-webui/jam-standalone:v0.2.0-clientserver-v0.9.11
#FROM ghcr.io/joinmarket-webui/jam-standalone:v0.2.0-clientserver-v0.9.11
FROM ghcr.io/joinmarket-webui/jam-dev-standalone:v0.2.0-clientserver-v0.9.11-patch-20240622

# arm64 or amd64
ARG PLATFORM
# aarch64 or x86_64
ARG ARCH

RUN sed -i "s|http://|https://|g" /etc/apt/sources.list /etc/apt/sources.list.d/*
RUN sed -i "s|http://|https://|g" /etc/apt/sources.list /etc/apt/sources.list.d/*
RUN apt-get update && apt-get -qqy upgrade && apt-get install -qqy --no-install-recommends wget bash tini && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Wrapper for Jam

Jam is a web UI for JoinMarket with focus on user-friendliness. It aims to provide sensible defaults and be easy to use for beginners while still providing the features advanced users expect.
[Jam](https://github.com/joinmarket-webui/jam/) is a web UI for JoinMarket with focus on user-friendliness. It aims to provide sensible defaults and be easy to use for beginners while still providing the features advanced users expect.

## Dependencies

Expand Down Expand Up @@ -51,7 +51,7 @@ PLATFORM=$(dpkg --print-architecture)
wget -q https://github.com/mikefarah/yq/releases/latest/download/yq_linux_${PLATFORM} && sudo mv yq_linux_${PLATFORM} /usr/local/bin/yq && sudo chmod +x /usr/local/bin/yq
```

5. Install essentials build packages
5. Install essential build packages

```
sudo apt-get install -y build-essential openssl libssl-dev libc6-dev clang libclang-dev ca-certificates
Expand All @@ -75,7 +75,9 @@ cargo install toml-cli

```
cd ~/ && git clone https://github.com/Start9Labs/start-os.git
cd start-os/backend/
#checkout v0.3.5.1
git checkout 39de098461833e4c56bd3509644ddf7f1a0fc4ca
cd core/
./install-sdk.sh
start-sdk init
```
Expand Down
11 changes: 6 additions & 5 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
id: jam
title: Jam
version: 0.2.0.1
version: 0.2.0.2
release-notes: |
* Update to latest jam-docker image upstream - [Jam v0.2.0 Release Notes](https://github.com/joinmarket-webui/jam/releases/tag/v0.2.0)
* Jam v0.2.0 updates to latest JoinMarket ([v0.9.11](https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/release-notes/release-notes-0.9.11.md))
* Fix default wallet name regression in jam-startos v0.2.0
* Rename service's title from JAM to Jam
* Bump allowed Bitcoin version
* Copy touchups
* Update nginx repo's PGP key in upstream Jam container
license: MIT
wrapper-repo: "https://github.com/Start9Labs/jam-startos"
upstream-repo: "https://github.com/joinmarket-webui/jam-docker"
Expand Down Expand Up @@ -73,7 +74,7 @@ interfaces:
- http
dependencies:
bitcoind:
version: ">=0.23.0.1 <=27.0.0"
version: ">=0.23.0.1 <29.0.0"
requirement:
type: required
description: Used to subscribe to new block events from a full archival node.
Expand Down
2 changes: 1 addition & 1 deletion scripts/services/migrations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { compat, types as T } from "../deps.ts";

export const migration: T.ExpectedExports.migration =
compat.migrations.fromMapping({}, "0.2.0.1");
compat.migrations.fromMapping({}, "0.2.0.2");

0 comments on commit f5145fa

Please sign in to comment.