-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
1264 lines (1077 loc) · 60.7 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
frostwire (5.7.5) stable; urgency=high
* Improved mp4 parser.
-- FrostWire Team <[email protected]> Tue, 22 July 2014 14:50:35 -0500
frostwire (5.7.4) stable; urgency=high
* Fixes issues with youtube downloads.
* Recovered ability to download soundcloud urls.
* Can download entire soundcloud playlists from playlist url.
* Fixed broken Torrents.fm search.
* Updated Gson library, included the sources into our repo.
-- FrostWire Team <[email protected]> Thu, 26 June 2014 15:44:35 -0500
frostwire (5.7.3) stable; urgency=high
* New Yifi search.
* Added Canonical Peer Priority support. (BEP40)
* Fixed broken EZTV search.
* Removed apache httpclient and httpcore libraries.
-- FrostWire Team <[email protected]> Fri, 23 May 2014 16:20:00 -0500
frostwire (5.7.2) stable; urgency=high
* uTP support enabled.
* Multiple crash fixes.
* UX: playable single file torrents now can be played from transfer list.
* UX: Fixes UI Thread freeze when opening Options > Search.
* UX: Better error reporting when a torrent can't be fetched from a
magnet connection.
* Spanish translation update by @dennistobar.
-- FrostWire Team <[email protected]> Fri, 11 Apr 2014 14:22:10 -0500
frostwire (5.7.1) stable; urgency=high
* Wi-Fi sharing discovery improved considerably with JmDNS.
Removed cling library.
* Improvements in .torrent creation window:
1. Web seed url(s) (GetRight style) support.
2. Associate a Creative Commons, Open Source, or Public Domain license.
3. Associate a Bitcoin address for Name-your-price/tips support.
4. Associate a Litecoin address for Name-your-price/tips support.
5. Associate a Dogecoin address for Name-your-price/tips support.
6. Associate a Paypal url for Name-your-price/tips support.
* Transfers and Library tables now able display Tips/Payment options column.
* Transfers and Library tables now able display License column.
* Updated Torrents.fm search engine.
* Removed Clearbits search engine, service offline for ~2 months now.
-- FrostWire Team <[email protected]> Wed, 12 Mar 2014 16:25:42 -0500
frostwire (5.7.0) stable; urgency=high
* Updated BitTorrent engine from Azureus/Vuze project.
* New Torrents.fm meta search integration.
* Brings back cloud downloads by entering url on search box or open dialog.
* Chat Tab gone. Chat button now points to http://frostwire.com/chat.
Faster startup time.
-- FrostWire Team <[email protected]> Fri, 17 Jan 2014 00:21:30 -0500
frostwire (5.6.9) stable; urgency=high
* Insanely faster cloud search results.
* Significant memory optimizations on search result parsing and display.
* Removed jDownloader libraries, less complexity, lighter app.
* Cloud audio downloads are much smaller, no audio demuxing necessary from
video services.
* Cloud video DASH download support.
* Smarter playlist name suggestion algorithm takes into account ID3 tags.
* Fixes bug where new playlists wouldn't be saved if default name was used.
-- FrostWire Team <[email protected]> Mon, 2 Dec 2013 17:49:38 -0500
frostwire (5.6.8) stable; urgency=high
* Fixes cloud search issues.
* Considerable Spanish translation updates by @dennistobar.
-- FrostWire Team <[email protected]> Mon, 11 Nov 2013 13:34:30 -0500
frostwire (5.6.7) stable; urgency=high
* New Advanced Feature: Edit Trackers.
* New Advanced Feature: Scrape Trackers.
* New Advanced Feature: Update Trackers.
* New BitSnoop meta search.
* New TorLock meta search.
* New EZTV meta search.
* Fixes Monova meta search.
* Removes ISOHunt meta search.
* Tips of the day updated.
* Updated Catalonian flag.
-- FrostWire Team <[email protected]> Mon, 4 Nov 2013 11:06:30 -0500
frostwire (5.6.6) stable; urgency=high
* Fixes ExtraTorrent meta search.
* Polish translation updated.
* New support for anonymous user experience statistics.
-- FrostWire Team <[email protected]> Fri, 11 Oct 2013 15:38:32 -0500
frostwire (5.6.5) stable; urgency=high
* Upgrades Soundcloud search, download, streaming.
* Fixes issue when starting downloads made of multiple single files
that belong to the same .torrent.
* When opening finished transfers on the library with a double click
FrostWire will no longer type the name of the file on the library
search box.
* Fixes bugs where magnets crawled would leave .torrent files behind
inside default torrents folder.
-- FrostWire Team <[email protected]> Wed, 25 Sep 2013 15:16:32 -0500
frostwire (5.6.4) stable; urgency=high
* Fixes issues parsing some cloud urls.
* Fixes issues with soundcloud meta search.
* Spanish translation updated.
* French translation updated. Thanks @jeromemorignot.
* Portuguese translation updated. Thanks @tati110.
* Brazilian Portuguese translation updated. Thanks @tati110.
* Arabic translation updated. Thanks @nisrmasr.
* Turkish translation updated. Thanks @Serrae.
-- FrostWire Team <[email protected]> Tue, 03 Sep 2013 14:49:33 -0500
frostwire (5.6.3) stable; urgency=high
* New Feature: Preview audio search results from Archive.org.
* New Feature: Decide wether or not to seed handpicked files
of torrents (aka Partial Downloads).
* New Hacker Feature: Change the location of FrostWire's settings folder.
Great if you want to install FrostWire on a removable disk and
you want to maintain settings and download states.
* Fixes bug where the internet search box would be disabled after
sending file to friend.
* Updated shutdown screen lets users know about Android app when they
might be headed outside.
-- FrostWire Team <[email protected]> Sun, 04 Aug 2013 12:14:13 -0500
frostwire (5.6.2) stable; urgency=high
* Improved readability of stream sources in player title.
* Fixed bug where media source icon for internet streams wouldn't be shown
more than once on search result preview playback.
* UX Patch: New 'Search' tab acts also as a search button.
-- FrostWire Team <[email protected]> Thu, 04 Jul 2013 00:00:00 -0500
frostwire (5.6.1) stable; urgency=high
* New Feature: New simplified, more responsive, faster user interface.
* New Feature: Audio player can detect Facebook and Twitter urls
inside .mp3 ID3 Tags to display Facebook and Twitter icons of the
the corresponding artists.
* fwplayer.exe improved unicode and HLS (Http Live Streaming) support.
* New Feature: Change font size with Ctrl/Cmd + '+', Ctrl/Cmd + '-'.
* New Feature: Close search tabs with Ctrl/Cmd + 'w'.
* New Feature: Switch search tabs with Ctrl+Tab, Ctrl+Shift+Tab
* New Feature: Switch search tabs with Cmd+Shift+[, Cmd+Shift+]
* New Feature: Search engines can be disabled in global options.
* Improved and optimized table rendering for search results and library files.
* Refreshed presentation of search results.
* New splash screen format.
* Fixed issue related to smart search configuration.
* Fixed NPE that would cause library table rendering issues.
* Fixed NPE while searching in starred.
* Fixed popup menu in search result displayer.
* Fixed DnD between playlists (some inconsistencies with order index).
* All FrostWire libraries now come in a single FrostWire.jar file.
* Major cleanup of the FrostWire code base.
-- FrostWire Team <[email protected]> Thu, 20 Jun 2013 00:12:08 -0500
frostwire (5.5.6) stable; urgency=high
* New Feature: Includes search results from archive.org, which indexes
millions of public domain and creative commons works from all over the
internet.
* New Feature: playlist songs can be re-ordered with drag and drop.
* New Feature: all songs in a playlist can now be exported to a folder.
* Upgrade: Improved Unicode support for Chinese characters.
* Upgrade: mplayer update for unicode character file playback support.
* Upgrade: Search architecture upgrade for much faster search results.
* Upgrade: Considerably faster mp3,mp4 parsing in the library, creating
playlists is now faster than ever.
* Upgrade: New more explicit Wi-Fi sharing icons.
* Upgrade: Updated radio station database.
* Upgrade: up to 20% faster listing of files in the Library.
* Upgrade: Video player upgrades for better experience.
* Bug fix: screen-saver no longer kicks in during video playback.
* Bug fix: UPnP Wi-Fi sharing discovery consumes 84% less CPU on
congested local networks. Fixing reported slowdowns and reducing
considerable power consumption for laptop users.
* Bug fix: X11 related error fix.
* Bug fix: Number of files being shared includes the number of torrents
being seeded.
* Bug fix: Library search issues related to unicode characters.
* Bug fix: Multiple null pointer exceptions and crashes fixed.
* Bug fix: Fixed rendering issue related to wrong parsing of bitrate
string data.
* Upgrade: (Developers) ant compilation scripts cleanup.
* Upgrade: (Developers) use of 'frostwire-commons' repository to share
common code between FrostWire for Android and Desktop projects.
-- FrostWire Team <[email protected]> Mon, 22 Apr 2013 05:58:00 -0500
frostwire (5.5.5) stable; urgency=high
* Bug fix: Null pointer exceptions in Media Player.
* Bug fix: Multiple User Interface thread violations fixed.
* Bug fix: Setup Wizard painting issues in Linux resolved.
-- FrostWire Team <[email protected]> Thu, 28 Feb 2013 17:00:00 -0500
frostwire (5.5.4) stable; urgency=high
* New Feature: extract audio (.m4a) from (.mp4) videos on right click.
* New Core Feature: HTTP resumeable large transfer support.
* Upgrade: Default save folder for cloud downloads is updated without
restarting.
* Upgrade: 'Repeat song' playback mode now available.
* Upgrade: Enriched promotion display, now with audio and video previews and
shortcuts to content creator's social media channels/streams.
* Upgrade: binary compatibility improved for Windows releases.
* Bug fix: if default save folder is changed it's now part of library scanned
folders.
* Bug fix: smart search engine wasn't notifying when it was done if there
were no results.
* Bug fix: several crashes and errors fixed.
* Bug fix: partial download dialog for cloud downloads would sometimes appear
empty.
* Bug fix: out of memory error by UPnP-cling creating an infinite number
of threads.
-- FrostWire Team <[email protected]> Thu, 21 Feb 2013 14:38:57 -0500
frostwire (5.5.3) stable; urgency=high
* Bug fix: freeze on Windows XP. (Windows release only)
-- FrostWire Team <[email protected]> Tue, 05 Feb 2013 19:00:00 -0500
frostwire (5.5.2) stable; urgency=high
* Upgrade: Now 'Movies' or 'My Videos' folder is included by default on new
installs since we now have a built-in video player.
* Upgrade: The Smart Search engine can now be disabled. No torrents will be
indexed and no search against the local database will be performed if
disabled.
* UI fix: Video Player Window Title now shows the file name being played.
* UI fix: Library > "Finished Downloads" renamed to "Default Save Folder"
* UI fix: When browsing another device on the Wi-Fi network newest shared
files are shown at the top of the table.
* Bug fix: On first installation FrostWire wasn't able to add 'From Devices'
folder to the Library.
* Bug fix: When restoring default settings FrostWire was not restoring
default library folders.
* Bug fix: Player remembers volume level from last song played.
* Bug fix: Sends correct file sizes on HTTP headers for shared files that
have changed in size after being shared.
* Bug fix: Repeat media play setting with only one item.
* Bug fix: New mime detector based on a bigger table.
* Bug fix: Video player doesn't skip frames when resuming from pause.
* Bug fix: Video player doesn't move frames when paused and volume slider
is being moved.
* Bug fix: Dropping a .torrent starts a download and doesn't ask to send to
a friend.
* Bug fix: (Windows) can delete files that are being played or seeded
from the Library.
* Bug fix: (Mac) compatibility with Mac OSX 10.5.x restored.
* Bug fix: (Windows) media player can open files with long paths.
* Bug fix: prevents NPE when opening a .torrent and trying to show icons when
the file system chooser wasn't available.
-- FrostWire Team <[email protected]> Tue, 15 Jan 2013 20:00:00 -0500
frostwire (5.5.1) stable; urgency=high
* New Clear Inactive button on transfers.
* New setting to use the default system media player instead of
FrostWire's.
* New Download Cloud URLs, Torrents and Magnets by entering
urls on the search field.
* New toggle full screen video playback with double click.
* Enhancement: Library file tables now show file modified date field and
files are sorted by it in descending order so user can easily find
newest files added to the library.
* Enhancement: Playlist tables now show the track number column and
are by default sorted by it in ascending order to enjoy
albums in the order they were meant to be heard by the content
creators.
* Enhancement: mime type guessing is faster when sharing files on Wi-Fi
* Bug fix: Library was getting confused with file extensions as part of file
names.
* Bug fix: sharing/unsharing popup menu behavior while sharing on Wi-Fi
* Bug fix: resizing issues on preview download dialogs.
* Bug fix: filtering on torrent detail dialog was broken.
* Bug fix: Library continuous playback working from play button.
* Bug fix: Cloud download error fixed.
* Bug fix: Media lib unicode issue.
-- FrostWire Team <[email protected]> Mon, 10 Dec 2012 20:00:00 -0500
frostwire (5.5.0) stable; urgency=high
* New FrostWire video player.
* New audio preview on cloud based audio search results.
* New video preview on cloud based video search results.
* New Wi-Fi sharing between FrostWire for Desktop and Android.
* New Wi-Fi sharing/announcement/discovery protocol via UPnP standards.
* New Stream Video/Audio stored shared on Android devices.
* UX Improvement: Add folders to library with drag and drop on
library tree.
* UX Improvement: cloud audio downloads now have album art.
* Core Search Performance lowers CPU usage dramatically while indexing.
* Core Improvement: broader compatibility on cloud demuxed downloads.
* UI Improvement: partial download/torrent content window now includes
file extension, file type icon.
* UI Improvement: when opening youtube url, the file selection dialog
has type/quality hints to guide user on the options available for
download.
* UI Improvement: audio player simplified, no stop button.
* UI Improvement: Transfer manager now has 'Clear Inactive' button.
* Bug fix: Run on startup for Mac finally works. The BitTorrent network
will get a boost of upstream bandwidth.
-- FrostWire Team <[email protected]> Thu, 29 Nov 2012 16:00:00 -0500
frostwire (5.4.0) stable; urgency=high
* No more sound distortion with the FrostWire player volume levels.
* Search engines update.
* UX Upgrade: Only one file type per search. Users were getting confused
with mixed file types in results.
* UX Upgrade: Forbid multiple selection on partial file selection dialog.
-- FrostWire Team <[email protected]> Mon, 17 Sep 2012 18:00:00 -0500
frostwire (5.3.9) stable; urgency=high
* BEP 34 compliant. FrostWire now checks DNS TXT records for tracker
config.
* Soundcloud integration (Search, Streaming and Downloads).
* Fixes issue with partial download title window not showing the name
of the torrent correctly.
* UI Improvement: Action hints on top of search results to stream or
download or see the contents of the torrent.
* UI Improvement: Action hint on top of playable contents in the
library.
* UI Improvement: Search result Source now includes the name of the
author if available.
* UI Improvement: Search keywords are bolded in the titles of search
results.
* UI Improvement: Creation date for non-torrent search results available.
* UI Improvement: File size of non-torrent search results available.
* UI Improvement: Opening 'Configure Options' on the Library takes user
to the Library Settings pane.
* UI Improvement: Right clicking on the title of a search tab now
shows the only action available (Repeat Search) directly.
* UI Improvement: A FrostWire update can now be invoked from the 'Tools'
menu.
* UI Improvement: New Notification update button will be available on
the Window header to let the user know visually that there's a
FrostWire update available.
* UI Improvement: Added 'Cleanup Playlist' right click menu item in
playlists.
* UX Improvement: When saving a newly created .torrent, FrostWire
will make sure the file is saved with the .torrent extension.
* Fixes issue with file names downloaded from FrostWire for Android.
* Fixes issue adding new radio stations to the library.
* Fix of MP3 ID3 tags unicode parsing.
-- FrostWire Team <[email protected]> Fri, 24 Aug 2012 20:43:35 -0500
frostwire (5.3.8) stable; urgency=high
* Sends MP4 files (videos) to iTunes.
* Better language auto-detection on configuration wizard.
* Fixes Drag and Drop issue with iTunes >= 10.6.3.
* Fixes issues with Monova search.
-- FrostWire Team <[email protected]> Thu, 5 Jul 2012 14:10:15 -0500
frostwire (5.3.7) stable; urgency=high
* New Feature: Export playlist to iTunes.
* Core upgrade: Better support for UTF-8 torrent contents.
* Faster startup time. No more waiting around 31% on splash screen.
-- FrostWire Team <[email protected]> Thu, 14 Jun 2012 08:07:05 -0500
frostwire (5.3.6) stable; urgency=high
* Full support for .m4a audio files (thumbnails, seek)
* AAC downloads from YouTube.
* Fixes issue with search suggestions where the popup wouldn't
hide correctly.
* Chinese, Korean character display fixed for Windows and Linux (Gnome only)
* Fixes issue where it was hard to select more than one search result for
batch downloads.
* Fixes issue with search results from KAT.ph. Now downloads are started
using magnet links instead of .torrents.
* Supports dragging files from transfer manager.
Useful to send files to iTunes as soon as transfers are done.
* Adds links to Facebook and Google Plus pages on status bar.
* Single file search results now are launched on double click.
-- FrostWire Team <[email protected]> Mon, 14 May 2012 14:47:00 -0500
frostwire (5.3.5) stable; urgency=high
* Drag and drop files and folders to your Android device running FrostWire.
You can upload files to 3 different devices at the same time.
* Fixes glitch where the file explorer would reset the split pane position.
* Removes flickering on album arts when resizing library explorer
* When the FrostWire window is resized to be very small the search
filters no longer overlap the "Open" and "Send to" buttons.
* Search box on the Library is now on the upper left and
offers contextual hint.
* Search boxes everywhere now have a clear button.
* Playlists are now sorted alphabetically.
* Option panes UI upgrades.
* Better suggestion for a playlist name when a folder is dropped on
"New Playlist".
* German translation updated.
* French translation updated.
* Norwegian translation updated.
* Dutch translation updated.
* Japanese translation updated.
* Filipino translation updated.
* Chinese (Hong Kong) translation updated.
* Chinese (Taiwan) translation updated.
* Chinese (Mainland) translation updated.
* Turkish translation updated.
* Portuguese (Brazilian) updated.
* Korean translation updated.
* Italian translation updated.
* Hindi translation updated.
-- FrostWire Team <[email protected]> Wed, 18 Apr 2012 18:00:00 -0500
frostwire (5.3.4) stable; urgency=high
* New frostwire.exe launcher with extended Unicode support now able to
handle .torrent file names with extended Unicode characters.
* Windows build is Windows 8 compatible.
* Windows build will prefer Java 7 if not JRE is found.
* Improvements when sending files on a local area network via magnet link
or send file to friend.
* Bug fix when opening magnets from a website when FrostWire
was already running.
* User experience improvements on the transfer manager.
* Spanish translation update (93% translated)
* YouTube video search and download support.
-- FrostWire Team <[email protected]> Mon, 26 Mar 2012 18:00:00 -0500
frostwire (5.3.3) stable; urgency=high
* Noticeable improvements in CPU performance.
* Noticeable improvements in search result quality.
* Updated TPB search to support magnet link search results.
* Added UT_METADATA extension to Vuze Core for improved magnet link support.
* Upgraded Lucene library to v3.5.0.
* Upgraded H2 to v1.3.164.
* When browsing FrostWire for Android devices (0.9.6+), date added
and date modified fields are available on all file types.
-- FrostWire Team <[email protected]> Thu, 08 Mar 2012 16:07:46 -0500
frostwire (5.3.2) stable; urgency=high
* Reverted H2 library to v1.3.160
-- FrostWire Team <[email protected]> Sun, 12 Feb 2012 09:09:46 -0500
frostwire (5.3.1) stable; urgency=high
* Updated default album cover image with an anti-aliased frostwire sphere.
* Fixes bug where clicking on the current song would switch to the library
but the button on the top would not be selected.
* Adds missing icon for "copy magnet" on Send file dialog.
* Library explorer and Playlist explorer are now divided by a split pane
for a better experience.
* Hides hints popup when search is triggered with a mouse click.
* Updated search icon (magnifier).
* Fonts are reset when the setup wizard is shown so the wizard can work
properly.
* New View > Reset Font Sizes action.
* The first time the Library button is used "Finished Downloads" is
preselected to give the user a clue of what can be done.
* When a new playlist is created, a graphic is shown to hint the user
about dragging audio files there.
* Updated H2 library to v1.3.164
-- FrostWire Team <[email protected]> Sat, 11 Feb 2012 18:22:15 -0500
frostwire (5.3.0) stable; urgency=high
* Search form looks similar to FrostWire 4 but now allows user to search
for more than one file type at once.
* Improvements in search algorithm.
* Send file/folder feature more effective between just 2 peers.
* Simplification of search form interface, looks similar to FrostWire 4
* Phone & Tablets tab is gone, integration with Android devices is now
part of the Library under a "Devices" tree item.
* Browses, Streams audio, and downloads files made public by Android devices
in the same network.
* When entering a search hints are shown to type less (powered by Google).
* Sorts transfers by "Seeds" correctly.
* Improvements on Library action buttons, now a "Launch" action is available
and buttons are shown/hidden depending on context.
* Fixes bugs where files on a audio playlist could not be dragged out.
* Fixes bugs where deleted files would still appear on the library.
* When right clicking on selected finished transfers and copying an infohash
you won't end up with a trailing newline on the clipboard.
* Sharing ratio of a torrent that you stopped and started seeding again
will not be infinite and will be based on the total sizes of the files
being shared.
* Now when the transfer split pane is dragged up, the pane border is painted
correctly on top of the image overlay.
* Fixes repainting glitch when moving split pane on top of promotional
graphic.
* Lots of icons have been revamped for a more uniform look.
* Null Pointer Exception issues #100, #103, #104.
* Fixes issue #93 chat action causing frostwire crash.
* Flickering issue on song progress bar resolved.
* Simplified torrent creation. User now doesn't have to make up her mind
about choosing a file or a folder, the file selection dialog now
handles this for her.
* Brought back "Stop" search button.
* Removed lingering "Show/Hide player" menu entry on status bar context menu.
* If seeding transfers are meant to be finished, newly finished transfers
are not hidden for that session.
* Audio files can be launched using the operating system's default player
Right click on a file "Launc in <OS>"
* Removed BTJunkie search engine.
* Added KickAssTorrents (kat.ph) search engine.
* Fixes issue where downloading removing a partial transfer would
delete previously completed downloads of that same torrent.
-- FrostWire Team <[email protected]> Fri, 10 Feb 2012 13:14:10 -0500
frostwire (5.2.11) stable; urgency=high
* Fixes bugs where some BitTorrent configuration settings were reset
on startup.
-- FrostWire Team <[email protected]> Mon, 28 Nov 2011 16:58:31 -0500
frostwire (5.2.10) stable; urgency=high
* Upload ratios will not be enforced to 30% of downloads anymore.
Users will have free will to set the upload ratio of their preference.
* Update autodownload now supported for mac.
* Updates can now be distributed via both BitTorrent and HTTP.
* HttpFetcher improvements for less resource consumption.
* HttpFetcher now supports large HTTP file downlods (progressive download).
* Improvements to Send File to a friend.
* Fixes bug where some finished Downloads wouldn't "Show in Library"
* Bug report system revised.
-- FrostWire Team <[email protected]> Mon, 22 Nov 2011 16:34:04 -0500
frostwire (5.2.9) stable; urgency=high
* Enhancement: Lucene full text indexing for Smart Search database to
allow for fuzzy searches.
* Enhancement: Lucene full text indexing for Library database allows
better search results on Radio search and playlist search.
* Enhancement: Audio player will start playing currently selected audio
source if it's on a stopped state.
* Bug Fix: Finished Downloads shows only finished downloads.
-- FrostWire Team <[email protected]> Wed, 9 Nov 2011 12:11:10 -0500
frostwire (5.2.8) stable; urgency=high
* Smart search updates uses less DHT resources and fixes logic bugs
that results into faster and better search results.
* New Internet Radio functionality on the Library. Play, Add, Remove
and bookmark your favorite Internet Radio Stations.
* Book/Document search now crawls for .cbr, .cbz, .cb7, .cbt and .cba
file formats.
* New "Show in Library" action for finished transfers. It is now the
default action when a finished transfer has been double clicked.
* Clicking on the currently played audio control should always take
the user to the currently played audio file.
* Top Library tree nodes re-arranged.
* When downloading a single partial file, the transfer manager shows
the proper icon based on the file type of the file being downloaded.
* Add partial downloads, and multiple transfers that contain audio files
to playlists right from the transfer manager.
* The library can now be configured to scan any folder the user desires.
* Files can be added to playlists right out of search results.
* New explore action button on the Library tab.
* New send to friend action button on the Library tab.
* Faster loading of Finished Downloads.
* Library search behaves as expected for all kinds of searches.
* A lot of bug fixes.
-- FrostWire Team <[email protected]> Mon, 7 Nov 2011 17:02:29 -0500
frostwire (5.2.3) stable; urgency=high
* Change the order of an audio file on playlist with drag and drop.
* Change the order of multiple audio files on a playlist with drag and drop.
* Drop audio files and folders at a specific position inside a playlist.
* Remembers the column and order you last set on the transfer manager
after restart.
* Remembers the last file type you searched for after restart.
* New FrostWire icon compatible with Ubuntu 11.10
* Bug fix, now if you're playing a song and you resort the playlist by
any of the columns, the next song to be played will be the one below
the current song in the new order.
* Searching inside "Finished Downloads" now yields folder names as search
results.
* Fixes lingering popup menu issue.
* Fixed DNS query issue affecting Linux.
-- FrostWire Team <[email protected]> Thu, 20 Oct 2011 17:42:08 -0500
frostwire (5.2.2) stable; urgency=high
* Library tables are now cached in memory, searches are done in the cache
speeding up the experience considerably for users with several thousand
files.
* Create or add audio files to a playlist right from the Transfer manager.
* iTunes importing after audio transfers finish turned off by default.
* Completed transfers that contain at least one audio file can be sent
to iTunes from the Transfer manager.
* Audio status component recognizes an Audio Stream, from an Audio file
from an internet stream url. Clicking on it will take you to the
Android Tab if it's an android stream or to the Library otherwise.
* Fixes issues with download mediator refresh.
* Fixes out of memory error.
* Real time UI feedback as audio files are being imported into playlist.
* F5, Cmd+R or Ctrl+R will refresh the current Library table.
-- FrostWire Team <[email protected]> Mon, 10 Oct 2011 18:03:10 -0500
frostwire (5.2.1) stable; urgency=high
* Play/Pause player buttons now share the same button depending on state.
* Mac OSX threading bug when importing .m3u playlist to new playlist fixed.
* Pressing space bar pauses/resumes currently played audio.
* Playlist files can be sorted correctly by track number when available.
* FLAC playback support.
* When a playlist has finished importing files, it's shown to the user.
* Transfer manager remembers the position of its JSplitPane.
* Transfer manager sorts downloads by default based on their creation date.
* Transfer manager has new column "Started On" showing the date the transfer
first started.
* Drag and drop issues on playlist component for Mac OSX fixed.
* Partial download dialog table can adjust column widths, a horizontal
scrollbar will appear if the sum of the columns is wider than the dialog.
* When playing an audio file, if it gets deleted FROM DISK from inside
FrostWire, the audio file will stop playing.
* Files can be dragged to the "Starred" playlist and they will be marked
as starred. If files are dragged from Disk, creating a new playlist
will be offered, and all the elements on the playlist will be starred.
* Files can be deleted from the "Starred" playlist. This will cause the
files to be unstarred on every other playlist where they belong.
* The tables on the library remember the last position of their scrollbars
during the session.
* Double clicking on a playlist name starts editing the playlist name.
* Fixes bug where downloading an individual file in a torrent wouldn't
be marked in the search results as downloading.
* Fixes a memory leak when importing ID3 tags into a playlist.
* Fixes bug where the duration of an MP3 file wasn't calculated correctly
by MPlayer, duration is now being calculated with Java library.
* Fixes bug where it would import torrent skipped files to iTunes.
-- FrostWire Team <[email protected]> Wed, 05 Oct 2011 13:14:11 -0500
frostwire (5.2.0) stable; urgency=high
* New Library Tab, code named "Alexandria"
* New Audio Player controls
* New controls to create and manage playlists
* Drag and drop files from Finished Downloads, Audio, File explorer
into new or existing playlists.
* New control on status bar that shows current audio file being played
with a "Send to friend" button. Clicking on the file name bring user
back to where the audio file is being played.
* Export playlists to .m3u
* Import .m3u into new or existing playlists.
* Filter files inside currently selected file type or playlist.
* Audio player can randomize playback order, or repeat playlist.
* New icons all over the application.
* Album art is displayed when an audio file is selected on a playlist.
* Album art can be scaled in real time with split pane.
* Songs on playlists can be starred, Starred songs are added to "Starred"
* Selected songs on a playlist can be deleted with the Delete key, or
on right click Delete from playlist.
* Playlists can be renamed.
* Playlists can be deleted.
* When songs that have been deleted from disk are attempted to be played
they will be highlighted in red and with an exclamation mark.
* Right clicking on any song on a playlist > Cleanup removes all songs
on a playlist that have been deleted physically from disk.
-- FrostWire Team <[email protected]> Mon, 26 Sep 2011 18:00:00 -0500
frostwire (5.1.5) stable; urgency=high
* Bug fix on setup wizard for some window configurations where controls
would not appear unless the user resized the window.
* Bug fix on keyword search filter, wrong keyboard event was being used.
* UX adjustement in the way transfers are sorted when the application is
launched.
* UX upgrade where Search Field on the Library now reacts to the DELETE key.
* UX upgrade where the FrostWire left hand side components are laid out
correctly after the user resizes the window from much smaller dimensions.
-- FrostWire Team <[email protected]> Fri, 16 Sep 2011 18:51:34 -0500
frostwire (5.1.4) stable; urgency=high
* Bug fix where it would not index torrents when the
file type filter was in use.
* Bug fix when downloading a secondary file from the second torrent
download would not start and would appear as seeding.
* Cleans all empty folders created by a partial download once the download
is removed from the transfer manager.
* Fixes issue with transfer manager resetting the order of columns.
-- FrostWire Team <[email protected]> Wed, 24 Aug 2011 00:57:38 -0500
frostwire (5.1.3) stable; urgency=high
* Search results now arrive under 200ms, aka, Instant Search.
* New FrostWire "Smart Torrent" search. FrostWire will search inside
top matching torrents for individual files matching the current query.
* Core upgrade, if a .torrent fails to download from its HTTP location
FrostWire will download it from the DHT if it can find it there.
* Functionality to see the size of the Search DB and to reset it.
* UX upgrade, ability to hide/show seeding torrents on transfer manager.
* UX upgrade, Phone & Tablets desktop explorer asks before deleting files.
* UX upgrade, New file "Extension" column on search results.
* UX upgrade, Search tabs now have animated indicator to let user know
a search is still going on.
* UX upgrade, New filter by file type. Filter controls re-arranged.
* UX fix, search results can now be sorted by file type.
* TPB has been added to the list of search engines.
* Mininova is back.
-- FrostWire Team <[email protected]> Thu, 18 Aug 2011 18:50:00 -0500
frostwire (5.0.8) stable; urgency=high
* Shows torrent details after a download starts to bring traffic back
to the search engine that provided the result as a default setting.
* Shows FrostWire icon for search results to which we can't resolve the
file extension.
* Removes Mininova from search engines.
-- FrostWire Team <[email protected]> Sat, 16 Jul 2011 19:41:08 -0500
frostwire (5.0.7) stable; urgency=high
* UX upgrade, send file or send folder support when a file or folder
is dropped on FrostWire.
* UX upgrade, file choosing dialogs on Mac now also show mounted volumes.
* UX upgrade, playback support for m4a files.
* UX upgrade, search result filters re-arranged.
* UX upgrade, main search button gone, updated search text box to include
clickable search icon.
* UX upgrade, filters re-arranged.
* UX upgrade, searches can be up to 50 characters long.
* UX upgrade, either disconnected or turbocharged, no idle state.
* UX upgrade, search as you type on the library, no more search button.
Disconnected only if it cannot connect to the internet.
* UX bugfix, iTunes options were not visible for Windows users.
* UX bugfix, fixes possible UI freeze on startup.
* UI bugfix, sending songs to iTunes on Mac is now done in a single process.
* Mac OSX Lion compatible.
* Bugfix, issue where opening a torrent from maglnk.com would result in a
double invocation of the Partial Dialog window.
* Bugfix, when user didn't start a partial download the torrent wouldn't be
deleted.
-- FrostWire Team <[email protected]> Fri, 15 Jul 2011 15:13:16 -0500
frostwire (5.0.6) stable; urgency=high
* New feature, Send file. Available on File Menu and Transfer Manager.
* New feature, Send folder. Available on File Menu and Transfer Manager.
* UX upgrade, we now have a [+] icon next to search result file names to
show partial download dialog.
* UX upgrade, when a partial download is cancelled, the entry is removed
from transfers.
* UX update on partial download dialog. Includes new text filter.
* UX fix, Library search now also looks for .torrents on "Torrents" folder.
* UX fix, Mac OSX file menu does no longer show "Exit" action.
* Fixes bug, incomplete files are no longer exported to iTunes playlist.
* UX update, Help Menu now says "Sharing Help". Items rearranged.
* UX update, rearranged View options into single panel.
* UX update, torrent seeding settings are now a control of its own with
an explanation of what seeding is.
* UX update, the installation wizard now forces the user to decide if
she wants to seed or not seed to continue. Links to what is seeding
are in place.
* UX update, in Windows and Linux, when the user Xs the window the user is
explained that the application will be hidden and is given the option
to exit.
* UX bugfix, font size can now be increased.
-- FrostWire Team <[email protected]> Mon, 27 Jun 2011 10:57:00 -0500
frostwire (5.0.4) stable; urgency=high
* UI upgrade, Create and seed New Torrents.
* UI upgrade, Ability to throttle torrent transfer speeds
* UI upgrade, Copy info hash from torrent.
* UI upgrade, Copy magnet link url from torrent.
* UI upgrade, Searchable library. Searches recursively downloaded
files, folders and torrents.
* UI upgrade, Search results filterable by Torrent Search Engine.
* UI upgrade, Search results filterable by file size.
* UI upgrade, Search results filterable by number of seeds.
* UI upgrade, Search results filterable by keywords as you type.
* UI upgrade, Ability to download partial files.
* UI upgrade, Promotional slides can now be switched by the user.
* UI upgrade and bug fixes on Phone & Tablets tab.
* UI upgrade, Ability to rebuild "FrostWire" playlist on iTunes.
* UI upgrade, Replaced legacy skinning code for "Substance" skinning system.
* Core update, audio playback is now done using mplayer.
* Core update, Vuze core integration with transfer manager.
re-written from scratch.
* Core update, No Gnutella support. Multiple library dependencies gone.
-- FrostWire Team <[email protected]> Fri, 24 Jun 2011 12:00:00 -0500
frostwire (4.21.8) stable; urgency=high
* Fixes a possible freeze reported by some users when the configuration
wizard is shown.
* Fixes issue when a user changes default Gnutella Save Folder
and unchecks Sharing finished downloads. Individually shared
files from the old Save Folder would still be shared.
Now all individually shared files will be unshared if you uncheck
this setting.
* Now users don�t have to re-start to stop seeding after they�ve changed
their torrent Seeding Configuration. All torrents old and new will stop
seeding as soon as the setting is applied.
* Better wording to explain on which networks files are being shared on,
Gnutella or BitTorrent.
* Changed color of "Sharing Options" gear icon to blue, gray
icon may have seemed as if the button was disabled.
* Added "Sharing Options" gear button on Search Tab. It's only visible
once a search has been started.
* Added Help Menu options to learn about how to share/unshare files,
torrent seeding, and how to avoid being scammed into paying for
FrostWire. DO NOT PAY FOR FROSTWIRE.
-- FrostWire Team <[email protected]> Thu, 9 June 2011 17:40:20 -0500
frostwire (4.21.7) stable; urgency=high
* Makes sure cancelling torrents that have finished are not deleted.
* Folders created by torrents that are cancelled during download are deleted
to avoid any unwanted file sharing.
* Fixes a bug when migrating from an older version of FrostWire on which
previously Saved and individually shared files would still be shared after
not sharing finished downloads on the migration wizard.
* Fixes a bug on configuration screens that could make the application freeze
for a few seconds before moving towards the next screen.
* Migration wizard will always be shown to make sure users are aware of what
they're sharing.
* Sharing completed files is always set to off by default on the
configuration wizard.
-- FrostWire Team <[email protected]> Mon, 16 May 2011 17:10:25 -0500
frostwire (4.21.6) stable; urgency=high
* Fixes a bug where some Debian systems that didn't support the
Icon Tray would crash on startup.
* Fixes a bug where running FrostWire for the very first time
(and later) display Uploads number -1 in the bottom status bar.
* UX improvement Junk & Block. When marking Junk Results
UI offers to block malicious hosts that haven't blocked already.
* Policy update, Incomplete files are not shared by default to avoid
sharing files you started downloading and didn't want.
* Policy update, Finished downloads are not shared by default to
avoid confusion between files on Shared folder versus files
on Save folder.
* Policy update, .torrent files are not shared by default.
* UX improvement, better explanation and option to turn on/off
individual sharing of finished downloads (that end up in Saved
Folder) during FrostWire setup wizard.
* UX improvement, when user turns off Finished Download sharing
those files that were shared as individual files inside
the 'Saved Folder' will not be shared anymore.
* UX improvement, File menu now has option to Exit FrostWire completely.
* UX improvement, File menu now says "Open Torrent/Magnet" instead
of "Download Torrent/Magnet" for clarity.
* Bug Fix: The Torrent Save folder is now considered correctly,
now users can set a Torrent Save folder on external drives.
* Bug Fix: Slideshow component had an issue where it would not update
correctly the URL of the currently displayed slice if it had issues
fetching the image file, this could in turn sometimes cause 100% CPU
utilization.
-- FrostWire Team <[email protected]> Thu, 5 May 2011 11:03:14 -0500
frostwire (4.21.5) stable; urgency=high
* Fixes newly introduced bug where it would not recursively share the
files in a folder. Thanks File_Girl71.
* Fixes newly introduced bug where it wouldn't correctly display the
title of a file on the Playlist.
* Fixes issue where it would not kill torrent uploads until
the next restart.
* Fixes NPE on HttpFetcher.fetch()
-- FrostWire Team <[email protected]> Mon, 21 Mar 2011 19:33:12 -0500
frostwire (4.21.4) stable; urgency=low
* New setting to turn off automatic installer downloads.
* New setting to limit the speed of BitTorrent downloads.
* New Galician flag added.
* UX improvements when creating new folders on the Phones and Tablets UI.
* Fixes bug when dropping files on an Android device that hasn't been
selected.
* UX change. FrostWire will now seed torrents that have not been removed
from it's download manager. Completed torrents now will appear as
"Completed/Seeding"
* UX change. Default save location folder in Windows Vista and Windows7 is
now the user's default "~Downloads/FrostWire" folder.
* UX improvements when showing FrostClick overlays. No more flickering.
Overlays are now shown in an animated slideshow. More than 2 artists
can now be promoted.
* Fixes bug when copying .apk files from Android device to desktop computer.
* Fixes bug when saving torrents to it's default Save location if that
folder has been deleted.
* Fixes bug on which removed Torrent downloads would reappear.
* Updated Mojito DHT integration. Mojito DHT is now active.
* Upgraded anti-spam mechanisms.
* Removed all remnant code related to LimeWire Store.
* Cleanup to use a single logging library.
-- FrostWire Team <[email protected]> Fri, 21 Jan 2011 20:00:00 -0500
frostwire (4.21.3) stable; urgency=low
* New "Phones and Tablets" tab. Tools to share files with Android
devices on a Wi-Fi network.
* New debian source packages available.
* Upgrades to HttpFetcher performance. Cleanups and refactors.
* Upgrades java compatibility to Java 6.
* Upgrades Mojito-DHT to the latest version found on the LimeWire
repository. Tune ups.
* Removed dependencies on Linux native libraries. JDIC is no more
for Linux releases.
* Fixes issues when rendering and scrolling torrent search results.
-- FrostWire Team <[email protected]> Thu, 16 Dec 2010 20:00:00 -0500
frostwire (4.21.1) stable; urgency=low
* New auto-update support for Windows and Ubuntu.
* Upgrades Azureus Core (bittorrent engine) to version 4.5.0.4.
Thanks to the Azureus Team for their hard work and support through the
integration.
* New setting pane to allow user to turn off FrostClick promotions.
* Fixes issue with Application Icon. New high resolution icon now
in place.
-- FrostWire Team <[email protected]> Wed, 22 Sep 2010 20:48:18 -0500
frostwire (4.20.9) stable; urgency=low
* Fixes bug where FrostWire would not try to open exclusively UDP tracked
torrents.
* New option -Dultrapeer=1 forces FrostWire to run as Ultrapeer. Only for
hackers that build FrostWire.
-- FrostWire Team <[email protected]> Tue, 17 Aug 2010 11:36:22 -0500
frostwire (4.20.8) stable; urgency=low
* Upgrades search, now powered with ClearBits.net results a service
that indexes thousands of legal torrent files. (formerly known as
LegalTorrents.com)
* New BitTorrent Connection Settings Available.
* New ability to configure the max. number of active torrent downloads.
* New ability to configure the max. number of peers per torrent.
* New ability to configure the max. number of torrent connections.
* New ability to configure the max. number of torrent uploads.
* Fixes torrent auto resume bug.
-- FrostWire Team <[email protected]> Thu, 05 Aug 2010 21:16:17 -0500
frostwire (4.20.7) stable; urgency=low
* Improves Torrent search dramatically.
-- FrostWire Team <[email protected]> Thu, 01 Jul 2010 15:26:46 -0500
frostwire (4.20.6) stable; urgency=low
* Upgrades Azureus Core to version 4.4.0.0 - Thanks to the
Vuze/Azureus team for their hard work.
-- FrostWire Team <[email protected]> Sun, 25 Apr 2010 00:00:00 -0500
frostwire (4.20.5) stable; urgency=low
* Fixes audio player issues. Now all MP3s should support skipping
and gain control. * Fixes bug on status bar speed meter. Now
BitTorrent uploads speeds are added up and shown correctly in it.
* Fixes High CPU usage bug while loading hostiles ip list. *
Fixes a bug on MacOSX on which FrostWire would only start
downloading a .torrent only if FrostWire was already running. *
The FrostWire windows installer will now clean FrostWire Desktop
shortcuts if uninstalled.
-- FrostWire Team <[email protected]> Fri, 06 Apr 2010 00:00:00 -0500
frostwire (4.20.4) stable; urgency=low
* Fixes connectivity issues for Mac version.
-- FrostWire Team <[email protected]> Mon, 28 Mar 2010 00:00:00 -0500
frostwire (4.20.3) stable; urgency=low
* Fixes a bug where files couldn't be dragged out of the Library.
* Fixes a bug where opening a magnet link would freeze the UI
while it was being fetched in the DHT. * Fixes a bug where magnet
links that were dropped on FrostWire wouldn't start downloading.
-- FrostWire Team <[email protected]> Wed, 15 Mar 2010 00:00:00 -0500
frostwire (4.20.2) stable; urgency=low