forked from mynodebtc/mynode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1225 lines (1085 loc) · 30.3 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== v0.3.27 ===
- Released 3/03/24
- Upgrade LNBits to v0.12.2
- Add option to disable I2P
- Improve internal networking issues with IPv6
- Fix possible BTC RPC Explorer connection issue
- Fix issue with RTL connecting to Loop
=== v0.3.26 ===
- Released 1/21/24
- Upgrade Thunderhub to v0.13.30
- Upgrade RTL to v0.15.0
- Upgrade LiT to v0.12.2
- Upgrade LND to v0.17.3
- Resolve Mempool launch issue
=== v0.3.25 ===
- Released 1/11/24
- Initial Raspberry Pi 5 Support
- Add log2ram on x86 devices
- Fix issue where JM certificates aren not gnerated
- Fix issue creating legacy wallet for JoinMarket
- Fix issue where some API requests would return cached data
=== v0.3.24 ===
- Released: 12/18/23
- Upgrade Bitcoin to v26.0
- Upgrade Lightning Terminal to v0.12.1
- Upgrade Loop to v0.26.6
- Upgrade LND to v0.17.2
- Improved support for Debian 12
- Added setting for Electrum TX Limit
- Dynamic setting for assumevalid during initial sync
- Minor UI Improvements
=== v0.3.23 ===
- Released: 11/05/23
- Fix issue determining LND status
=== v0.3.22 ===
- Released: 11/02/23
- Upgrade Bitcoin to v25.1
- Upgrade LND to v0.17.0
- Upgrade LiT to v0.12.0
- Upgrade Loop to v0.26.5
- Upgrade LNBits to v0.11.1
- Upgrade RTL to v0.14.1
- Upgrade Joininbox to v0.8.1
- Upgrade JAM to v0.1.6
- Minor Fixes
=== v0.3.21 ===
- Released: 09/29/23
- Resolve upgrade issue with old NodeJS package server
- Upgrade LNBits to v0.10.0
=== v0.3.20 ===
- Released: 09/12/23
- Upgrade Thunderhub to v0.13.23
- Upgrade BTC RPC Explorer to v3.4.0
- Upgrade Dojo to v1.20.0
- Upgrade LNBits to v0.10.9
- Upgrade Lightning Terminal to v0.10.4
- Upgrade Loop to v0.26.2
- Upgrade BTCPay Server to v1.11.2
- Upgrade Joininbox to v0.8.0
- Upgrade Caravan to v0.6.2
- Upgrade NodeJS to v18.x
- Update Favicon
- Update Joinmarket and Caravan icons
- Add Channel Tools for debugging
- Add pin for homepage Bitcoin details
- Various bug fixes
=== v0.3.19 ===
- Released: 07/14/23
- Upgrade LND to v0.16.4
- Upgrade Loop to v0.25.2
- Upgrade LNDg to v1.7.1
- Upgrade BTCPay to v1.10.3
=== v0.3.18 ===
- Released: 06/12/23
- Upgrade Bitcoin to v25.0
- Upgrade LND to v0.16.3
- Upgrade RTL to v0.14.0
- Upgrade LiT to v0.10.1
- Upgrade Loop to v0.24.1
- Upgrade Pool to v0.6.4
- Add button to reset LND macaroons
- Add button to reset thunderhub config
- Add settings file to control electrs index_limit
- Enable mempoolfullrbf in default Bitcoin config
- Bugfix: Resolve Flask deprecation issue
=== v0.3.17 ===
- Released: 05/15/23
- Upgrade Lightning Terminal to v0.9.2
- Upgrade LNDg to v1.6.4
- Upgrade LNBits to v0.10.6
=== v0.3.16 ===
- Released: 04/30/23
- Upgrade LND to v0.16.2
- Upgrade LiT to v0.9.1
- Upgrade Loop to v0.23.0
- Update JoinMarket Config
=== v0.3.15 ===
- Released: 04/17/23
- Upgrade Dojo to v1.19.2
- Upgrade BTCPay Server to v1.8.4
- Upgrade LNDg to v1.6.3
- Upgrade Nostr RS Relay to v0.8.8
- Fix upgrade issue on VM images
=== v0.3.14 ===
- Released: 04/05/23
- Fix: Update config so Lightning Terminal launches properly
=== v0.3.13 ===
- Released: 04/04/23
- Upgrade LNBits to v0.10.0
- Upgrade Mempool to v2.5.0
- Upgrade Loop to v0.22.0
- Upgrade Pool to v0.6.2
- Upgrade Lightning Terminal to v0.9.0
- Upgrade LNDg to v1.6.0
- Upgrade BoS to v13.31.5
- Upgrade LNDManage to v0.14.2
- Hide Premium+ Access Token
- Improve logging
=== v0.3.12 ===
- Released: 03/06/23
- Fix apparmor profile issue preventing tor from starting on some platforms
=== v0.3.11 ===
- Released: 03/01/23
- Improve hybrid-mode LND config
- Increase electrs address limits
- Add option to reset custom Bitcoin version
- Add CLI command to stop dynamic apps
- Improved mempool re-install
- Add pass and apparmor packages to help docker issues
=== v0.3.10 ===
- Released: 02/16/23
- Add ability to swap versions of Bitcoin
- Add ability to run Bitcoin Ordisrespector
- Upgrade lnbits to v0.9.7
- Upgrade Astral (nostr client)
- Upgrade JAM to v0.1.5
- Upgrade LNDg to v1.5.1
- Upgrade JoininBox to v0.7.6
- Upgrade BTCPay Server to v1.7.11
- Upgrade Nostr RS Relay to v0.8.5
- Add VPN log to status page
- Improve LN Wallet delete / remake process
=== v0.3.09 ===
- Released: 01/19/23
- Add LndBoss v2.16.0
- Add ability to append custom Bitcoin config
- Add ability to append custom LND config
- Upgrade Loop to v0.21.0
- Upgrade LNDg to v1.5.0
- Upgrade Astral
- Improve NVMe support
- Fix electrs binary on rockpi 4
- Fix Thunderhub config from being overwritten
- Fix electrum from hanging on large addresses
- Add better nostr app descriptions
- Add status log for Joinmarket API
=== v0.3.08 ===
- Released: 01/04/23
- Add Astral nostr client
- Add nostr-rs-relay v0.7.15
- Add noscl nostr client v0.6.0
- Upgrade LNBits to v0.9.5.3
- Upgrade RTL to v0.13.4
- Improve default joinmarket settings
- Add Go Compiler
- Fix CKBunker installation errors
- Add Marketplace category for Communication
- Improve Clearnet toggle for LND
=== v0.3.07 ===
- Released: 12/22/22
- Apply workaround for Bitcoin wallet migration issue
- Improve port binding logic for Bitcoin when clearnet is enabled
- Upgrade LNBits to v0.9.5.2
=== v0.3.06 ===
- Released: 12/18/22
- Upgrade Bitcoin to v24.0.1
- Upgrade LND to v0.15.5
- Upgrade RTL to v0.13.2
- Upgrade Thunderhub to v0.13.18
- Upgrade BTC Pay to v1.7.2
- Upgrade LNDg to v1.4.0
- Upgrade Lily Wallet to v1.3.0
- Upgrade Caravan to v0.3.14
- Upgrade Jam to v0.1.4
- Upgrade Specter to v1.14.1
- Upgrade Pool vo v0.6.1
- Upgrade Lit to v0.8.5
- Upgrade BoS to v13.10.6
- Enable NTP on Armbian platforms
- Minor Bug Fixes
=== v0.3.05 ===
- Released: 11/11/22
- Add Lilywallet
- Upgrade electrs for aarch64 and arm32
- Upgrade Loop to v0.20.2
- Upgrade Pool to v0.6.0
- Upgrade BTCPay to v1.6.12
- Upgrade Jam to v0.1.3
- Upgrade BoS to v13.5.1
- Upgrade Sphinx Relay to v2.2.12
- Upgrade Whirlpool to v0.10.16
- Minor Bug Fixes
=== v0.3.04 ===
- Released: 11/01/22
- Add Jam (v0.1.1)
- Upgrade LND to v0.15.4
- Upgrade LiT to v0.8.3
- Upgrade Electrs to v0.9.9
- Upgrade BoS to v13.1.4
- Fix Warden Terminal installation issue
- Improve LNBits connection consistency to LND
=== v0.3.03 ===
- Released: 10/09/22
- Upgrade LND to v0.15.2
- Resolves issue syncing LND to blockchain tip
=== v0.3.02 ===
- Released: 10/08/22
- Add I2P Netowork Option
- Upgrade LNBits to v0.9.4
- Upgrade Specter to v1.13.0
- Upgrade BTCPay Server to v1.6.11
- Upgrade Thunderhub to v0.13.16
- Upgrade Lightning Terminal to v0.8.0
- Upgrade Pool to v0.5.8
- Upgrade BoS to v13.0.2
- Upgrade JoininBox to v0.7.3
- Add network selection during setup
- Minor bug fixes
=== v0.3.01 ===
- Released: 09/14/22
- Add Tailscale VPN App
- Add WeTTY Terminal App
- Upgrade LND to v0.15.1
- Upgrade LiT to v0.7.1
- Upgrade BoS to 12.29.0
- Upgrade JoininBox to v0.7.2
- Upgrade RTL to v0.13.1
- Upgrade BTCPay to v1.6.10
- Upgrade Thunderhub to v0.13.15
- Upgrade Specter to v1.12.0
- Upgrade LNDg to v1.3.1
- Adding community apps is a community edition feature
- Minor bug fixes
=== v0.3.0 ===
- Released: 08/19/22
- New App Marketplace
- New Premium+ Service
- New Software Development Kit (SDK)
- Upgrade LND to v0.15.0
- Upgrade BTCPay Server to v1.6.9
- Upgrade LiT to v0.7.0
- Upgrade Pool to v0.5.7
- Upgrade Loop to v0.20.1
- Web Interface Updates
=== v0.2.57 ===
- Released: 06/18/22
- New logo!
- New Customize App Version Interface
- Upgrade Mempool to v2.4.0
- Upgrade Specter to v1.10.2
- Upgrade LNDg to v1.1.2
- Upgrade BoS to v12.13.2
- Upgrade PyBlock to v2.0.3
- Improve Balance Randomization
- Improve USB driver management
- Fix Watchtower pubkey display
- Fix LiT icon path
- Add reset button for Watchtower client and server
- Add setting for
- Add setting to allow all local network traffic (fixes NAT-PMP)
=== v0.2.56 ===
- Released: 06/01/22
- Upgrade Bitcoin v23.0
- Upgrade BTCPay to v1.5.4
- Upgrade Thunderhub to v0.13.13
- Upgrade Specter to v1.10.0
- Upgrade Dojo to v1.15.0
- Upgrade Whirlpool CLI to v0.10.15
- Upgrade LNDg to v1.1.1
- Upgrade SphinxRelay to v2.2.9
- Upgrade JoininBox to v0.6.8
- Upgrade BoS to 12.8.4
- Improve add more details and warning when drive space is low
- Add message encouraging RP4 32-bit users to upgrade to 64-bit
- Dev: Better UEFI support
- Dev: Improve SDK-based apps
=== v0.2.55 ===
- Released: 05/06/22
- Add LNDg (beta)
- Upgrade LND to v0.14.3
- Upgrade Specter to v1.9.4
- Upgrade BTC Pay to v1.5.1
- Upgrade RTL to v0.12.3
- Upgrade Thunderhub to v0.13.11
- Upgrade Sphinx Relay to v2.2.8
- Upgrade BoS to v12.7.0
- Upgrade LiT to v0.6.7
- Upgrade Pool to v0.5.6
- Refactor BTC Pay Server Install
- Add option to regenerate SSH keys
- Add warning for subnet conflicts
- Basic dynamic app support
=== v0.2.54 ===
- Released: 04/04/22
- Add UI for LND Watchtower
- Upgrade Loop to v0.18.0
- Upgrade Lightning Terminal to v0.6.5
- Upgrade Thunderhub to v0.13.10
- Upgrade Specter to v1.9.1
- Upgrade BTCPay Server to v1.4.9
- Upgrade LNDManage to v0.14.1
- Upgrade Sphinx Relay to v2.2.6
- Upgrade BoS to v11.64.1
- Update favicon
- Resolve issue with RTL install
- Resolve issue setting LND alias
- Resolve issue toggling tor
- Dev: More python refactoring
=== v0.2.53 ===
- Released: 03/07/22
- Upgrade Dojo to v1.14.0
- Upgrade Thunderhub to v0.13.7
- Upgrade RTL to v0.12.2
- Upgrade JoininBox to v0.6.7
- Upgrade BTCPay Server to v1.4.7
- Upgrade LiT to v0.6.4
- Upgrade Pool to v0.5.5
- Upgrade Netdata to v1.32.1
- Upgrade BoS to v11.57.0
- Devs: Migrate Web UI to Python3
- Devs: Refactor Python Code to "PyNode"
=== v0.2.52 ===
- Released: 02/11/22
- Upgrade LND to v0.14.2
- Upgrade Loop to v0.17.0
- Upgrade BTCPay Server to v1.4.4
- Upgrade Specter to v1.8.1
- Upgrade Whirlpool to v0.10.13
- Upgrade BoS to v11.52.1
- Improve QR code scanning
- Add toggle for BIP37 and BIP157
- Add UAS toggle for USB driver (RP4)
- Fix: Prevent RPC password errors after resetting blockchain
- Fix: Corsproxy now runs properly
- Devs: Add toggle for Python3 web UI
=== v0.2.51 ===
- Released: 01/28/22
- Upgrade Mempool to v2.3.1
- Upgrade BTCPay Server to v1.4.0
- Upgrade Whirlpool to v0.10.12
- Upgrade JoininBox to v0.6.6
- Upgrade Lightning Terminal to v0.6.2
- Upgrade Pool to v0.5.4
- Upgrade Sphinx Relay to v2.2.5
- Upgrade BoS to v11.36.2
- Add early support for Rock Pi 4
- Bug fixes
=== v0.2.50 ===
- Released: 01/02/22
- Add OpenDime Support
- Upgrade Dojo to v1.13.0
- Upgrade RTL to v0.12.0
- Upgrade JoininBox to v0.6.5
- Upgrade BTC Pay Server to v1.3.7
- Upgrade PyBlock to v1.1.9
=== v0.2.49 ===
- Released: 12/18/21
- Add Warden Terminal App
- Upgrade Pool to v0.5.3
- Upgrade Loop to v0.16.0
- Upgrade BTC RPC Explorer to v3.3.0
- Upgrade Caravan to v0.3.13
- Upgrade PyBlock to v1.1.8.6
- Upgrade BoS to v11.16.0
- Enable bash-completion for Bitcoin and LND CLI
- Fix issue with LND wallet creation on ARM32 platform
=== v0.2.48 ===
- Released: 12/03/21
- Add optional Price Ticker
- Add ability to insert custom hook scripts
- Upgrade LiT to v0.6.2
- Upgrade Specter to v1.7.2
- Upgrade JoininBox to v0.6.4
- Upgrade BoS to v0.11.13
- Upgrade PyBlock to v1.1.6
- Improve Docker Consistency
=== v0.2.47 ===
- Released: 11/26/21
- Upgrade LND to v0.14.1
- Upgrade Electrs to v0.9.3
- Upgrade Lightning Terminal to v0.6.0
- Upgrade LNDManage to v0.14.0
- Upgrade BTC Pay Server to v1.3.6
- Upgrade PyBlock to v1.1
- Upgrade Sphinx Relay to v2.2.3
- Upgrade Python to v3.8.9
- Fix LND wallet creation issue
=== v0.2.46 ===
- Released: 11/19/21
- Upgrade LND to v0.14.0
- Upgrade Dojo to v1.12.1
- Upgrade Specter to v1.7.1
- Upgrade BTC Pay Server to v1.3.5
- Upgrade BoS to v11.12.0
- Upgrade Sphinx Relay to v2.2.2
- Improve Tor services for apps
- Add app tile for lndmanage
- Improve handling of 32->64 bit upgrades
- Bug fixes
=== v0.2.45 ===
- Released: 11/03/21
- Remove Tor v2 services
- Improve upgrade consistency
- Add button to download HTTPS certificate
=== v0.2.44 ===
- Released: 10/26/21
- Upgrade Electrs to v0.9.1
- Upgrade Thunderhub to v0.12.30
- Upgrade Dojo to v1.12.0
- Upgrade Specter to v1.7.0
- Upgrade BTC Pay Server to v1.2.4
- Upgrade JoininBox to v0.6.2
- Upgrade LiT to v0.5.2
- Upgrade NodeJS to v14+
- Add app tile for BoS
- Add buttons to copy passwords
- Add disk benchmark tool
- Add ability to show and clear all upgrade logs
- Bug Fixes and Improvements
=== v0.2.43 ===
- Released: 10/04/21
- Upgrade Bitcoin to v22.0
- Upgrade LND to v0.13.3
- Upgrade Electrs to v0.9.0
- Upgrade Lightning Terminal to v0.5.1
- Upgrade LNDHub to v1.4.1
- Upgrade Sphinx Relay to v2.2.1
- Upgrade PyBlock to v0.9.8.9
- Upgrade BoS to v11.2.0
- Updated default Bitcoin config
- Bug fixes
=== v0.2.42 ===
- Released: 09/15/21
- Upgrade Mempool to v2.2.2
- Upgrade RTL to v0.11.2
- Upgrade Specter to v1.6.0
- Upgrade BTC Pay to v1.2.3
- Upgrade Caravan to v0.3.11
- Upgrade BoS to v10.14.3
- Enable LND database compaction
- Logging improvements and quote additions
=== v0.2.41 ===
- Released: 08/22/21
- Upgrade BTC RPC Explorer to v3.2.0
- Upgrade JoinInBox to version v0.6.0
- Upgrde BoS to v10.8.0
- Add QR codes for pairing Zap
- Resolve Thunderhub "Internal Server Error" Issue
=== v0.2.40 ===
- Released: 08/16/21
- Upgrade Dojo to v1.10.1
- Resolve Pool upgrade issue
=== v0.2.39 ===
- Released: 08/15/21
- Upgrade LND to v0.13.1
- Upgrade Loop to v0.15.0
- Upgrade Pool to v0.5.1
- Upgrade Specter to v1.5.1
- Upgrade Mempool to v2.2.1
- Upgrade BTCPay Server to v1.2.0
- Upgrade Caravan to v0.3.10
- Upgrade LNDManage to v0.13.0
- Upgrade BoS to v10.7.4
- Upgrade Whirlpool to v0.10.11
=== v0.2.38 ===
- Released: 07/16/21
- Upgrade Specter to v1.4.6
- Upgrade Balance of Satoshis to v10.6.0
- Upgrade Mempool to v2.2.0
- Upgrade PyBlock to v0.9.8.8
- Improve Clone Tool Speed and Consistency
- Add clear cache option for Mempool
- UI Improvements
- Fix Dojo issue on Raspi4 64-bit
- Fix issue with force HTTPS
- Bug Fixes
=== v0.2.37 ===
- Released: 06/27/21
- Resolve wallet creation / restore issue
=== v0.2.36 ===
- Released: 06/23/21
- Fix path to Lightning Terminal sig file
=== v0.2.35 ===
- Released: 06/23/21
- Add ability to customize app versions
- Upgrade LND to v0.13.0
- Upgrade Loop to v0.14.1
- Upgrade LiT to v0.5.0
- Upgrade BoS to v10.2.0
- Upgrade LNDHub to v1.3.5
- Upgrade RTL to v0.11.0
- Upgrade JoinInBox to v0.5.0
- Upgrade PyBlock to v0.9.8.6
- Add ability to reset Specter config
- Migrate LND unlock to file-based method
- Upgrade LNBits
- Display 32/64 bit device info on RP4 devices
- Bug fixes
=== v0.2.34 ===
- Released: 06/06/21
- Add pyblock v0.9.8
- Upgrade Specter to v1.4.2
- Upgrade Dojo to v1.10.0
- Upgrade Sphinx Relay to v2.1.3
- Upgrade Caravan to v0.3.8
- Upgrade Loop to v0.14.0
- Upgrade Pool to v0.5.0
- Upgrade BoS to v9.2.0
- Upgrade lndmanage to v0.12.0
- Improve LNDHub config
- Minor UI updates
=== v0.2.33 ===
- Released: 05/18/21
- Add Balance of Satoshis v8.0.14
- Upgrade Sphinx Relay to v2.0.14
- Upgrade Thunderhub to v0.12.17
- Upgrade JoininBox to v0.4.0
- Upgrade LNDHub to v1.3.4
- Bug fix: Fix startup error due to missing file
- Bug fix: Resolve missing Dojo app icon
- Bug fix: Fix Dark Mode CSS coloring
=== v0.2.32 ===
- Released: 05/13/21
- Upgrade Loop to v0.12.2
- Add separate Tor service for LNBits
- UI Update - Pin open Lightning Details
- UI Update - Add icons to Application page
- Bug fix - Use proper RAM limits for Bitcoin
- Bug fix - Run JoininBox in venv to prevent TX failures
- Bug fix - Mempool database works on RP4 64-bit
- Bug fix - Improve auto-setup of Specter config
- Bug fix - LNDHub will re-install with performance patch
=== v0.2.31 ===
- Released: 05/02/21
- Add support for 64-bit Raspberry Pi 4 Images
- Upgrade Bitcoin to v0.21.1
- Upgrade Specter to v1.3.1
- Upgrade RTL to v0.10.2
- Upgrade Sphinx Relay to v2.0.13
- Upgrade LNDHub to v1.3.3
- Update Lightning pairing options
- More backend refactoring for managing applications
- Bug Fixes
=== v0.2.30 ===
- Released: 04/18/21
- Add Lightning Terminal v0.4.1
- Upgrade Specter to v1.3.0
- Upgrades to Pair Wallet UI
- Upgrade Sphinx Relay to v2.0.11
- Upgrade BTCPay Server to v1.0.7.2
- Add Toggle for LND Watchtower
- Show/Hide Toggle for Status Logs
- Faster UI
- Refactor backend for managing applications
- Bug Fixes
=== v0.2.29 ===
- Released: 03/28/21
- Sphinx Relay uses Tor (new pairings only)
- Update Electrum Rust Server to v0.8.9
- Onion URLs are backed up on the external drive
- Live updates for channel information
- Upgrade Sphinx Relay to v2.0.6
- Upgrade Thunderhub to v0.12.12
- Upgrade Loop to v0.12.1
- Add configurable session timeouts
- UI Improvements
- Bug Fixes
=== v0.2.28 ===
- Released: 03/17/21
- Upgrade Dojo to v1.9.0
- Upgrade Whirlpool to v0.10.10
- Upgrade JoininBox to v0.3.0
- Upgrade JoinMarket to v0.8.2
- Upgrade lndhub to v1.3.0
- Upgrade LNBits to v0.2.0
- UI Improvements
- Add Testnet toggle
- Add app icon for JoininBox / JoinMarket
- Add button to restart Electrum server
- Bug fixes and performance improvements
=== v0.2.27 ===
- Released: 02/24/21
- Add JoininBox v0.2.0
- Add Bitcoin whitepaper download
- Upgrade Mempool to v2.1.2
- Upgrade Loop to v0.11.4
- Upgrade RTL to v0.10.1
- Upgrade Specter to v1.2.2
- Upgrade LND to v0.12.1
=== v0.2.26 ===
- Released: 02/13/21
- Add CKBunker v0.9 (beta)
- Add Sphinx Relay v1.3.8 (beta)
- Upgrade Thunderhub to v0.12.7
- Upgrade JoinMarket to v0.8.1
- Improve drive detection for Clone Tool
- Bug Fixes
=== v0.2.25 ===
- Released: 02/05/21
- Improve drive detection for Clone Tool
=== v0.2.24 ===
- Released: 02/04/21
- Upgrade Bitcoin to v0.21.0
- Upgrade LND to v0.12.0
- Upgrade JoinMarket to v0.8.0
- Upgrade Specter to v1.1.0
- Add Clone Tool
- Add drive space warnings
- Bug fixes and minor UI improvements
=== v0.2.23 ===
- Released: 01/25/21
- Update BTC RPC Explorer to v2.2.0
- Use SSO for securing BTC RPC Explorer access
- Move all Dojo files to external drive
- Improve Dojo status messages
- Bug Fixes
=== v0.2.22 ===
- Released: 01/16/21
- Upgrade Caravan to v0.3.5
- Fix issue with Mempool on HTTPS
- Upgrade Specter to v1.0.0
- Improve upgrade logs
- Add option to remount and reformat external drive
- Bug Fixes
=== v0.2.21 ===
- Released: 01/02/21
- Update Loop to v0.11.2
- Upgrade RTL to v0.10.0
- Upgrade Thunderhub to v0.12.2
- Upgrade BTC RPC Explorer to v2.1.0
- Upgrade Caravan to v0.3.4
- Upgrade Pool to v0.3.4
- Increase Bitcoin rpcworkqueue to 32
- Add Onion URL for Whirlpool
=== v0.2.20 ===
- Released: 12/20/20
- Upgrade Specter to v0.10.4
- Upgrade Thunderhub to v0.11.0
- Upgrade Whirlpool CLI to v0.10.9
- Upgrade BTCPay Server to v1.0.6.2
- Bug fixes
=== v0.2.19 ===
- Released: 11/27/20
- Add Pool
- Upgrade electrs to v0.8.6
- Upgrade Specter to v0.10.1
- Upgrade Thunderhub to v0.10.5
- Add Whirlpool log to status page
- Move loop files to external drive
=== v0.2.18 ===
- Upgrade LND to v0.11.1
- Upgrade Loop to v0.9.0
- Upgrade RTL to v0.9.3
- Upgrade Thunderhub to v0.10.1
- Upgrade Specter to v0.9.2
- Upgrade BTCPayServer to v1.0.5.9
- Upgrade Mempool to v1.0.1
- Add re-install option for BTCPayServer
- Bug fixes
=== v0.2.17 ===
- Major UI Update
- Upgrade Dojo to v1.8.0
- Upgrade Thunderhub to v0.9.15
- Upgrade Specter to v0.8.1
- Bug Fixes
=== v0.2.16 ===
- Upgrade Caravan to v0.3.3
- Upgrade Joinmarket to v0.7.0
- Upgrade Specter to v0.7.2
- Upgrade Thunderhub to v0.9.8
- Upgrade RTL to v0.9.0
- Upgrade Whirlpool to v0.10.8
- Add foundation for improved app management
- Generate Bitcoin config based on total RAM
- Improve finding initial Bitcoin peers
- Add detection for undervoltage, throttling, and capping on Raspi devices
- Fix issue where status page may not load if no drive is found
- Fix issue with VM drive detection
=== v0.2.15 ===
- Upgrade LND to v0.11.0
- Upgrade Loop to v0.8.0
- Improve UI on Bitcoin CLI Page
- Use NGINX for Electrum Server port 50002
- Improve Desktop UI when using a VM or monitor with mouse/keyboard
- Bug fixes
=== v0.2.14 ===
- Update Bitcoin to v0.20.1
- Upgrade Specter to v0.6.0
- Upgrade Thunderhub to v0.9.0
- Upgrade RTL to v0.8.3
- Add NGINX for HTTPS
- Add HTTPS for rtl, thunderhub, lnbits, lndhub, and btc rpc explorer
- Bug fixes and refactoring
=== v0.2.13 ===
- Upgrade Caravan to v0.3.2
- Upgrade RTL to v0.8.2
- Bug fixes and refactoring
=== v0.2.12 ===
- Add Thunderhub v0.8.13
- Upgrade Specter to v0.5.5
- Decrease CPU usage when electrum wallet is using MyNode
- Use gunicorn for HTTPS
- Add tor service for lnbits, caravan, and specter
- Fix serial on RockPro64 devices
- Move RTL settings to external drive
- Various UI improvements
- Bug fixes
=== v0.2.11 ===
- Update electrs to v0.8.5
- Add Specter Desktop v0.5.2
- Upgrade LND to v0.10.3
- Upgrade BTC RPC Explorer to v2.0.2
- Fix config issue with LNbits
- Fix issue causing reboot to get stuck at starting
- Add raspbian mirrors for more consistent upgrades
=== v0.2.10 ===
- Add LNBits
- Upgrade LND to v0.10.1
- Upgrade Loop to v0.6.4
- Upgrade BTC RPC Explorer to v2.0.1
- Use tor for key checks and upgrades
- Add HTTPS for Caravan
- Move Whirlpool files to HDD
- HTTPS Certificate Improvements
- UI Improvements and Bug Fixes
=== v0.2.09 ===
- Upgrade Bitcoin to 0.20.0
- Add Caravan
- Set swap size default to 2GB
- Swap size is configurable
- Add reboot/shutdown to home page
- UI Improvements
- Bug fixes
=== v0.2.08 ===
- Rate limit web logins to 5 failures / 5 min
- Show more lnd info while logging in
- Fix lnd restart issue
- Bug fixes and UI enhancements
=== v0.2.07 ===
- Add Install/Uninstall for Dojo
- Upgrade BTCPayServer to v1.0.4.4
- Improve LND login timing
- Add Loopd log to status page
- Add mynode-lnd-unlock command
- Minor improvements
=== v0.2.06 ===
- Add Docker container info to status page
- Add option to run apt-get upgrade via tor
- Add Onion URL for BTCPay Server
- Add more MyNode CLI commands
- Upgrade RTL to v0.7.1
- Add more detail to lnd status
- Bug fixes and minor improvements
=== v0.2.05 ===
- Upgrade LND to v0.10.0
- Upgrade Loop to v0.6.0
- Upgrade JoinMarket to 0.6.2
- Upgrade lndmanage to v0.10.0
- Upgrade Whirlpool client to v0.10.5
- Add link between settings and status pages
- Minor bug fixes and improvements
=== v0.2.04 ===
- Improve reboot / shutdown consistency
- Separate settings and status pages
- Detect and alert user to SD card problems
- Bug Fixes
=== v0.2.03 ===
- Dojo uses electrum server
- Add remote support for Tor v2 and v3
- Add lnd accept-keysend option
- Add LND SCB download to settings page
- General UI improvements
=== v0.2.02 ===
- Update Dojo to 1.5.0
- Add tracker status to Dojo page
- Updates now upgrade system packages
- Bug Fixes
=== v0.2.01 ===
- Update Whirlpool to v0.10.4
- Add "do not unplug" warning
- Explicitly add Onion URL to LND TLS cert
- Bug fixes and minor improvements
=== v0.2.00 ===
- Add confirmation screen before drive format / setup
- Add Fully Noded QR Code
- Update Whirlpool to v0.10.3
- Update BTC RPC Explorer to v2.0.0
- Bug fixes
=== v0.1.98 ===
- Update RTL v0.7.0
- Update Loop to v0.5.1
- Add Docker reset option
- Add Netdata reinstall option
- Add more app logs on settings page
- Fix Electrum Server Onion URL Link
- Rename Mempool.Space to Mempool
- Bug fixes
=== v0.1.97 ===
- Use v3 Onion addresses for remote access
- Upgrade BTC to v0.19.1
- Upgrade LND to v0.9.2
- Upgrade Loop to v0.5.0
- Improve Dojo installation
- Bug fixes
=== v0.1.96 ===
- Add Dojo re-install option
- Add UFW re-install option
- Disable IPv6 in UFW and other firewall improvements
- Improved MAC address initialization
- New images get Python 3.7.6
- Bug fixes
=== v0.1.95 ===
- Improve upgrade success
=== v0.1.94 ===
- Samourai Dojo
- Improved beta release support
- Show more status logs on settings page
- Bug fixes
=== v0.1.93 ===
- Improve docker container consistency
- Improve SSD detection re QuickSync
- Hide product key on settings page
- Early beta upgrade support
- Bug fixes
=== v0.1.92 ===
- Update RTL to v0.6.7
- Clean rootfs before release
- Add and tor repos with up to date packages
- Bug fixes
=== v0.1.91 ===
- Add PCIe NVME Support for RockPro64
- Update web logo images
- Add firewall info to settings page
- Add Tor reinstall option
- Improve QuickSync bandwidth
=== v0.1.90 ===
- Setup proper RTL config for v0.6.4+
- Use working version of PiVPN
=== v0.1.89 ===
- Add fan controller for RockPro64
- Reduce space used for logs
- Bug fixes
=== v0.1.88 ===
- Mempool.Space bug fix
- Update loopd service file
=== v0.1.87 ===
- Rollback Tor update
- Add Lightning Loop v0.4.0
- Improve Mempool.Space consistency
=== v0.1.86 ===
- Upgrade Tor to v0.4.2.5
- Fix boot issue for VMs that don't have USB
- Fix VPN issue by checking out specific rev of PiVPN
- Update lndmanage to 0.9.0
- Add startup status to settings page
- Add Electrum Server reset option
- Bug fixes
=== v0.1.85 ===
- Update RTL to v0.6.4
- Add deposit address, balance, channel, and peer info to Lightning Page
- Add WebSSH2, Glances, Netdata and Whirlpool to Tor
- Improve lograte to limit disk/RAM usage
- Add Tor/IP toggle for Bitcoin and LND
- Improve key generation
- Bug fixes
=== v0.1.84 ===
- Fix issue copying files after an upgrade
- Add button to reset Whirlpool config
- Enable LndHub upgrades
- Improve UI for app reinstallation
- Fix issue getting stuck at "Drive Mounted"
=== v0.1.83 ===
- Revert 0.1.82
=== v0.1.82 ===
- Improve upgrade consistency
=== v0.1.81 ===
- Upgrade LND to 0.9.0
- Upgrade RTL to v0.6.3
- Small drives will skip QuickSync
- Improve upgrade consistency
- Improve LND login consistency
- Add option to reinstall applications
- Add host SSH capability to BTCPay server
=== v0.1.80 ===
- Add BTCPay Server
- Whirlpool is part of community edition