Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 0.7.0-rc.7 (Synonym Fork)

## Synonym Fork Additions
- Added **Light Mode** build-time configuration for resource-constrained environments (iOS NSE, Android background):
- `Builder::set_light_mode_minimal()` - Ultra-minimal mode for iOS Notification Service Extension (~24MB memory limit)
- `single_threaded_runtime` flag - Saves ~10-15MB by using single-threaded Tokio runtime
- `disable_liquidity_handler` flag - Disables LSPS1/LSPS2 background processing
- Combined with existing flags (`disable_listening`, `disable_peer_reconnection`, `disable_rgs_sync`, etc.)
- Added **Runtime Sync Intervals** (`RuntimeSyncIntervals`) to adjust background task intervals at runtime for battery saving:
- `Node::update_sync_intervals()` - Update intervals without restarting the node
- `battery_saving_sync_intervals()` - Convenience function with preset battery-saving values
- Configurable intervals for: peer reconnection, RGS sync, pathfinding scores, node announcements,
on-chain wallet sync, Lightning wallet sync, and fee rate cache updates
- Documentation improvements for mobile developer usage (Android battery saving, iOS NSE integration)

# 0.7.0-rc.6 (Synonym Fork)

## Synonym Fork Additions
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ldk-node"
version = "0.7.0-rc.6"
version = "0.7.0-rc.7"
authors = ["Elias Rohrer <dev@tnull.de>"]
homepage = "https://lightningdevkit.org/"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let tag = "v0.7.0-rc.6"
let checksum = "4ea23aedbf918a1c93539168f34e626cbe867c1d5e827b7b7fd0e84225970b91"
let tag = "v0.7.0-rc.7"
let checksum = "a90003bce59a5625d6276d027f73dd37db1048bc2ee7727352988274717180ed"
let url = "https://github.com/synonymdev/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"

let package = Package(
Expand Down
2 changes: 1 addition & 1 deletion bindings/kotlin/ldk-node-android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
libraryVersion=0.7.0-rc.6
libraryVersion=0.7.0-rc.7
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading