mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-31 02:21:35 +00:00
Bump to v0.5.1
This commit is contained in:
parent
e1ea7289b0
commit
8acb4903cb
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@ -77,6 +77,9 @@ jobs:
|
||||
- name: Release
|
||||
id: create-release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
body_path: release_notes.md
|
||||
generate_release_notes: true
|
||||
|
||||
# Upload app-universal-release APK artifact asset
|
||||
- name: 'Download universal APK Artifact'
|
||||
|
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "frontend",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -149,7 +149,7 @@ android {
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 1
|
||||
versionName "0.5.0-alpha"
|
||||
versionName "0.5.1-alpha"
|
||||
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
|
||||
|
||||
if (isNewArchitectureEnabled()) {
|
||||
|
4
mobile/package-lock.json
generated
4
mobile/package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "robosats",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "robosats",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"dependencies": {
|
||||
"@react-native-clipboard/clipboard": "^1.11.2",
|
||||
"@react-native-community/netinfo": "^9.3.9",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "robosats",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"android": "react-native run-android",
|
||||
|
45
release_notes.md
Normal file
45
release_notes.md
Normal file
@ -0,0 +1,45 @@
|
||||
RoboSats v0.5.1 is now out! :rocket:
|
||||
|
||||
## Changes:
|
||||
- API requests to POST /order that contain important information, i.e, the payout invoice or address, are now signed by the robot PGP key and validated by the coordinator. This way, on a multi coordinator set up, a robot can potentially be re-used across several coordinators without risk of identity stealing (auth token) by a rogue coordinator (alla man-in-the-middle).
|
||||
- New maker form switch for exact and range amounts by @JooVLC
|
||||
- Fix negative premium field by @JooVLC
|
||||
- Self-hosted node app has been fully re-worked. It is now based on Alpine (size went down from 130MB to 7MB) and the ram-heavy dependencies have been dropped. The app is now lighter to run and fully self-contained.
|
||||
|
||||
# Android
|
||||
|
||||
**[Click to download universal RoboSats APK for Android](https://github.com/RoboSats/robosats/releases/download/v0.5.1-alpha/robosats-v0.5.1.alpha-universal.apk)**
|
||||
Smaller bundles for each CPU architecture available in the attachments.
|
||||
|
||||
### Verify the app using GPG:
|
||||
|
||||
1. [Download the ascii armored signature](https://github.com/Reckless-Satoshi/robosats/releases/download/v0.5.1-alpha/robosats-v0.5.1.alpha-universal.apk.asc)
|
||||
|
||||
2. Run this command on a directory that contains the apk file and and the ascii armored signature.
|
||||
`gpg --verify robosats-v0.5.1.alpha-universal.apk.asc`
|
||||
|
||||
3. Verify the signer is actually Reckless-Satoshi (fingerprints match): [B4AB5F19113D4125DDF217739C4585B561315571](https://keys.openpgp.org/vks/v1/by-fingerprint/B4AB5F19113D4125DDF217739C4585B561315571)
|
||||
|
||||
Alternatively you can also verify with the release with the SHA256 checksum.
|
||||
|
||||
Known missing features:
|
||||
- Android APK has no sound or notifications.
|
||||
|
||||
|
||||
# Docker Images
|
||||
|
||||
[Coordinator Backend Image v0.5.1-alpha (Docker Hub)](https://hub.docker.com/r/recksato/robosats/tags?page=1&name=v0.5.1-alpha)
|
||||
|
||||
|
||||
```bash
|
||||
docker pull recksato/robosats:v0.5.1-alpha
|
||||
```
|
||||
|
||||
[Client App Image v0.5.1-alpha (Docker Hub)](https://hub.docker.com/r/recksato/robosats-client/tags?page=1&name=v0.5.1-alpha)
|
||||
|
||||
```bash
|
||||
docker pull recksato/robosats-client:v0.5.1-alpha
|
||||
```
|
||||
|
||||
See [nodeapp/docker-compose.yml](https://github.com/Reckless-Satoshi/robosats/blob/2cd9d748706a8dcc0f03006b483acc6000e0572a/nodeapp/docker-compose.yml) for an example docker-compose usage of the `robosats-client` image.
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"major": 0,
|
||||
"minor": 5,
|
||||
"patch": 0
|
||||
"patch": 1
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user