Skip to content

Commit

Permalink
Increment to version 4.0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
angelix committed Mar 18, 2024
1 parent 8511d1a commit 7e3fd06
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [4.0.26] - 2024-03-18

### Changed
- Bump Breez to version 0.3.6

## [4.0.25] - 2024-03-15

### Added
Expand All @@ -11,7 +16,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Add metadata for F-Droid build
- Handle "master blinding key" for advanced jade users


### Changed
- Bump GDK to version 0.70.3
- Allow changing denomination on watch-only sessions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fun Long.milliSatoshi(): ULong = (this * 1000).toULong()

fun ULong.satoshi() = toLong() / 1000

fun OpenChannelFeeResponse.feeSatoshi() = feeMsat.satoshi()
fun OpenChannelFeeResponse.feeSatoshi() = feeMsat?.satoshi()

fun ReceivePaymentResponse.receiveAmountSatoshi() = lnInvoice.receiveAmountSatoshi(openingFeeParams)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ class LightningBridge constructor(
blockHeight = 0u,
channelsBalanceMsat = 0u,
onchainBalanceMsat = 0u,
pendingOnchainBalanceMsat = 0u,
utxos = listOf(),
maxPayableMsat = 0u,
maxReceivableMsat = 0u,
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ androidCompileSdk = "34"
androidTargetSdk = "34"
androidMinSdk = "24"
buildTools = "34.0.0"
breez = "0.2.15"
breez = "0.3.6"
activity-ktx = "1.8.2"
androidx-junit = "1.1.5"
annotation = "1.7.1"
Expand Down
4 changes: 2 additions & 2 deletions green/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ android {
defaultConfig {
minSdk = libs.versions.androidMinSdk.get().toInt()
targetSdk = libs.versions.androidTargetSdk.get().toInt()
versionCode = 425
versionName = "4.0.25"
versionCode = 426
versionName = "4.0.26"

setProperty("archivesBaseName", "BlockstreamGreen-v$versionName")
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
Expand Down

0 comments on commit 7e3fd06

Please sign in to comment.