forked from BiglySoftware/BiglyBT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog.txt
1674 lines (1559 loc) · 114 KB
/
ChangeLog.txt
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
BIGLYBT CHANGELOG
-----------------
2022.xx.yy | BiglyBT 3.1.0.1
2022.07.05 | BiglyBT 3.1.0.0
FEATURE: Tag | Added "countTrackers()" Tag constraint function [Parg]
FEATURE: Tag | Tag button alignment options [Parg]
FEATURE: Tag | Added option to hide swarm tags in tags overview [Parg]
FEATURE: Tag | Add right-click Tags Overview header menu to get to Tag options [Parg]
FEATURE: Tag | Added "select tag" button to auto-tagging/import folder config settings [Parg]
FEATURE: Core | Added a "relocate" mode to "search for existing data files" [Parg]
FEATURE: Core | Option to only enforce one-operation-per-file-system for write operations [Parg]
FEATURE: Core | Option to ensure re-check on complete occurs before potential move [Parg]
FEATURE: Core | Option to mark subscription results found in BiglyBT as read [Parg]
FEATURE: Core | Added support for subscription filter inheritance [Parg]
FEATURE: Core | Added option to add download specific sub-directory to move-on-complete folder [Parg]
FEATURE: Core | Added a "launch content" library option to launch largest playable file [Parg]
FEATURE: Core | New "Subscription Templates" to allow common filters to be inherited [Parg]
FEATURE: Core | Option to mark a subscription result as read in all subscriptions [Parg]
FEATURE: Core | Option to delay file checks for incomplete downloads to improve startup times [Parg]
FEATURE: Plug | Support for creating subscriptions for file-size based RCM lookups [Parg]
FEATURE: UI | Shift+C on sidebar entry to mark all read in subscription [Parg]
FEATURE: UI | Added menu item to show details of file links for selected downloads [Parg]
FEATURE: UI | Added optional library header; Library options menu link [Parg]
FEATURE: UI | Show file auto-priority settings in open-torrent-options dialog [Parg]
FEATURE: UI | Added backward+forward library navigation toolbar items [Parg]
FEATURE: UI | Added menu option to mark multiple subscription results read/unread [Parg]
FEATURE: UI | Added "public" and "update interval" columns to Subscriptions view [Parg]
FEATURE: UI | Handle some confusable Unicode chars in various table filters [Parg,fubar99]
FEATURE: UI | Add legend to swarm view [Parg]
FEATURE: UI | Added menu option to create subs template when none defined [Parg]
FEATURE: UI | Added a right-bar view [Parg]
FEATURE: UI | New "Piece Blocks" view [Parg]
FEATURE: UI | Added a "Done (bytes)" library column [Parg]
FEATURE: UI | Add option to only show category buttons in library complete section [Parg]
FEATURE: UI | Right-click header option on Progress column to disable 3D look [Parg]
FEATURE: UI | Added option to disable gradient fill for table/sidebar selection [Parg]
FEATURE: UI | Added private-torrent column to Library [Parg]
FEATURE: UI | Option to disable table header gradient fill [Parg]
FEATURE: UI | Order column header menu option to set from current sort [Parg]
FEATURE: UI | New Peers view column to show percentage we have that peer wants [Parg]
CHANGE: Tag | Change cat/tag library button alignment to right when no title [Parg]
CHANGE: Tag | Auto-tag BiglyBT update torrents [Parg]
CHANGE: Tag | Remove the option to set a Tag as "public" when it can't be public [Parg]
CHANGE: Tag | Reworked tag group rename a bit [Parg]
CHANGE: Core | Enforce a minimum TCP outgoing peer connection timeout [Parg]
CHANGE: Core | Base re-check order on remaining not overall size [Parg]
CHANGE: Core | Improve search for existing files when multiple candidates [Parg]
CHANGE: Core | Re-apply up/down rate limits when peer reconnects [Parg]
CHANGE: Core | More efficient subscription result marking for multiple selection [Parg]
CHANGE: Core | Select IPv4 tracker override address over IPv6 for UDP [Parg]
CHANGE: UI | Remove spaces from hash strings copied to clipboard in a few places [Parg]
CHANGE: UI | Show "search for existing files" in fancy menu for stopped downloads [Parg]
CHANGE: UI | If we're trying to show options make sure mode is high enough [Parg]
CHANGE: UI | Don't allow combo/spinner to grab mouse-wheel scroll from config panel [Parg]
CHANGE: UI | Open multiple torrent options dialogs behind active one [Parg]
CHANGE: UI | Darker config section highlight in dark mode [Parg]
CHANGE: UI | Swarm view rework [Parg]
CHANGE: UI | CTRL+enter in open-url dialog to accept input [Parg]
CHANGE: UI | Request attention for download that moves to incomplete from complete [Parg]
CHANGE: UI | Don't prompt a bazillion times on multiple tag import [Parg]
CHANGE: UI | Make it more obvious which tag buttons selected in library view [Parg]
CHANGE: UI | Make filter box slight less manky in dark mode [Parg]
CHANGE: UI | Add/remove plugin config sections dynamically [Parg]
CHANGE: UI | Internationalize a few Vivaldi Strings [Parg]
CHANGE: UI | Blocked IP log initial scroll positioning [ferdnyc]
CHANGE: UI | More consistent table size column alpha/font setting [Parg]
CHANGE: UI | Appropriate F9 for the right-bar [Parg]
CHANGE: UI | Removed borders around some tabbed folders [Parg]
CHANGE: UI | Remove superfluous line at top of sidebar [Parg]
CHANGE: UI | Use painted tags for tag group column [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
CHANGE: UI | ru_RU: Russian translation update [adem4ik]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | vi_VN: Vietnamese translation update [Natsu Dragneel]
CHANGE: UI | zh_CN: Simplified Chinese translation update [hypnotichemionus]
BUGFIX: Tag | Fix up tag button long-press cheese [Parg]
BUGFIX: Tag | Fix long-press not removing from auto-remove-only tag [Parg]
BUGFIX: Core | Ignore potential NPE in getInterfaceAddresses [Parg]
BUGFIX: Core | Ensure correct timeout is used for various protocols [Parg]
BUGFIX: Core | Fix re-check not occurring when new files created [Parg]
BUGFIX: Core | Don't create a file as a side effect of getting its length [Parg]
BUGFIX: Core | Don't put partial files into recycle bin on delete [Parg]
BUGFIX: Core | Log when direct file rename fails [Parg]
BUGFIX: Core | Check if download already destroyed before saving disk manager state [Parg]
BUGFIX: Core | Don't allow seeding rules to queue force started downloads [Parg]
BUGFIX: UI | A couple of dark mode fixes for chat UI [Parg]
BUGFIX: UI | Fix accelerator key being processed twice [Parg]
BUGFIX: UI | Fix up some more menu separator issues and remove collapse-all from peer [Parg]
BUGFIX: UI | Fix some duplicate menu separators [Parg]
BUGFIX: UI | Fix NPE when copy peer details to clipboard [Parg]
BUGFIX: UI | Fix toolbar sidebar switch button again [Parg]
BUGFIX: UI | Fix "show title" not seeming to persist [Parg]
BUGFIX: UI | No "enable simple view" option for classic ui [Parg]
BUGFIX: UI | Need to invalidate sort cells for correct sorting [Parg]
BUGFIX: UI | Fix open-torrent dialog not showing on activate on OSX [Parg]
BUGFIX: UI | fix toolbar files-exist enable logic [Parg]
BUGFIX: UI | Fix Files View resetting on file complete with incomplete-suffix [Parg]
BUGFIX: UI | Various subscription UI fixes and additional menus [Parg]
BUGFIX: UI | Fix stats view incorrectly showing 100% done when few bytes left [Parg]
BUGFIX: UI | Ensure subscription filters not lost across view switches [Parg]
BUGFIX: UI | Redraw empty tables on row height change so alternative colours update [Parg]
BUGFIX: UI | Fix highlighting in config view [Parg]
BUGFIX: UI | Fix "update now" button not always visible in subscription filters [Parg]
BUGFIX: UI | Fix issue with tab style dashboard builds with a single item [Parg]
BUGFIX: UI | Swarm view dark mode fixes [Parg]
BUGFIX: UI | Fix multiple requests to show same config section not working [Parg]
BUGFIX: UI | Account for shell margin/padding [TuxPaper]
BUGFIX: UI | Fix Order column icons not syncing correctly on change [Parg]
BUGFIX: UI | Can't sensibly sort by column-setup sample column [Parg]
BUGFIX: UI | Fix invalid image resize attempts [Parg]
2022.02.25 | BiglyBT 3.0.0.0
FEATURE: Tag | Added "swarm tags" column to Library view [Parg]
FEATURE: Tag | Changed "swarm tags" into real tags [Parg]
FEATURE: Tag | Added "isIPFiltered()" Tag constraint function [Parg]
FEATURE: Tag | Subscription results now support Tags [Parg]
FEATURE: Tag | New 'max seeding torrents' Tag option [Parg]
FEATURE: Core | Added ability to unban IPs in blocked/banned IPs window [Parg]
FEATURE: Core | Support for per-download completion masking [Parg]
FEATURE: Core | Make force-terminate on close period configurable [Parg]
FEATURE: Core | Added an "effective incoming" state for plugin connections [Parg]
FEATURE: Plug | Added IP Filter control to SimpleAPI plugin [Parg]
FEATURE: UI | Added new "local interface" peer view item [Parg]
FEATURE: UI | Added menu item to copy option name to clipboard [Parg]
FEATURE: UI | Added cell-specific menu support [Parg]
FEATURE: UI | Added timezone offset to public chat messages [Parg]
FEATURE: UI | Added chat member properties view [Parg]
FEATURE: UI | New "select all" context menu item for table views [Parg]
FEATURE: UI | Added library view item for upload priority [Parg]
FEATURE: UI | Added header to Subscription Results view supporting search and add [Parg]
FEATURE: UI | New "toolbar options" right-click menu [Parg]
FEATURE: UI | New "sidebar options" right-click menu links [Parg]
FEATURE: UI | Remember expansion state of File View tree [Parg]
FEATURE: UI | Remember row selection state in Files View across rebuilds [Parg]
CHANGE: Tag | First priority auto-tags should default to non-public [Parg]
CHANGE: Tag | Remove internal tag names from tag discoveries [Parg]
CHANGE: Tag | Added gap around tag icons [Parg]
CHANGE: Core | Re-use existing metadata download data on recovery [Parg]
CHANGE: Core | Remove unbanned IPs from bad data list too [Parg]
CHANGE: Core | Use delete-with-recycle for files set to priority "delete" [Parg]
CHANGE: Core | Removed option to disable resume data as this leads to unwanted behaviour [Parg]
CHANGE: Core | Wait for core to initialise before processing magnet requests [Parg]
CHANGE: Core | Remove resetting of 'play sound when download complete' on OSX [Parg]
CHANGE: Core | Recognise some more RSS Item attribute values [Parg]
CHANGE: Core | Improve multiple subscription result delete performance [Parg]
CHANGE: Core | Reworked metadata download management to make it event driven [Parg]
CHANGE: Core | Speed limit handler should ignore metadata downloads [Parg]
CHANGE: Core | Prune old deleted subscription results [Parg]
CHANGE: Core | Pick up RSS entry CDP links from comments fields [Parg]
CHANGE: Core | Retain folder hierarchy when moving intermediate nodes in File tree view [Parg]
CHANGE: Plug | Only report Tor Helper plugin install fail once [Parg]
CHANGE: UI | Resize subscription icons [Parg]
CHANGE: UI | Improve bind fail error message [Parg]
CHANGE: UI | Remember progress reporter dialog location, size and details expand state [Parg]
CHANGE: UI | Add additional DHT tracker details when not tracking [Parg]
CHANGE: UI | Stop annoying progress bar animation on Widows in cache view [Parg]
CHANGE: UI | Replace status bar LED GIFs with PNGs [ferdnyc]
CHANGE: UI | Improve chat icon transparency [Parg]
CHANGE: UI | Changed "queued" to "queued/started" in open-torrent-options dialog [Parg]
CHANGE: UI | Fixed spinner image in progress dialog in dark mode [Parg]
CHANGE: UI | Updated subscription column header icon for dark mode [Parg]
CHANGE: UI | Some chat panel dark mode fixes [Parg]
CHANGE: UI | Use common column for swarm tags [Parg]
CHANGE: UI | Fix readability of console error messages in dark mode [Parg]
CHANGE: UI | Improve library view sash in dark mode [Parg]
CHANGE: UI | Cache fonts to reduce memory usage [Parg]
CHANGE: UI | Fix config plugin table view in dark mode [Parg]
CHANGE: UI | Use a timer event to update download status to reduce thread usage [Parg]
CHANGE: UI | Limit number of active subscription views to save memory [Parg]
CHANGE: UI | Lots of dark mode icon tweaks [ferdnyc]
CHANGE: UI | Run PNGs through compressor [adem4ik]
CHANGE: UI | Better default size for progress reporter window [Parg]
CHANGE: UI | Allow all sidebar entries to be selectable to avoid annoying behaviour [Parg]
CHANGE: UI | Added right-click column-setup menu item for table rows [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | ru_RU: Russian translation update [adem4ik,frolovkirill7]
CHANGE: UI | it_IT: Italian translation update [GiorgioHerbie]
CHANGE: UI | ja_JP: Japanese translation update [ayano.midori]
CHANGE: UI | fi_FI: Finnish translation update [olavinto]
CHANGE: UI | ar_SA: Arabic, Saudi Arabia translation update [islam171119712003]
BUGFIX: Tag | Ensure Settings tab is selected in Tags Overview when needed [Parg]
BUGFIX: Tag | Fix Tag library view context menu missing items [Parg]
BUGFIX: Core | Fix spurious DNS SPI load fail when network down [Parg]
BUGFIX: Core | Fix some deprecations [Parg]
BUGFIX: Core | Replaced deprecated use of Applet code for playing audio clips [Parg]
BUGFIX: Core | Delete dead magnet download storage [Parg]
BUGFIX: Core | Handle ".imported" file already existing on import [Parg]
BUGFIX: Core | Fixed category upload-priority over restart [Parg]
BUGFIX: Core | Stop metadata downloads performing pointless recheck [Parg]
BUGFIX: Core | Handle errors when getting network interfaces better [Parg]
BUGFIX: Core | More resilient file download stats loading [Parg]
BUGFIX: Core | Partial pieces may be null [Parg]
BUGFIX: Core | Fix exception when the DHT is unwell [Parg]
BUGFIX: UI | Fix toolbar stop icon tooltip when separate start/stop items [Parg]
BUGFIX: UI | Fix Library view attention highlight getting stuck on [Parg]
BUGFIX: UI | Switched some link foreground colours to use system value [Parg]
BUGFIX: UI | Fix Piece Map label formatting [Parg]
BUGFIX: UI | Fix resource leak in Subscription Results view [Parg]
BUGFIX: UI | Fix vanishing toolbar bug [Parg]
BUGFIX: UI | Set cursor appropriately for subscriptions view buttons [Parg]
BUGFIX: UI | Use the correct twisty hit ares in the sidebar [Parg]
BUGFIX: UI | Toolbar buttons shouldn't activate on right-click [Parg]
BUGFIX: UI | Fix long-press toolbar button behaviour somewhat [Parg]
BUGFIX: UI | Fix sidebar toggle toolbar button not updating selection state [Parg]
BUGFIX: UI | Try to prevent UI stall when file system unavailable [Parg]
2021.11.17 | BiglyBT 2.9.0.0
FEATURE: Tag | Added full re-evaluation timer config [Parg]
FEATURE: Tag | Added script type of 'plugin' to Tag execute-on-assign [Parg]
FEATURE: Tag | Added 'target_ratio' to Tag constraints variables [Parg]
FEATURE: Tag | Support batch tagging and plugin script exec [Parg]
FEATURE: Tag | Added ability to duplicate a Tag [Parg]
FEATURE: Tag | Support default colours for Tag Groups [Parg]
FEATURE: Tag | Added Tag execute-on-assign action of 'remove tags' [Parg]
FEATURE: Tag | Added "tag_names" keyword to Tag Constraints [Parg]
FEATURE: Tag | Added options to copy/paste and invert Tag selection in Tagging view [Parg]
FEATURE: Tag | Added Tag colour setting to properties menu [Parg]
FEATURE: Tag | Support "g:" prefix in Tags Overview to search on group name [Parg]
FEATURE: Tag | Support "p:" prefix in Tags Overview to search on properties (Constraints etc) [Parg]
FEATURE: Tag | Tag Group sidebar indicator [Parg]
FEATURE: Tag | Can now rename Tag Groups [Parg]
FEATURE: Tag | Added addtag/removetag/setcategory to Simple API plugin [Parg]
FEATURE: Tag | Allow execute-on-assign to directly invoke Simple API methods [Parg]
FEATURE: Tag | Added isQueued() and isUnallocated() constraint methods [Parg]
FEATURE: Tag | Added "Queue" to execute-on-assign actions [Parg]
FEATURE: Tag | Separate "Execute On Assign" column in Tags Overview to show details [Parg]
FEATURE: Core | Support multiple concurrent data+torrent exports and Disk Ops queue [Parg]
FEATURE: Core | Added option to prioritize first and last <n>MB of files [Parg]
FEATURE: Plug | Added 'Simple API' built-in plugin to support script commands [Parg]
FEATURE: Plug | Added 'setnetworks', "alert","setdownloadattribute" to Simple API plugin [Parg]
FEATURE: UI | Added Disk Ops view entry when copying a download [Parg]
FEATURE: UI | Report active operations when quitting with option to abort [Parg]
FEATURE: UI | Added option to set the default for 'apply to all' when deleting content [Parg]
FEATURE: UI | Added 'more' menu option to rename display name in open-torrent-options [Parg]
FEATURE: UI | Added option to pop-out download details view from library in config options [Parg]
FEATURE: UI | Added colour copy/paste menu items to colour parameters [Parg]
FEATURE: UI | New menu item to reset 'completed on' times from file dates [Parg]
FEATURE: UI | Added popup alert for download check complete event [Parg]
FEATURE: UI | Log user alerts to a log view [Parg]
FEATURE: UI | Allow row height change and add to Table Header context menu [TuxPaper]
FEATURE: UI | New batch file move operation [Parg]
CHANGE: Tag | Reworked constraint matching caching [Parg]
CHANGE: Tag | Support closing a Tag Group in the sidebar [Parg]
CHANGE: Core | Changed default magnet download timeout to infinite [Parg]
CHANGE: Core | Recover torrent file if possible during export [Parg]
CHANGE: Core | Don't check for embedded raw magnet hashes in HTML to avoid false positives [Parg]
CHANGE: Core | Switch generated magnet URI hashes from base32 to base16 [Parg]
CHANGE: Core | Increase default max read/write disk queue and switch to KB for implementation [Parg]
CHANGE: Core | Report archive failure cause [Parg]
CHANGE: UI | Status bar right-click menu should be for all [Parg]
CHANGE: UI | Added download name to disk manager alerts [Parg]
CHANGE: UI | Added date and time to log alert display [Parg]
CHANGE: UI | Removed 'More: ' prefix from subscription name [Parg]
CHANGE: UI | Make an effort to recover magnet downloads in the same order [Parg]
CHANGE: UI | Save magnet download renames across restarts [Parg]
CHANGE: UI | Added 2:1 ratio to first priority ignore ratios [Parg]
CHANGE: UI | Always show seed rank text in column [Parg]
CHANGE: UI | Added column setup to View menu [Parg]
CHANGE: UI | Trim empty torrent watch folder config [Parg]
CHANGE: UI | Show sidebar indicator colour/tooltip for categories [Parg]
CHANGE: UI | Sort log views menu [Parg]
CHANGE: UI | Remember comment editor dialog box location + size [TuxPaper]
CHANGE: UI | All Peers item was added to View menu; remove from Tools [Parg]
CHANGE: UI | Add Log Views menu to View menu [Parg]
CHANGE: UI | Reduce size of many .png image files [Parg]
CHANGE: UI | Updated some icons [RandomAJL]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | ru_RU: Russian translation update [jdPhobos]
CHANGE: UI | no_NO: Norwegian translation update [lislei]
CHANGE: UI | si_LK: Sinhala translation update [HelaBasa]
CHANGE: UI | ja_JP: Japanese translation update [ayano.midori]
CHANGE: UI | fi_FI: Finnish translation update [olavinto]
CHANGE: UI | lv_LV: Latvian translation update [makrims]
BUGFIX: Tag | Fix Tag Group list sort order [TuxPaper]
BUGFIX: Tag | Fix Tag config section cheese [Parg]
BUGFIX: Tag | Missing repaint when no taggables in view [Parg]
BUGFIX: Tag | Enable Ctrl+Tag to exit from Tag constraints text area [Parg]
BUGFIX: Tag | Speed up build of Tagging view [Parg]
BUGFIX: Tag | Changes to constraint scope weren't always being picked up immediately [Parg]
BUGFIX: Core | Deal with instability in start/stop rules sorting [Parg]
BUGFIX: Core | Update torrent file location if changed before restore [Parg]
BUGFIX: Core | Metadata download data location/torrent files can't be renamed [Parg]
BUGFIX: Core | Pass bind IPs when creating proxy servers [Parg]
BUGFIX: Core | Don't create multiple torrent files when update is stuck [Parg]
BUGFIX: Core | Fix remembering forced status of restarted paused downloads [Parg]
BUGFIX: Core | Fix disk controller space allocations getting lost [Parg]
BUGFIX: UI | Fix tooltip not always showing when going over y bounds & truncate line [TuxPaper]
BUGFIX: UI | Meaningless to enable pad files for download [Parg]
BUGFIX: UI | Fix piece count display not resizing in new torrent wizard [Parg]
BUGFIX: UI | Removing a non-expanded sub-row was causing height inconsistencies [Parg]
BUGFIX: UI | Fix 'End' key not working in table tree view [Parg]
BUGFIX: UI | Fix seed rank column sort [Parg]
BUGFIX: UI | Don't save position of auto-repositioned open-torrent-options dialogs [Parg]
BUGFIX: UI | Some more dark theme work on Linux [Parg]
BUGFIX: UI | Fix copy/paste in library filter box [Parg]
BUGFIX: UI | Don't pop-out sidebar item when double clicking in the expander/close area [Parg]
BUGFIX: UI | Fixed bug with disposed rows being added to table views [Parg]
BUGFIX: UI | Fix library view sub-rows not updating correctly [Parg]
BUGFIX: UI | Fix occasional UI lag when switching skip status [Parg]
BUGFIX: UI | Use Pattern.quote instead of \Q..\E [TuxPaper]
BUGFIX: UI | Fix various issues with share ratio parsing/display [Parg]
2021.07.09 | BiglyBT 2.8.0.0
FEATURE: Tag | Support Tag Constraints in Library filter expressions [Parg]
FEATURE: Core | Add hard-link option to revert-files [Parg]
FEATURE: Core | Support hard-link option in 'search-for-existing-files' [Parg]
FEATURE: Core | Support NAT testing for Light Seeds [Parg]
FEATURE: Core | Added explicit 'Allocate' option to allocate files and stop download [Parg]
FEATURE: Core | Treat file names of form "_____padding_file_<num>_..." as pad files [Parg]
FEATURE: Core | Added 'piece' mode to search for existing files that copies correct ones [Parg]
FEATURE: UI | Include tracker warning messages in Sources Status column info [Parg]
FEATURE: UI | New 'download health' item to show queued IO, unchoking and requests [Parg]
FEATURE: UI | Draw tags in Tags column instead of plain text. [TuxPaper]
FEATURE: UI | Option to show/hide ETA in Speed sub-tab [Parg]
FEATURE: UI | Show torrent thumbnail in GeneralView and allow setting/clearing [Parg]
FEATURE: UI | Show unavailable pieces in Files View piece graph as per General View [Parg]
FEATURE: UI | Support 'and' filter logic for dl history and archive views (+refactor) [Parg]
FEATURE: UI | Option to force non-system colors to grayscale [TuxPaper]
FEATURE: UI | Added info about last/next scrape time to tracker status [Parg]
FEATURE: UI | Table column foreground/background color settings [Parg]
FEATURE: UI | Use +/- keys to change priority in Files View [Parg]
FEATURE: UI | New 'connect health' column to show success of outgoing connections [Parg]
FEATURE: UI | Added last-piece-number column to Files View [Parg]
FEATURE: UI | Allow first priority share ratio to be set to 'ignore' [Parg]
FEATURE: UI | Added copy button to About info [Parg]
FEATURE: UI | Added 'apply to all' option to torrent export dialog [Parg]
FEATURE: UI | Add 'rename on top level folder change' item to 'More' menu in OTO win [Parg]
FEATURE: UI | Added filter box for all-pieces view to filter download/file name [Parg]
CHANGE: Core | Move transition from force-download -> not-force-seeding later [Parg]
CHANGE: Core | Increase hash scheduler limits as current not stressing cpu [Parg]
CHANGE: Core | Update download history on download rename [Parg]
CHANGE: Core | Disable app-nap on OSX [TuxPaper]
CHANGE: Core | Preserve file date attributes across backup+restore [Parg]
CHANGE: Core | Consider pending move-tasks when queueing a seeding download [Parg]
CHANGE: Core | Replace host name resolver queue with thread pool [Parg]
CHANGE: Core | Spread the cost of file length checks during re-checking [Parg]
CHANGE: UI | Better positioning of fancy menu when opened via keyboard [TuxPaper]
CHANGE: UI | Reduce log level of hash fails to info for uninteresting cases [Parg]
CHANGE: UI | Added .ico to image types [Parg]
CHANGE: UI | Select relevant column in column setup window [Parg]
CHANGE: UI | Use save location for icon if download has no primary file [Parg]
CHANGE: UI | Row colours override column colours [Parg]
CHANGE: UI | Added unallocated status info to stopped downloads [Parg]
CHANGE: UI | Allow resize of donation window as some people have issues with fit [Parg]
CHANGE: UI | Show Tag move-on-complete actions in Library column when no explicit [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock,Snn1452]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | fi_FI: Finnish translation update [olavinto]
CHANGE: UI | ru_RU: Russian translation update [jdPhobos]
BUGFIX: Core | Fix possible startup fail due to invalid "locale" setting [Parg]
BUGFIX: Core | Don't make reserved slots first-priority as it borks download limits [Parg]
BUGFIX: Core | Some trackers return empty response on 'stopped' event [Parg]
BUGFIX: Core | Remove buddy FP flag when untracking a download [Parg]
BUGFIX: Core | Fix fallback detection of OSX app bundle location [Parg]
BUGFIX: Core | Fix jnilib update path [Parg]
BUGFIX: Core | Fix local tracker up/down stats recording [Parg]
BUGFIX: Core | Mix aggregated scrape results into constraint vars; fix peer_count [Parg]
BUGFIX: UI | Fix table row refresh and some other gunge [Parg]
BUGFIX: UI | Make sure 'file not found' is included in error message [Parg]
BUGFIX: UI | Draw off-screen for better performance [Parg]
BUGFIX: UI | Queue up row refreshes triggered by DownloadManager state change [Parg]
BUGFIX: UI | Fix program icon sometimes being small. [TuxPaper]
BUGFIX: UI | FilesView name item fixes (mouse button+update on storage type change) [Parg]
BUGFIX: UI | Fix down-arrow into filter search history [Parg]
BUGFIX: UI | Toolbar should only act on Files or Downloads, not both; Better tooltip [Parg]
BUGFIX: UI | Fix search constraint caching [Parg]
BUGFIX: UI | Fix next selection on ctrl+w close in classic UI [Parg]
BUGFIX: UI | Don't re-affirm table selection if not focused [Parg]
BUGFIX: UI | All Trackers view doesn't implement !regex correctly [Parg]
2021.03.20 | BiglyBT 2.7.0.2
BUGFIX: Core | Fix startup timing issue causing UI hangs and proxy-plugin issues [Parg]
BUGFIX: UI | Custom date formats were getting corrupted by CrowdIn in some locales [Parg]
BUGFIX: UI | Sidebar expansion state recording was resulting in potentially non-ASCII config keys [Parg]
2021.03.18 | BiglyBT 2.7.0.0
FEATURE: Tag | Option to prevent removal of a download when assigned to a tag [Parg]
FEATURE: Tag | Added file_paths and file_paths_selected Tag constraint variables [Parg]
FEATURE: Tag | Support 'hasTag' constraint function for Peer Set names [Parg]
FEATURE: Tag | Tag option to set maximum active downloads for a Tag [Parg]
FEATURE: Tag | Support negated Peer Set pattern expressions [Parg]
FEATURE: Tag | Automatic creation of Peer Sets based on network interface [Parg]
FEATURE: Tag | Added peer network interface categorization and associated Peer Set logic [Parg]
FEATURE: Tag | Added ASN matching to Peer Sets [Parg]
FEATURE: Tag | Added Peer Set option to boost assigned peers [Parg]
FEATURE: Tag | Added 'Deleting' download state Tag [Parg]
FEATURE: Tag | Option to create country-specific Peer Sets from Country Stats/Swarm view [Parg]
FEATURE: Tag | ALso match against the AS number in Peer Set ASN pattern [Parg]
FEATURE: Core | Option to only run one major disk operation per file system concurrently [Parg]
FEATURE: Core | Option to disable auto-dl-specific chat reads/writes [Parg]
FEATURE: Core | Option to set the default update period for subscriptions [Parg]
FEATURE: Core | Added option to prevent the banning of LAN peers [Parg]
FEATURE: Core | Added support for the torrent 'Source' field in torrent creator + General view [Parg]
FEATURE: Core | New 'Light-Seeding' mode for private torrents with zero-peers [Parg]
FEATURE: Core | Make webseed activation minimum rate configurable [Parg]
FEATURE: Core | Option to specify additional bind addresses for incoming connections [Parg]
FEATURE: Core | Option to ignore bind addresses for outgoing connections to LAN addresses [Parg]
FEATURE: Core | Complete a force-recheck operation regardless of errors to find all bad pieces [Parg]
FEATURE: UI | Support 'f:' prefix to search on save path in Download History view [Parg]
FEATURE: UI | Added 'date completed' to Archive view [Parg]
FEATURE: UI | Added move-on-complete disk operation [Parg]
FEATURE: UI | Added filter box to Client Stats view [Parg]
FEATURE: UI | Support space bar select/deselect in Files view [Parg]
FEATURE: UI | Added 'file systems' column to Disk Ops view to dhow affected drives [Parg]
FEATURE: UI | Option to kick+ban a peer's ipv4, ipv6 or both addresses [Parg]
FEATURE: UI | Added a 'percent done' column to Disk Ops view [Parg]
FEATURE: UI | Added 'indicative order' to Disk Ops view [Parg]
FEATURE: UI | Added nick + shared-nick columns to Chat Overview [Parg]
FEATURE: UI | Added queued disk read/write bytes to Cache Stats view [Parg]
FEATURE: UI | Added per-download Country Stats view [Parg]
FEATURE: UI | Added pop-out menu to Quick Links items [Parg]
FEATURE: UI | Double-click Quick Links items to pop-out [Parg]
FEATURE: UI | Double-click sidebar entry to pop-out [Parg]
FEATURE: UI | New disk read/write latency column for Library views [Parg]
FEATURE: UI | New 'upload health' Library column to show bytes queued etc [Parg]
FEATURE: UI | Option to auto-accept torrents in the torrent open dialog after configurable timer [Parg]
FEATURE: UI | Added 'Show in All Trackers view' menu item for Sources view [Parg]
FEATURE: UI | Search boxes now have a 'regular expression' toggle button [TuxPaper]
FEATURE: UI | Show plugin stop events in closedown UI as some can take a while [Parg]
FEATURE: UI | Right-click option on renderers to add files [Parg]
CHANGE: Tag | Include last modification date on Tag icon cache to permit edits [Parg]
CHANGE: Tag | Include spacer between Tag groups in Library tag buttons [Parg]
CHANGE: Tag | Centre image for compact Tag canvas with image only [Parg]
CHANGE: Core | Better download rename on top-level-folder removal [Parg]
CHANGE: Core | Always allocate metadata downloads immediately [Parg]
CHANGE: Core | Don't treat a download as stalled if disk latency high [Parg]
CHANGE: Core | 'Search for existing data files' now handles relocations [Parg]
CHANGE: Core | Enable alternative DHT lookup for metadata downloads [Parg]
CHANGE: Core | Kick off piece recheck on completion after potential move operation rather than before [Parg]
CHANGE: Core | Stop plugins in the opposite order to which they were started [Parg]
CHANGE: UI | Added download save path to torrent view file match set for 'f:' searches [Parg]
CHANGE: UI | Added file size in bytes to size column tooltip [Parg]
CHANGE: UI | Display and group by group name in tag's column tooltip [Parg]
CHANGE: UI | Show column's icon in Info View [Parg]
CHANGE: UI | Increase chat open limit on double click to 10 [Parg]
CHANGE: UI | Make full-update window resizeable [Parg]
CHANGE: UI | Added byte values to up/down item tooltip [Parg]
CHANGE: UI | Remember size and location of pop-out windows [Parg]
CHANGE: UI | Remember last-used-tracker in torrent creator [Parg]
CHANGE: UI | Enable the 'force start' option for private torrents in beginner mode [Parg]
CHANGE: UI | Added seeding rank information to the Status column tooltip [Parg]
CHANGE: UI | Don't pre-select file extension in torrent options rename dialog [Parg]
CHANGE: UI | Allow multiple files to be selected+renamed in torrent options [Parg]
CHANGE: UI | Show both the ASN and the AS in the peers column [Parg]
CHANGE: UI | More consistent filter box sizing [TuxPaper]
CHANGE: UI | Centre quick links [TuxPaper]
CHANGE: UI | Sort stopped/error downloads to bottom of Seeding Rank columns [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | no_NO: Norwegian translation update [lislei]
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | de_DE: German translation update [gerstemann]
CHANGE: UI | fi_FI: Finnish translation update [olavinto]
CHANGE: UI | ja_JP: Japanese translation update [ayano.midori]
CHANGE: UI | sv_SE: Swedish translation update [Dyras]
BUGFIX: Tag | Fix memory retention by Peer Sets for inactive downloads [Parg]
BUGFIX: Tag | Fix potential recursion on Tag group assignment [Parg]
BUGFIX: Core | Don't resurrect torrent file if it has been explicitly deleted [Parg]
BUGFIX: Core | Fixed All Trackers 'add to existing action' logic [Parg]
BUGFIX: Core | Retry file delete operation in case file is temporarily locked [Parg]
BUGFIX: Core | Fix issue with LAN state change causing dead connection build up [Parg]
BUGFIX: Core | Fix partial buddy removal [Parg]
BUGFIX: Core | Fix memory leak if peer events delivered out of order [Parg]
BUGFIX: Core | Fix potential deadlock in peer handling [Parg]
BUGFIX: Core | Limit thread creation to report asynchronous STS events [Parg]
BUGFIX: Core | Various fixes around setting files to delete/normal priority [Parg]
BUGFIX: Core | Fix remaining count and file pieces for stopped downloads on file delete [Parg]
BUGFIX: Core | Fix rare case where stop() + remove() is interrupted by a start [TuxPaper]
BUGFIX: Core | 'Update all now' should ignore the enabled status of subscriptions [Parg]
BUGFIX: Core | Fix seeding rules to disable stalled slots when minimum speed set to 0 [TuxPaper]
BUGFIX: Core | Fix download completion event stalling other downloads [Parg]
BUGFIX: Core | Fix restore from archive when original underwent a move-on-remove operation [Parg]
BUGFIX: UI | Fixed quick rename of single file torrent from Files View [Parg]
BUGFIX: UI | Fixed a few dark theme issues on GTK [Parg]
BUGFIX: UI | Fix memory leak when closing table column setup dialog [Parg]
BUGFIX: UI | Fix memory leak in non-main tabbed MDI component [Parg]
BUGFIX: UI | Ensure the view-title-info refresher is always removed on view close [Parg]
BUGFIX: UI | Fix torrent details view not closing on download removal [Parg]
BUGFIX: UI | File bug with Files view losing manager listeners [Parg]
BUGFIX: UI | Fix shift+up/down key tree view selection logic [Parg]
BUGFIX: UI | Fix Files view select update bug when file hidden [Parg]
BUGFIX: UI | Fix start+stop icon behaviour for Disk Ops view [Parg]
BUGFIX: UI | Progress Reporter using too much CPU [Parg]
2020.12.17 | BiglyBT 2.6.0.0
FEATURE: Tag | Added new download-state tags for 'moving' and 'checking' [Parg]
FEATURE: Tag | Added torrent_type tag constraint keyword [Parg]
FEATURE: Tag | Added isShare() tag constraint function [Parg]
FEATURE: Core | IPv6 IP filter support [Parg]
FEATURE: Core | Option to skip file existence checks for complete downloads [Parg]
FEATURE: Core | Added option to ban either IPv4 or IPv6 addresses when attempts made to dual-connect by remote peers [Parg]
FEATURE: Core | Option to explicitly run the v2 swarm on a hybrid download [Parg]
FEATURE: Core | Option to force first/last piece priority when sequential downloading [Parg]
FEATURE: Core | Update swarm merging to use v2 root hashes [Parg]
FEATURE: Core | Option to create a hybrid/v2 downloaded from a completed v1 download [Parg]
FEATURE: Core | Added dedicated log file to capture file related actions [Parg]
FEATURE: Core | Option to skip the backup of the plugins folder [Parg]
FEATURE: Core | Added additional trackers for metadata peer discovery and default [Parg]
FEATURE: UI | New 'Disk Operations' view [Parg]
FEATURE: UI | Show alternative IPv6 address in peer IP tooltip [Parg]
FEATURE: UI | Pop-out windows can now be either independent or 'always on top' of BiglyBT [Parg]
FEATURE: UI | Show a basic (AWT) error dialog if startup fails [Parg]
FEATURE: UI | Option to suppress the file-move progress dialog [Parg]
FEATURE: UI | Show more torrent version info [Parg]
FEATURE: UI | Option to use dark themed tables [Parg]
FEATURE: UI | Dark theme support for minibars [Parg]
FEATURE: UI | New v2 root hash Files View column [Parg]
FEATURE: UI | Added total bytes transferred view option to local country stats [Parg]
FEATURE: UI | Added total bytes up/down in last year to donation window [TuxPaper]
CHANGE: Core | Suspend disk-read operations during file move [Parg]
CHANGE: Core | Kick incoming public connections when SOCKS data proxy active [Parg]
CHANGE: Core | Don't abandon torrent decode on invalid announce url(s) [Parg]
CHANGE: Core | Option to use user-thread-cpu-time when monitoring [Parg]
CHANGE: Core | If torrent file is missing from save location on a 'move' operation then use internal copy [Parg]
CHANGE: Core | Only use global IPv6 addresses when checking bind pattern validity [Parg]
CHANGE: Core | Tidy up subscription downloader [Parg]
CHANGE: Core | Drop metadata download create delay default to 0 seconds [Parg]
CHANGE: Core | Switch to using JVM SHA1 implementation [Parg]
CHANGE: UI | Category side bar visibility changes [Parg]
CHANGE: UI | Limit number of chat windows opened when status icon double-clicked [Parg]
CHANGE: UI | Improve toolbar in dark theme [Parg]
CHANGE: UI | Remember wizard size/location [Parg]
CHANGE: UI | Sort blocked-ip list [Parg]
CHANGE: UI | Change progress bar colour to grey for inactive downloads [Parg]
CHANGE: UI | Always show favourites in status bar chat menu [Parg]
CHANGE: UI | Remember batch file rename dialog position and size [Parg]
CHANGE: UI | Improve performance of collapse/expand-all in Files View [Parg]
CHANGE: UI | Added tracker URL to warning messages [Parg]
CHANGE: UI | Remember position of the progress reporter dialog [Parg]
CHANGE: UI | Slide alert from bottom of destination instead of display bottom [TuxPaper]
CHANGE: UI | Show move progress for downloads in a queued or downloading state [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
CHANGE: UI | ja_JP: Japanese translation update [ayano.midori]
CHANGE: UI | fr_FR: French translation update [GMartigny]
CHANGE: UI | fi_FI: Finnish translation update [olavinto]
BUGFIX: Core | Fix removal from read-only collection [Parg]
BUGFIX: Core | Fix NPE causing magnet downloads not to be recovered [Parg]
BUGFIX: Core | Ensure we have a peer-manager piece when writing a block [Parg]
BUGFIX: Core | Added a hard limit on DDB graph activity retention to fix memory leak [Parg]
BUGFIX: Core | Fix duplicated swarm merge file sets [Parg]
BUGFIX: Core | VM killer thread was broken [Parg]
BUGFIX: Core | Skip pointless hashing of metadata fake download content [Parg]
BUGFIX: UI | Fix OSX sidebar indicator rendering 0 in black [Parg]
BUGFIX: UI | Ensure the info-parameter entries show the latest values [Parg]
BUGFIX: UI | Ignore media server URIs when monitoring clipboard for torrent links [Parg]
BUGFIX: UI | Fix inconsistent table depth when hidden rows removed from a table [Parg]
BUGFIX: UI | Fix Files View piece column sort when download stopped [Parg]
2020.09.21 | BiglyBT 2.5.0.0
FEATURE: Core | Support BitTorrent Protocol Specification v2 (BEP 52) [Parg]
FEATURE: Core | Support padding files (BEP 47) [Parg]
FEATURE: Core | Option to increase magnet recovery concurrency [Parg]
FEATURE: Core | New option to ignore swarm discoveries based on minimum seeds [Parg]
FEATURE: Core | Remember tags-on-removal in download history [Parg]
FEATURE: Core | Options to disable interim download state saving for performance [Parg]
FEATURE: Core | Subscription option to prefix save location on auto-download [Parg]
FEATURE: UI | New 'All Pieces' view to show all current uploading/downloading pieces [Parg]
FEATURE: UI | Resizable chat window input area [Parg]
FEATURE: UI | Indicate if file is 'delete' or 'DND' in Files View via checkbox icon background colour [Parg]
FEATURE: UI | Shift+deselect a file in Files View to delete it [Parg]
FEATURE: UI | Add-tag menu for shares menu [Parg]
FEATURE: UI | Country name added to country stats tooltip [Parg]
FEATURE: UI | Option to disable the tidy-close and progress dialog [Parg]
FEATURE: UI | Option to show uploading pieces as well as downloading ones in Pieces View [Parg]
FEATURE: UI | Add file(s) relative path as tooltip in piece map [Parg]
FEATURE: UI | Add max-age to swarm discoveries search [Parg]
FEATURE: UI | Double-clicking on a download history entry selects in Library view if found [Parg]
FEATURE: UI | New 'Available' peers view column to show percentage peer has that we still need [Parg]
CHANGE: Core | Dump thread log to separate file [Parg]
CHANGE: Core | Disable thread monitoring by default on Linux as causing libpthread crashes [Parg]
CHANGE: Core | Accept same size files when only one found when searching for existing [Parg]
CHANGE: Core | More efficient bit torrent message decoding [Parg]
CHANGE: Core | Removed legacy Beta chat [Parg]
CHANGE: Core | Decrease and spread out disk io caused by scrapes [Parg]
CHANGE: Core | When adding for seeding with a tag that has an initial save location, check move location too [Parg]
CHANGE: Core | Increase max peer requests [Parg]
CHANGE: Core | Check Tag move-to-folder for existing data on auto import [Parg]
CHANGE: UI | Populate category names/icons in tag category group columns [Parg]
CHANGE: UI | Added chat friends column legend tooltip [Parg]
CHANGE: UI | Support alt/shift and alt drag+drop to a tag to indicate explicit addition/removal [Parg]
CHANGE: UI | Update iTunes & Android icons [RandomAJL]
CHANGE: UI | Truncate long swarm merge tooltip and add option to view all [Parg]
CHANGE: UI | Allow text viewer to be minimized [Parg]
CHANGE: UI | Made manual backup progress dialog non-modal [Parg]
CHANGE: UI | Add timestamps to redirected console log [Parg]
CHANGE: UI | Optimize piece info view to only fill visible area [Parg]
CHANGE: UI | Don't limit width of bind-ip setting [Parg]
CHANGE: UI | Select best matching network interface regular expression when possible [Parg]
CHANGE: UI | Change Files View filter for full path to be 'contains' not 'prefix' [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
CHANGE: UI | de_DE: German translation update [Unknown]
BUGFIX: Core | Fix auto plugin install [Parg]
BUGFIX: Core | Fix some issues around share properties [Parg]
BUGFIX: Core | Fix pause/resume handling for non-persistent downloads [Parg]
BUGFIX: Core | Fixed search-for-existing files when matched has incorrect storage type [Parg]
BUGFIX: Core | Fix storage type switch from reorder->linear from search-for-existing [Parg]
BUGFIX: Core | Fix error when tracker has no URL [Parg]
BUGFIX: Core | Improve anonymous chat recovery when I2P is down [Parg]
BUGFIX: Core | Fix save location for archived downloads with move-on-remove active [Parg]
BUGFIX: UI | Fix tag library header on Linux [Parg]
BUGFIX: UI | Guard against component width recalculation recursion [Parg]
BUGFIX: UI | Torrents subview missing some context menu items [Parg]
BUGFIX: UI | Fix unreliable chat table tooltips [Parg]
BUGFIX: UI | Fix excessive cell invalidates in peer pieces item [Parg]
BUGFIX: UI | Fix sidebar repaint problems with mousewheel scroll on OSX [Parg]
BUGFIX: UI | Fix request-scrape menu enable logic [Parg]
BUGFIX: UI | Don't truncate unicode surrogates [Parg]
BUGFIX: UI | Fixed a few things around peer-set tag groups [Parg]
BUGFIX: UI | Avoid creation of multiple subscription menu items [Parg]
BUGFIX: UI | Increased speed shell typed text alpha as invisible on darker backgrounds [Parg]
BUGFIX: UI | Explicitly anti-alias library header text [Parg]
BUGFIX: UI | Fix test for blocks being in cache in pieces view [Parg]
BUGFIX: UI | Fix duplicate rows on table structure change [Parg]
BUGFIX: UI | Fix all-trackers removal actions not showing existing ones [Parg]
BUGFIX: UI | Various file access performance improvements [TuxPaper]
BUGFIX: UI | Fix batch file rename with only case difference [Parg]
BUGFIX: UI | Fix rename of file in case only again [Parg]
2020.05.11 | BiglyBT 2.4.0.0
FEATURE: Tag | New tagPosition Tag constraint function [Parg]
FEATURE: Tag | Tag execute-on-assign values of 'host/publish on tracker' [Parg]
FEATURE: Tag | Tag Group option to automatically set move-on-assign to members [Parg]
FEATURE: Tag | New move-on-assign Tag files feature [Parg]
FEATURE: Core | Option to restrict external torrents to known ones [Parg]
FEATURE: Core | Option to include skipped files when searching for existing [Parg]
FEATURE: Core | Auto publish to chat feature [Parg]
FEATURE: Core | Added asset-date to RSS items to distinguish magnet dates [Parg]
FEATURE: Core | Added tracker logging [Parg]
FEATURE: Core | Warn about potential tracker update fails on close-down [Parg]
FEATURE: Core | Separate public and private tracker announce thread pools [Parg]
FEATURE: Core | Added option to set tracker announce concurrency [Parg]
FEATURE: Core | Added logging command and option to log all input/output to a file [Parg]
FEATURE: Core | Option to set local names for Friends [Parg]
FEATURE: UI | Added close-down tracker update time limit and progress indicator [Parg]
FEATURE: UI | Added a 'has private torrents' column to All Trackers view [Parg]
FEATURE: UI | New Tracker Activity view under Statistics [Parg]
FEATURE: UI | Smarter magnet URI name truncation [Parg]
FEATURE: UI | Warn about excessive tracker lag [Parg]
FEATURE: UI | Added option to reset tabs [Parg]
FEATURE: UI | Drag+drop tab reordering [Parg]
FEATURE: UI | Added 'save path' column to open-torrent-options LHS [Parg]
FEATURE: UI | Support more file menu options on FilesView inner tree nodes [Parg]
FEATURE: UI | Share-Download with chat context menu [Parg]
FEATURE: UI | Added delete menu option to chat MDI [Parg]
FEATURE: UI | Clipboard copy for torrent comment in General view [Parg]
FEATURE: UI | Show all buddy IP addresses [Parg]
FEATURE: UI | Added time indicators to speed graphics [Parg]
FEATURE: UI | Custom date format for chat window [Parg]
FEATURE: UI | New 'quick links' toolbar [Parg]
CHANGE: Tag | Execute-on-assign: change 'delete' to 'disconnect' for peer sets [Parg]
CHANGE: Tag | Remember tag sharing state in add-tag dialog [Parg]
CHANGE: Core | Maintain IPv4 DHT binding when testing IPv6 [Parg]
CHANGE: Core | Log originator IP with authentication error [Parg]
CHANGE: Core | Set default refresh frequency for chat based RSS lower [Parg]
CHANGE: Core | Log URL group map changes [Parg]
CHANGE: Core | Try to maintain URL set order when applying DNS mods [Parg]
CHANGE: Core | Added some download state checks prior to 'search for existing' dialog [Parg]
CHANGE: Core | Support lower 'ignore FP rules for no upload time' values [Parg]
CHANGE: Core | If a complete torrent is manually moved then prevent auto-move later [Parg]
CHANGE: Core | Cache buddy profile data [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock,Snn1452]
CHANGE: UI | no_NO: Norwegian translation update [lislei]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | zh_CN: Simplified Chinese translation update [YuDong;spice2wolf]
CHANGE: UI | ko_KR: Korean translation update [tmddn741741]
CHANGE: UI | Added a few more places to discuss trackers [Parg]
CHANGE: UI | Tidy up the chat discussion menus [Parg]
CHANGE: UI | Keep the UI updating during close-down so you can see progress [Parg]
CHANGE: UI | Place plugin sub-sections below core sub-sections [TuxPaper]
CHANGE: UI | Improve tracker source status text when disabled [Parg]
CHANGE: UI | Support shift/ctrl+enter as well as alt for soft newline [Parg]
CHANGE: UI | Indicate connected friends [Parg]
CHANGE: UI | Make subfolder in open-torrent-options scale with window size [Parg]
CHANGE: UI | BiglyBT DHT view for all [Parg]
CHANGE: UI | 'only show transcoded content' -> 'only show listed content' for win/osx [Parg]
BUGFIX: Tag | Fix Tag FilesView not working [Parg]
BUGFIX: Tag | Fix Tag Settings scroll behaviour [Parg]
BUGFIX: Core | Ignore I2P flipping in DHT registrations [Parg]
BUGFIX: Core | Prevent duplicate UPnP logs [Parg]
BUGFIX: Core | Fix stats in all-trackers view [Parg]
BUGFIX: Core | Ensure we save any outstanding stats on close [Parg]
BUGFIX: Core | Fix case when last file in torrent is 0 byte and starts on a new piece [Parg]
BUGFIX: Core | Don't hide our own messages when ip-filtered [Parg]
BUGFIX: Core | Reduce pairing message size to fix update error [Parg]
BUGFIX: Core | Fix deadlock in temporary ban path [Parg]
BUGFIX: Core | Fix double-magnet download bug [Parg]
BUGFIX: Core | Fix up chat removal a bit [Parg]
BUGFIX: Core | Fix large tracker interval bug [Parg]
BUGFIX: Core | Decrease active folder writes for inactive downloads [Parg]
BUGFIX: Core | Don't use expensive swarm merge info for simple test if merging [Parg]
BUGFIX: Core | Improve multi-address buddy boost detection [Parg]
BUGFIX: Core | Fix ETA average overflow [Parg]
BUGFIX: Core | Don't chunk ETA history values as messes up short eta restore [Parg]
BUGFIX: Core | Only prompt for I2P install if explicit I2P tracker host [Parg]
BUGFIX: Core | Work around corrupt torrents with surplus length field [Parg]
BUGFIX: Core | Fix backup fails caused by file-in-use [Parg]
BUGFIX: UI | Fix MyTracker date-added sort [Parg]
BUGFIX: UI | Select the Tag Settings tab when requested to do so [Parg]
BUGFIX: UI | Remember TabbedMDI selected Tab for non-main-MDI [Parg]
BUGFIX: UI | Tidy up the search-for-files logging a bit [Parg]
BUGFIX: UI | Handle surrogates in menu split logic [Parg]
BUGFIX: UI | Fix OSX image alpha issue on 4932r18 (4.15) [Parg]
BUGFIX: UI | Fix password entry [Parg]
BUGFIX: UI | Ignore DiskManagerFileInfo selection in fancy menu [Parg]
BUGFIX: UI | Re-sort FilesView on data source change [Parg]
BUGFIX: UI | Fix empty groups on lower user modes [TuxPaper]
BUGFIX: UI | Support udp:// urls in clipboard for trackers [Parg]
BUGFIX: UI | Fix ParameterGroup.size to include TabFolder [TuxPaper]
BUGFIX: UI | Keep download speed stats running correctly over stop/starts [Parg]
BUGFIX: UI | Fix backup-hours disabling/enabling [Parg]
BUGFIX: UI | Fix 'posted' count in chat view [Parg]
2020.03.04 | BiglyBT 2.3.0.0
FEATURE: Tag | Added isSequential() tag constraint function [Parg]
FEATURE: Core | Option to periodically restart downloads with missing files [Parg]
FEATURE: Core | Friends profile option to specify country code [Parg]
FEATURE: Core | Chat option to use IPFilter to support blocking spammers [Parg]
FEATURE: Core | Session up/down tracker stats [Parg]
FEATURE: Core | Option to specify additional "global" IPv6 address ranges [Parg]
FEATURE: Core | Some alt-network support for main+v6 dht seeding [Parg]
FEATURE: Core | Add category to archived downloads view [Parg]
FEATURE: UI | Add colour to active library search; search history [Parg]
FEATURE: UI | Separate search histories by table type [Parg]
FEATURE: UI | Added history enable config [Parg]
FEATURE: UI | Support explicit v4/v6 friend profile data [Parg]
FEATURE: UI | Java config option to view recent memory usage stats [Parg]
FEATURE: UI | Option to show the local peer in PeersView [Parg]
FEATURE: UI | Add pieces column to peer's file view [Parg]
FEATURE: UI | Sidebar indicators for Categories all+uncategorized [Parg]
FEATURE: UI | Sidebar indicators for My Shares and My Torrents [Parg]
FEATURE: UI | Support category tab counts for all/uncat in classic UI [Parg]
FEATURE: UI | Sidebar indicator for Tags Overview [Parg]
FEATURE: UI | All-peers count indicator [Parg]
FEATURE: UI | Show a DDB Graph IPv6 when no IPv4 [Parg]
FEATURE: UI | Show some message history on chat column [Parg]
FEATURE: UI | Ctrl+tab/ctrl+shift+tab for next/prev sidebar views [Parg]
FEATURE: UI | Highlight other subs results with same hash as selected [Parg]
FEATURE: UI | Option to show icons for tag filter buttons in library [Parg]
FEATURE: UI | Remember sub-tab order [Parg]
CHANGE: Core | Config option to enable all diagnostic logs [Parg]
CHANGE: Core | Increase timeouts for anon friend torrent/rss [Parg]
CHANGE: Core | Drop support for GCJ in the startup script [TuxPaper]
CHANGE: Core | Persists download error state across restarts [Parg]
CHANGE: Core | Remember force-start state for auto-restart error downloads [Parg]
CHANGE: Core | Report errors encountered during explicit "check for updates' [Parg]
CHANGE: Core | Make ‘update anonymously' advanced and warn of potential issues [Parg]
CHANGE: Core | Auto-enable IPv6 support when liveness detected [Parg]
CHANGE: Core | Handle some more redirect HTTP codes [Parg]
CHANGE: Core | Remove JSONJava due to "good" licensing issues and some *nix policies [TuxPaper]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock,Snn1452]
CHANGE: UI | no_NO: Norwegian translation update [lislei]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | zh_CN: Simplified Chinese translation update [G2159687]
CHANGE: UI | cs_CZ: Czech translation update [Tsbook]
CHANGE: UI | Disable search box tooltip when it has content [Parg]
CHANGE: UI | Debug->Run GC for classic UI [Parg]
CHANGE: UI | Rework swarm view to use buffer image [Parg]
CHANGE: UI | Don't round MB memory values to GB once >= 1 GB [Parg]
CHANGE: UI | enable ‘search for data files' if download in error state [Parg]
CHANGE: UI | Limit piece map to 32k pieces for performance [Parg]
CHANGE: UI | Don't force share-ratio column width to be 80 in simple views [Parg]
CHANGE: UI | Select existing row when selected row removed [Parg]
CHANGE: UI | No implicit secondary sort when multi-sort for some others [Parg]
CHANGE: UI | Make quick-file-rename dialog resizeable + remember pos [Parg]
CHANGE: UI | All Peers should really be under the View menu [Parg]
BUGFIX: Core | Don't track transient buddies or accumulate them [Parg]
BUGFIX: Core | Fix swarm-merge off-by-one bug [Parg]
BUGFIX: Core | Try and work around OSX recycler hang/slowness [Parg]
BUGFIX: Core | Remove chance of increasing buddy status update events [Parg]
BUGFIX: Core | Fix up persistent shares and tag/category handling [Parg]
BUGFIX: Core | Fix DHT torrent xfer incorrectly being denied [Parg]
BUGFIX: Core | Fix download missing-file detection [Parg]
BUGFIX: Core | Remove metadata download if torrent manually added [Parg]
BUGFIX: Core | Prevent share-ratio overflow [Parg]
BUGFIX: Core | Check we can write to torrent download location [Parg]
BUGFIX: Core | Fix some errors being lost in torrent download process [Parg]
BUGFIX: Core | Fix auto-tagging of simple torrents [Parg]
BUGFIX: Core | Fix plugin search provider resolution [Parg]
BUGFIX: Core | Fix logs/*.log file max size being reset [Parg]
BUGFIX: Core | Fix smooth stats inaccuracy under load [Parg]
BUGFIX: Core | Use correct classloader when building standalone view [Parg]
BUGFIX: UI | Don't grab focus away from an active library search [Parg]
BUGFIX: UI | Fix some image leaks [Parg]
BUGFIX: UI | Tidy up some my-peer menu item availabilities [Parg]
BUGFIX: UI | Bring back chat nick colours on Windows [Parg]
BUGFIX: UI | Handle '&' in save-path matches menu [Parg]
BUGFIX: UI | Keep subs view sort order across rebuilds [Parg]
BUGFIX: UI | Fix category tabs in classic ui a bit [Parg]
BUGFIX: UI | Fix open-torrent-options dialog file on tag rebuild [Parg]
BUGFIX: UI | Fix activity view colours reverting to def when legend hidden [Parg]
BUGFIX: UI | Fix tag-discoveries indicator refresh [Parg]
BUGFIX: UI | Fix double-click minimize tab folder logic [Parg]
BUGFIX: UI | Fix setting column defaults always replacing current [Parg]
BUGFIX: UI | Fix toolbar behaviour in all-trackers + torrents sub-view [Parg]
BUGFIX: UI | Fix previous sidebar entry not being selected on entry close [Parg]
BUGFIX: UI | Fix slow Files View selecting torrents with large file count. [TuxPaper]
BUGFIX: UI | Handle supplemental Unicode in GCStringPrinter [Parg]
BUGFIX: UI | Fix ability to re-open closed sub-tabs with separate tag column config [Parg]
BUGFIX: UI | need to actually grab focus when not prevented from doing so [Parg]
BUGFIX: UI | Fix fake cell tooltip error [Parg]
BUGFIX: UI | Make sure we resolve view title resource ids [Parg]
BUGFIX: UI | Don't destroy sub-tabs control if closed views exist [Parg]
BUGFIX: UI | Fix ping graphic redraw behaviour on linux [Parg]
BUGFIX: UI | Prevent multiple UI updates per cycle [Parg]
2019.12.13 | BiglyBT 2.2.0.2
FEATURE: UI | Add sidebar dashboard reset option [Parg]
FEATURE: UI | Chat window now supports <n>...</n> to disable emphasis [Fubar99]
CHANGE: UI | Rate limit table vertical scrolling [Parg]
CHANGE: UI | Remember DDB Graph, Vivaldi view and activity column widths across tab switches [Parg]
BUGFIX: Core | Wait for plugin-proxy connections to actually connect [Parg]
BUGFIX: Core | Apply OS-specific filename character validation to renames in torrent options dialog [Parg]
BUGFIX: UI | Speed Graphic performance improvements [Parg]
BUGFIX: UI | Fix sidebar dashboard not building when UI hidden [Parg]
BUGFIX: UI | Fix UI deadlock [Parg]
2019.12.10 | BiglyBT 2.2.0.0
FEATURE: Tag | Added isSuperSeeding() constraint function [Parg]
FEATURE: Tag | Add count indicator. Shows "Inclusive | Exclusive" count when > 1 tag [TuxPaper]
FEATURE: Tag | Option to disable tracker auto-tagging [Parg]
FEATURE: Tag | Explicit option to select which tags are library view filter buttons [Parg]
FEATURE: Core | Support regular-expression matching for bind interface selection [Parg]
FEATURE: Core | Option to rename magnet downloads based on their ‘dn' [Parg]
FEATURE: Core | option to only rename single file magnets if they have an extension [Parg]
FEATURE: Core | IPv6 multiple global address firewall checks [Parg]
FEATURE: Core | Support auto-skip and auto-tag for torrent folder auto-imports [Parg]
FEATURE: Core | Option to download to temporary folder and move to original dest when done [Parg]
FEATURE: Core | Allow tracker updates as well as download duplication for same hash [Parg]
FEATURE: Core | Option to disable smart tracker activation [Parg]
FEATURE: Core | Option to control minimum number of pieces for a file to be considered for swarm merging [Parg]
FEATURE: Core | Option to revert file locations but retain any name changes [Parg]
FEATURE: Plug | Plugin access to multiple DHT local addresses [Parg]
FEATURE: Plug | Support xcode for linux [Parg]
FEATURE: UI | Multiple column sort. CTRL+Click (CMD for Mac). Also Header menu rework. [TuxPaper]
FEATURE: UI | Added super-seeding library view column [Parg]
FEATURE: UI | Next I2P scrape time shown in Sources view [Parg]
FEATURE: UI | Collapse All/Expand All menu items added to Files View tree nodes; also default double-click action [Parg]
FEATURE: UI | Options to automatically decline unknown SSL certificates instead of prompting [Parg]
FEATURE: UI | Sorting for table view sub-rows [Parg]
FEATURE: UI | Add Columns by dragging from Into tab to column header [TuxPaper]
FEATURE: UI | Speed sub-tab support for multiple selected downloads [Parg]
FEATURE: UI | Age-specific custom date formats [Parg]
FEATURE: UI | DND from torrent list to tag overview list [TuxPaper]
FEATURE: UI | Mouse wheel to scroll TabeView or ScrolledComposite that cursor is over. [TuxPaper]
FEATURE: UI | Show Piece Map and Piece Distribution when no piece selected. [TuxPaper]
FEATURE: UI | Show Piece Map when torrent is stopped. [TuxPaper]
FEATURE: UI | Added file offset to piece map header info [Parg]
FEATURE: UI | Long-press on cancel button to close multiple advanced rename dialogs [Parg]
FEATURE: UI | Make advanced rename dialog show one at a time, ESC to cancel all [TuxPaper]
FEATURE: UI | Unify config-wizard + nat-check-wizard somewhat, add IPv6 to config one [Parg]
FEATURE: UI | Added item count, active + queued to other table views [Parg]
FEATURE: UI | Session stats option for up/down idle column [Parg]
FEATURE: UI | Combined Library detailed list view option [Parg]
FEATURE: UI | Double click tracker in Sources view -> All Trackers entry [Parg]
FEATURE: UI | Ctrl+a selects all in skin text box; fixup open torrent window somewhat [Parg]
FEATURE: UI | Show bad availability in general view [Parg]
FEATURE: UI | Option to show transferring pieces in general view [Parg]
FEATURE: UI | Separate sidebar dashboard view [Parg]
FEATURE: UI | Options to hide/show legends [Parg]
CHANGE: Core | Update SWT version checking to include release numbers [Parg]
CHANGE: Core | Tidy up some tracker announce error messages [Parg]
CHANGE: Core | Reworked swarm-merging to handle partial blocks better [Parg]
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
CHANGE: UI | tr_TR: Turkish translation update [BouRock,Snn1452]
CHANGE: UI | zh_CN: Simplified Chinese translation update [G2159687]
CHANGE: UI | sl_SI: Slovenian translation update [upwinxp]
CHANGE: UI | Sources view now shows separate entry per plugin [Parg]
CHANGE: UI | Reduce image lookups when there definitely is no image to lookup [TuxPaper]
CHANGE: UI | Searching in the Options view now searches option values [Parg]
CHANGE: UI | Added existing 'monitor clipboard for torrents' to Options view [Parg]
CHANGE: UI | Restructure Views to use Builders [TuxPaper]
CHANGE: UI | When scrolling torrents, pieces graphs weren't being redrawn immediately [TuxPaper]
CHANGE: UI | Hack to show currently selected content on ctrl+hover on toolbar [Parg]
CHANGE: UI | Increase min_seeds spinner max from 100 to Integer.MAX [Parg]
CHANGE: UI | Update secret Files Mini View popup \o/ [TuxPaper]
CHANGE: UI | Don't update selected content/menu 100 times when removing 100 rows [TuxPaper]
CHANGE: UI | Add ipv6 address to transfer stats panel [Parg]
CHANGE: UI | Different border colour for forced pieces [Parg]
CHANGE: UI | Use anon-flag for anon downloads in swarm view [Parg]
CHANGE: UI | Add some stability to multiple swarm view entries [Parg]
CHANGE: UI | Tooltip for template combo to show contents [Parg]
CHANGE: UI | Ensure user selects open-torrent-option dialog behaviour once open [Parg]
CHANGE: UI | Disable save path selection when Tag selected with 'initial save location' defined [Parg]
CHANGE: UI | Keep connections+upload queued stats graphs updated when focus lost [Parg]
BUGFIX: Tag | Fix paused-tag not updating correctly when transition to/from stopped [Parg]
BUGFIX: Tag | Ensure open-torrent-options tags with initial save locations behave consistently [Parg]
BUGFIX: Plug | Prevent I2P router unavailability from stalling buddy plugin init [Parg]
BUGFIX: Plug | Fix FAQ link in swarm discoveries [Parg]
BUGFIX: Core | Don't trim file names when linking - files can start/end in spaces [Parg]
BUGFIX: Core | Full updates can't be manually installed - don't allow this to be attempted [Parg]
BUGFIX: Core | Ignore a few more troublesome and irrelevant backup folders [Parg]
BUGFIX: Core | Keep NameService proxy working from Java 12+ [Parg]
BUGFIX: Core | Explicit ipv4 resolve for nat check to avoid prefer-ipv6 issue [Parg]
BUGFIX: Core | IPv6 buddy fixes [Parg]
BUGFIX: Core | Fix ipv6 asn handling [Parg]
BUGFIX: Core | Fix buddy plugin anon outbound connection selection [Parg]
BUGFIX: Core | Fix a few places where torrent .bak files not being deleted [Parg]
BUGFIX: Core | Fix bug with support for biglybt. prefix sys props [Parg]
BUGFIX: Core | Fix super-seeding bug causing disconnects between BiglyBT clients [Parg]
BUGFIX: Core | Fix sequential download bug where first file to complete was cancelling it [Parg]
BUGFIX: UI | On OSX Catalina the options view scroll area was truncated [Parg]
BUGFIX: UI | Fix image leak [TuxPaper]
BUGFIX: UI | ReleaseImageLeft logic was wrong and never released images [TuxPaper]
BUGFIX: UI | Some fixes around select of last sidebar entry on startup [Parg]
BUGFIX: UI | Fix open-torrent-options window positioning bug [Parg]
BUGFIX: UI | Stable sort for 'new' column in Files View [Parg]
BUGFIX: UI | Fix menu name split bug [Parg]
BUGFIX: UI | Fix torrent info-view scrolling [Parg]
BUGFIX: UI | Column custom date format selection doesn't depend on selected rows [Parg]
BUGFIX: UI | Fix Chat Overview, right click on chat, "Show in Tab" not working [Parg]
BUGFIX: UI | Fixup FilesView flat/tree view switch selection scroll bug [Parg]
BUGFIX: UI | Fix open-torrent-options availability view [Parg]
BUGFIX: UI | GTK3 BubbleTextBox tweak for color and icon sizing [TuxPaper]
BUGFIX: UI | GTK tweaks to show colored checkbox [TuxPaper]
BUGFIX: UI | Improve library header info calc perf [Parg]
BUGFIX: UI | Don't rebuild FilesView if nothing has changed [Parg]
BUGFIX: UI | Don't double count selection size/done if dl+its files selected [Parg]
BUGFIX: UI | Fix text truncation in DHT view [Parg]
BUGFIX: UI | Use the position-change event(s) to force rank column invalidate [Parg]
2019.09.09 | BiglyBT 2.1.0.0
FEATURE: Plug | We now have a uTorrent/BitTorrent client migration plugin [TuxPaper]
FEATURE: Plug | New Swarm Discoveries 'explore' mode [Parg]
FEATURE: Tag | Three tag view modes in tagging view with groups: Row, Column, Row-Compact [TuxPaper]
FEATURE: Tag | Drag of Tags or to Tags or to Tag Groups now supported in most places [TuxPaper]
FEATURE: Tag | F2 to rename tag when it has focus [TuxPaper]
FEATURE: Tag | Added peer client id to Peer Set criteria [Parg]
FEATURE: Tag | New Peer Set client auto classifier mode [Parg]
FEATURE: UI | Added 'boost' checkbox peers column, restructured menu [Parg]
FEATURE: UI | Support more multi-torrent option setting in open-torrent-options [Parg]
FEATURE: UI | Library view config import/export [Parg]
FEATURE: UI | Classic UI option to never show Tag library views [Parg]
FEATURE: UI | OSX Dark Theme initial support [Parg]
FEATURE: UI | Added search option to chat text [Parg]
FEATURE: UI | Added collapse-all to Tag groups [Parg]
FEATURE: UI | Peers view option to enable auto-Peer Set categorization [Parg]
FEATURE: UI | Max-age and Min-seeds search filters for subscriptions [Parg]
FEATURE: UI | Added 'show icons' menu to FilesView name item [Parg]
FEATURE: UI | Implement 'and' library filter for spaces [Parg]
FEATURE: UI | Added option to allow auto-assigned Tags in open-torrent-options to be subsequently modified [Parg]
FEATURE: Core | Added last-active, downloading-for, date-added and date-completed to XML stats [Parg]
FEATURE: Core | Added ability to revert files to original location via copy [Parg]
FEATURE: Core | Reworked disk manager error handling to pick up 'no space' errors better [Parg]
FEATURE: Core | Option to kick off a low-resource recheck of a seeding download [Parg]
FEATURE: Core | Speed Limit Handler option to preserve existing limits across activation [Parg]
FEATURE: Core | Added an aggressive hash checking mode [Parg]
FEATURE: Core | Option to control max concurrent checking downloads [Parg]