Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
tag v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Dec 9, 2022
1 parent 1872c30 commit 58e7557
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,21 @@ Some of the features it includes are:
- the same invoice from A can be paid by multiple wallets (B, C, D and so on) atomically
- perfect for splitting bills at restaurants
- LNURL support
- lnurl-channel, lnurl-hosted-channel
- lnurl-pay, lightning address, comments, message, URL and AES-encrypted `successAction`s
- lnurl-withdraw
- keyauth (lnurl-auth)
- NameDesc support
- get channels with lnurl-channel, lnurl-hosted-channel
- withdraw from services with lnurl-withdraw
- login to websites with keyauth (lnurl-auth)
- pay out to services with lnurl-pay and lightning address, possibly including
- arbitrary comments
- free names for tips
- key and signed keyauth challenges that allow simultaneous payment and login or account referencing
- unique public keys that allow later payer identification
- reading `successAction`s that can be
- free messages from the service to the wallet
- URLs sent from the service
- AES-encrypted secrets decryptable only with the payment preimage
- NameDesc!
- parse NameDesc invoices
- optionally generate NameDesc invoices

![obiwan](https://user-images.githubusercontent.com/1653275/186679611-c5c25d94-752a-4368-a0e4-7e7109fa5548.gif)

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
targetSdkVersion 31
minSdkVersion 26

versionName '0.1.9'
versionCode 10
versionName '0.2.0'
versionCode 11
}

dexOptions {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/scala/RemotePeerActivity.scala
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class RemotePeerActivity
): Runnable = UITask {
// At this point we have a real signed funding, relay it to channel and indicate progress
sendView.switchToSpinner(alert)
channel process response
channel.process(response)
}

def attempt(alert: AlertDialog): Unit = {
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- Improved NameDesc! (bLIP-0012) parsing.
- Option to set up a pseudonym and use that when paying out to lnurlpay endpoints that use LUD-18 and also to generate invoices containing your name (NameDesc!).
- Stop showing `payee` information for Lightning payments since that is irrelevant in most cases, that information can still be accessed through the "share" functionality.
- Stop showing `fiat value` unless the fiat value is 10 cents or more.

0 comments on commit 58e7557

Please sign in to comment.