forked from riderkick/FMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1262 lines (1012 loc) · 39 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
Free Manga Downloader
Project page: https://github.com/riderkick/FMD
Changelog:
(! = Important, + = Addition, - = Removal, * = Bug fix/Change/Edit, ? = Require feedback)
0.9.93.0 (22-02-2017)
[*] WPManga: Fixed memory leak
Full changes: https://github.com/riderkick/FMD/compare/0.9.92.0...0.9.93.0
0.9.92.0 (21-02-2017)
[+] Added MangaDoor[ES]
[+] Added HentaiRead[H]
[*] Replace MangaHen with MangaSpy
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.91.0...0.9.92.0
0.9.91.0 (16-02-2017)
[*] E-Hentai: fixed loading "Content Warning"
Full changes: https://github.com/riderkick/FMD/compare/0.9.90.0...0.9.91.0
0.9.90.0 (16-02-2017)
[+] Added Portuguese (Brazil) translation by Havokdan
[+] Added Greek translation by geogeo_gr
[*] Fixed error when removing running download task
[*] Fixed shop drop box at startup
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.89.0...0.9.90.0
0.9.89.0 (06-02-2017)
[*] E-Hentai: fixed root url
[*] Split MangeEden_IT and PervEden_IT
[+] Added Polish language, thanks to grzesjam
[+] Added options to open favorites at startup
Full changes: https://github.com/riderkick/FMD/compare/0.9.88.0...0.9.89.0
0.9.88.0 (21-01-2017)
[+] Added GoodManga[EN]
Full changes: https://github.com/riderkick/FMD/compare/0.9.87.0...0.9.88.0
0.9.87.0 (12-01-2017)
[*] MangaTraders: fixed manga list
[*] Japscan: rewrite all codes
[*] MangaGo: rewrite all codes
Full changes: https://github.com/riderkick/FMD/compare/0.9.86.0...0.9.87.0
0.9.86.0 (11-01-2017)
[+] Added MangaCool[EN]
[*] MangaTraders: fixed issue #437
Full changes: https://github.com/riderkick/FMD/compare/0.9.85.0...0.9.86.0
0.9.85.0 (08-01-2017)
[*] MangaFox: fixed missing chapter title
[*] MangaLife, MangaSee, MangaTraders: fixed all, MangaTraders require account
[*] KireiCake: Fixed manga list
[*] ReadComic: Fixed manga list
[*] Fixed CF issue #433
Full changes: https://github.com/riderkick/FMD/compare/0.9.84.0...0.9.85.0
0.9.84.0 (04-01-2017)
[*] MangaFox: fixed manga info and Status
[*] MangaTown: fixed Image Url
[*] Removed MangaCow and Moved to WPManga
[+] Added Tonari no Young Jump, Comico, NewType and fixed Sunday Web Every[JP]
[+] Added PowerManga, Jaiminisbox, KireiCake and ReadComics[EN]
[*] Fixed Madokami Url
[*] Fixed 8Muses
Full changes: https://github.com/riderkick/FMD/compare/0.9.83.0...0.9.84.0
0.9.83.0 (06-09-2016)
[*] Fixed an issue when saving to pdf
[*] Hentai2Read: fixed manga info
[+] Added MyMangaMe[EN]
Full changes: https://github.com/riderkick/FMD/compare/0.9.82.0...0.9.83.0
0.9.82.0 (28-08-2016)
[+] Added MangaOnlineTo[EN]
Full changes: https://github.com/riderkick/FMD/compare/0.9.81.0...0.9.82.0
0.9.81.0 (21-08-2016)
[*] Tumangaonline: fixed download
Full changes: https://github.com/riderkick/FMD/compare/0.9.80.0...0.9.81.0
0.9.80.0 (20-08-2016)
[*] Tsumino: fixed download
Full changes: https://github.com/riderkick/FMD/compare/0.9.79.0...0.9.80.0
0.9.79.0 (18-08-2016)
[*] Fixed an error when creating download task
[*] Fixed empty chapters with some website
[*] Komikid: rewrite all code
Full changes: https://github.com/riderkick/FMD/compare/0.9.78.0...0.9.79.0
0.9.78.0 (17-08-2016)
[*] Fixed various issue with unicode path and filename
[*] TripleSevenScan: fixed accept adult warning
[*] MangaIndo: fixed manga info
[*] MangaChanRU/HentaiChanRU/YaoiChanRU: fixed manga info and empty chapters
[+] Added custom text to be used to replace unicode character
[+] Added context menu to copy log message
[*] MangaStream: fixed an issue with some chapters
[+] Added split download feature
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.77.0...0.9.78.0
0.9.77.0 (13-08-2016)
[*] MangaTraders: rewrite all code
[*] MangaIndo: rewrite all code
[+] MangaJoy replaced with FunManga[EN]
[+] Added SundayWebry[RAW]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.76.0...0.9.77.0
0.9.76.0 (07-08-2016)
[*] Fixed download tree status not updating
[+] Added Log form, Options > Misc > Log
[+] Added TripleSevenScan[EN]
[*] MangaFox: fixed remove watermark
[*] E-Hentai/ExHentai: fixed download causing by incorrect filenames
[*] Fixed export to PDF issue with indexed PNG images
[+] Added HentaiChanRU[H], YaoiChanRU[H]
[*] GameofScanlation: fixed download embedded base64 images
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.75.0...0.9.76.0
0.9.75.0 (30-07-2016)
[+] Added "Delete task + data + favorite" in download list popup menu
[+] Added "Delete" in manga list popup menu
[+] Added Favorite list search
[+] Added Download list search
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.74.0...0.9.75.0
0.9.74.0 (06-07-2016)
[+] Added enable/disable task. Disabled task can't be resumed unless it's enabled manually, this task will be skipped on resume all.
[+] Added tray icon popup menu. Resume all, Stop all, Action after download finish, Show drop box, Restore and Exit.
[*] MangaInn: fixed incorrectly download second page and forth (#317)
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.73.0...0.9.74.0
0.9.73.0 (06-07-2016)
[+] Added custom color for favorite with empty chapters
[*] Various changes
Full changes: https://github.com/riderkick/FMD/compare/0.9.72.0...0.9.73.0
0.9.72.0 (04-07-2016)
[*] Fixed CF
[+] Added custom color options for list, Options > Misc
[*] MangaSee, MangaLife: rewrite all code
Full changes: https://github.com/riderkick/FMD/compare/0.9.71.0...0.9.72.0
0.9.71.0 (01-07-2016)
[*] Tumangaonline: show all available chapter with scanlation name, fixed download
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.70.0...0.9.71.0
0.9.70.0 (29-06-2016)
[*] SeinagiAdultoFansub: fixed manga info and download
[*] Fixed an issue with CF
Full changes: https://github.com/riderkick/FMD/compare/0.9.69.0...0.9.70.0
0.9.69.0 (22-06-2016)
[*] MangaJoy: fixed update list
[+] Added DangoOnlineNoFansub[ES-SC]
[+] Added DejameProbar[ES-SC]
[+] Added HoshinoFansub[ES-SC]
[+] Added MangaWorksFansub[ES-SC]
[+] Added MasterPieceScans[ES-SC]
[+] Added MenudoFansub[ES-SC]
[+] Added NeoProjectScan[ES-SC]
[+] Added Pzykosis666HFansub[ES-SC]
[+] Added R15TeamScanlation[ES-SC]
[+] Added SantosScan[ES-SC]
[+] Added SeinagiFansub[ES-SC]
[+] Added SeinagiAdultoFansub[ES-SC]
[+] Added SolitarioNoFansub[ES-SC]
Full changes: https://github.com/riderkick/FMD/compare/0.9.68.0...0.9.69.0
0.9.68.0 (20-06-2016)
[*] Fixed error at start
Full changes: https://github.com/riderkick/FMD/compare/0.9.67.0...0.9.68.0
0.9.67.0 (20-06-2016)
[*] MangaPark: rewrite all code
[*] MangaBug: replaced with MangaIce
[+] Added MangaJoy[EN]
[*] Various changes and bug fix
Full changes: https://github.com/riderkick/FMD/compare/0.9.66.0...0.9.67.0
0.9.66.0 (18-06-2016)
[*] KissManga: fixed manga info
[+] Added LeoManga[ES]
Full changes: https://github.com/riderkick/FMD/compare/0.9.65.0...0.9.66.0
0.9.65.0 (16-06-2016)
[*] Fixed check for new chapters
[*] Tumangaonline: fixed get all chapters
[*] MangaInn: rewrite all code
[*] Various changes and bug fix
Full changes: https://github.com/riderkick/FMD/compare/0.9.64.0...0.9.65.0
0.9.64.0 (15-06-2016)
[+] Show new chapters and status downloaded while checking favorites with icon and highlight
[*] SenManga: fixed all
[+] E-Hentai/ExHentai: replace option download original image with image size with combobox
[*] Various changes and bug fix
Full changes: https://github.com/riderkick/FMD/compare/0.9.63.0...0.9.64.0
0.9.63.0 (11-06-2016)
[*] Fixed an issue with CF
Full changes: https://github.com/riderkick/FMD/compare/0.9.62.0...0.9.63.0
0.9.62.0 (09-06-2016)
[*] Fixed various path issue (#275, #276, #279)
[+] Added OneTimeScans[EN-SC]
[+] Added SenseScan[EN-SC]
[+] Added KuManga[ES]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.61.0...0.9.62.0
0.9.61.0 (05-06-2016)
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.60.0...0.9.61.0
0.9.60.0 (03-06-2016)
[*] ReadComicOnline: fixed domain
[*] Fixed various path issue
[+] Added option for custom filename
[+] Added option to disable auto generate chapter folder
[+] Added popup menu to check/uncheck/indeterminate all genres in filter
[+] Added filter chapter list in mangainfo, activate via popup menu on chapter list
[*] Double click on "Save to" column on download list/favorite list will open folder
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.59.0...0.9.60.0
0.9.59.0 (30-05-2016)
[+] Added SekaiManga[ES]
Full changes: https://github.com/riderkick/FMD/compare/0.9.58.0...0.9.59.0
0.9.58.0 (29-05-2016)
[*] Batoto: fixed download
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.57.0...0.9.58.0
0.9.57.0 (28-05-2016)
[*] Fixed incorrectly store full path inside archive (zip/cbz)
[+] Added GManga[AR]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.56.0...0.9.57.0
0.9.56.0 (25-05-2016)
[*] YoManga: fixed download
[*] HeyManga: fixed download
[*] Webtoons: download original images (#254)
[+] Added MangaSaurus[EN]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.55.0...0.9.56.0
0.9.55.0 (20-05-2016)
[*] Tumangaonline: rewrite all code, require new manga list
[*] Yomanga: fixed blocked by cf
[*] GameofScanlation: fixed download
[-] MangaVadisi and MangaFrame removed
[+] Added MangaDenizi[TR]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.54.0...0.9.55.0
0.9.54.0 (09-05-2016)
[*] Manga-Tr: fixed get image url
[+] Added Puzzmos[TR]
[+] Added WebtoonTr[TR]
Full changes: https://github.com/riderkick/FMD/compare/0.9.53.0...0.9.54.0
0.9.53.0 (08-05-2016)
[*] Tsumino: fixed update list
Full changes: https://github.com/riderkick/FMD/compare/0.9.52.0...0.9.53.0
0.9.52.0 (07-05-2016)
[*] Added HeyManga[EN]
[*] HitomiLa: fixed update list
Full changes: https://github.com/riderkick/FMD/compare/0.9.51.0...0.9.52.0
0.9.51.0 (13-04-2016)
[*] Fixed restore window position
[*] MangaEden/PerEven: rewrite all script
[*] MangaHere: fixed missing genres
[*] Hentai2Read: fixed update list
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.50.0...0.9.51.0
0.9.50.0 (11-04-2016)
[*] Added GoManga[EN]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.49.0...0.9.50.0
0.9.49.0 (08-04-2016)
[*] Preserve file last modified date from server
[*] Added more website advanced option
[*] HitomiLa: fix info
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.48.0...0.9.49.0
0.9.48.0 (02-04-2016)
[*] E-Hentai/ExHentai: Fixed filename serialized several times
[+] Added ReadComicOnline[EN]
[*] Website specific option moved to Options > Websites > Options
[+] Added website specific cookies and user agent, Options > Websites > Advanced
[*] Changed double click behaviour on download list and favorite list to "Open ..."
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.47.0...0.9.48.0
0.9.47.0 (30-03-2016)
[*] Fixed crash with clean install without works folder (#222)
Full changes: https://github.com/riderkick/FMD/compare/0.9.46.0...0.9.47.0
0.9.46.0 (27-03-2016)
[*] Downloaded Chapters now using SQLite3 database
[*] Config, Downloads and Favorites using temporary file at runtime (#218)
Full changes: https://github.com/riderkick/FMD/compare/0.9.45.0...0.9.46.0
0.9.45.0 (25-03-2016)
[*] E-Hentai/ExHentai: fixed file naming problem (#217)
[*] E-Hentai/ExHentai: fixed get another image url when failed (#213)
Full changes: https://github.com/riderkick/FMD/compare/0.9.44.0...0.9.45.0
0.9.44.0 (24-03-2016)
[*] MangaFox: fixed downloaded chapters incorrectly recognized as new chapter
[*] WPManga: fixed mangainfo and get image url
[*] SenManga: fixed get image url
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.43.0...0.9.44.0
0.9.43.0 (23-03-2016)
[*] Fixed download sometimes failed when max connection limit = 1
[*] 8Muses: faster get image url
[*] E-Hentai/ExHentai: use original filename if available
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.42.0...0.9.43.0
0.9.42.0 (22-03-2016)
[+] Added option to hide downloaded chapter. chapter list > right click > hide downloaded chapter
[*] Fixed various form layout
[*] Hentai2Read: fixed chapter list order
[*] MangaFox: fixed only show last 10 chapter
[*] Various changes and bug fixes
0.9.41.0 (18-03-2016)
[*] MangaFox: fixed remove watermark and rewrite all code
[*] Tsumino: fixed get image url
[*] Fixed mainform's components layout
[*] Various changes and bug fixes
0.9.40.0 (12-03-2016)
[+] Added Tumangaonline[ES]
[*] Various changes and bug fixes
0.9.39.0 (10-03-2016)
[*] Hentai2Read: rewrite all script
[*] Various changes and bug fixes
0.9.38.0 (04-03-2016)
[+] Added MangaBackup[EN]
[*] GameofScanlation: fix get image url
[*] Various changes and bug fixes
0.9.37.0 (28-02-2016)
[*] Madokami: fix login
[*] SubManga: rewrite all script
[+] Added show password checkbox in add account dialog
[*] Various changes and bug fixes
0.9.36.0 (27-02-2016)
[+] Added Tsumino[H], require cookie in advanced.ini
0.9.35.2 (25-02-2016)
[*] GameofScanlation: rewrite all script
[-] LoneManga: removed, website redirected to GameofScanlation
[*] Various changes and bug fixes
0.9.35.1 (21-02-2016)
[*] Updater: fix download manga list from server
0.9.35.0 (21-02-2016)
[*] Added Webtoons[EN]
[*] Various changes and bug fixes
0.9.34.0 (15-02-2016)
[*] AcademyVN: rewrite all script
[*] Various changes and bug fixes
0.9.33.0 (11-02-2016)
[-] MangaCap: removed, website offline
[+] E-Hentai/ExHentai: added option to download original image if available
[+] Added MangaChanRU[RU]
[+] Added MintMangaRU[RU]
[+] Added ReadMangaRU[RU]
[*] Various changes and bug fixes
0.9.32.3 (05-02-2016)
[*] Various changes and bug fixes
0.9.32.2 (03-02-2016)
[*] E-Hentai/ExHentai: fix incorrect page number
[*] Various changes and bug fixes
0.9.32.1 (02-02-2016)
[*] Hakihome: rewrite all script
[*] Various changes and bug fixes
0.9.32.0 (01-02-2016)
[*] Updater: various fix
[+] Added option to show/hide dialog download manga list from server when local database empty
[*] RedHawkScan: Removed, website offline
[*] Change manga list download url to new location
[*] Various changes and bug fixes
0.9.31.3 (28-01-2016)
[*] Fix save as pdf issue with indexed images
[*] Updater, fix download manga list always failed (403 Forbidden)
[*] Various changes and bug fixes
0.9.31.2 (24-01-2016)
[*] Fix remove mangafox watermark (file IO error when using multiple threads)
[*] Various changes and bug fixes
0.9.31.1 (21-01-2016)
[*] Fix double URL encoding
[*] Various changes
0.9.31.0 (19-01-2016)
[+] Download list: Assign CTRL+Home to move item to top and CTRL+End to move item to bottom
[+] Download list and Favorite list now accept url(s) via drag n drop
[*] Updater: fix various issue
[*] Various changes and bug fixes
0.9.30.0 (17-01-2016)
[*] E-Hentai/ExHentai: fix incorrect page links/page number
[*] Batoto: various fix
[*] Fix filter "Search only new manga"
[*] Fix various issue on "Update manga list"
[+] Added MangaKoi[EN]
[+] Added YoManga[EN-SC]
[+] Added RawYoManga[RAW]
[+] Added GameofScanlation[EN-SC]
[*] Various changes and bug fixes
0.9.29.1 (11-01-2016)
[!*] Fix empty user-agent if it's not defined in advanced.ini (causing connection issue)
0.9.29.0 (10-01-2016)
[*] KissManga: rewrite all script
[*] RawSenManga: rewrite all script (load full chapter list via one of chapter link https://github.com/riderkick/FMD/issues/146)
[*] UnionMangas: rewrite all script
[-] Pururin: drop support
[+] MangaFox: added option to save as PNG on remove watermark
[*] PecintaKomik: rewrite all script
[*] Various changes and bug fixes
0.9.28.0 (29-12-2015)
[+] Added Manga folder custom rename. Options > Save to
[*] Madokami: rewrite and add account support
[*] Fix load user-agent from advanced.ini
[*] Fix "Run out of memory" when updating long manga list
[*] Various changes and bug fixes
0.9.27.0 (26-12-2015)
[+] Added Remove MangaFox watermark feature. Options > Misc
[*] Batoto: fix add language and scan group to chapter title
[*] Various changes and bug fixes
0.9.26.0 (23-12-2015)
[*] Batoto: fix login
[*] ExHentai: fix login
[+] Added HitomiLa[H]
[+] Added HentaiCafe[H]
[+] Added Manga-Tr[TR]
[*] Madokami: fix image url
[*] Various changes and bug fixes
0.9.25.0 (21-12-2015)
[+] Added 8Muses[H] (no list, use drop box)
[+] Added Account Manager, Options > Accounts
[+] Batoto, add account support
[-] Drop support for Manga2u
[+] Added MangaHen[EN]
[+] Added ExHentai[H] with account support
[+] Added MangaBug[EN]
[*] Various changes and bug fixes
0.9.24.1 (25-11-2015)
[*] Fix fmd freeze
0.9.24.0 (25-11-2015)
[*] E-Hentai: get new image url if failed
[*] MangaHere: rewrite all script
[+] Added option to remove manga name in chapter name
[*] MangaLife: fix manga info
[*] NHentai: fix image url
[*] MangaTown: fix image url
[*] Fakku: fix image url
[*] MangaEden: fix page number
[*] Various changes and bug fixes
0.9.23.0 (26-08-2015)
[*] E-Hentai: fix image URL on multiple page
[-] Drop support for SenMangaRAW
[+] Added MangaLife(EN)
[+] Added Luscious(H)
[*] Various changes and bug fixes
0.9.22.1 (21-08-2015)
[*] E-Hentai: fix image url
[*] MangaIndo: remove automatically added chapter number
[*] ReadHentaiManga: fix image url
[*] Fix cover image sometimes failed to load
0.9.22.0 (19-08-2015)
[*] Fix various bug on filter
[*] WP-Manga: rewrite all script
[*] Added MangaIndo(ID)
[*] Various changes and bug fixes
0.9.21.8 (16-08-2015)
[*] Fix high cpu usage while updating manga list
0.9.21.7 (16-08-2015)
[*] Various changes and bug fixes
0.9.21.6 (11-08-2015)
[*] Doujin-Moe: reset image url every task start, fix expired url
[*] Fix empty website when adding a favorite
[*] Fix filter custom genres incorrectly treats whitespaces as separator
[*] Various changes
0.9.21.5 (10-08-2015)
[*] Fix remove multiple task
[*] Fix timer auto check favorites on interval not enabled if auto check new version not enabled
[*] Fix auto download new chapters in favorites always failed
[*] Various changes and bug fixes
0.9.21.4 (10-08-2015)
[*] Various changes and bug fixes
0.9.21.3 (09-08-2015)
[*] Fix favoritemanager doesn't showing the result when new chapter found
[*] Fix per item favorite check
0.9.21.2 (08-08-2015)
[*] Fix access violation when trying to download new chapter from favorites
[*] Fix option "Automatic download after finish checking" (favorites) doesn't stored properly
0.9.21.1 (08-08-2015)
[*] Minor bug fixes
0.9.21.0 (08-08-2015)
[+] Add button to abort check new version
[*] Minor UI changes
[*] Batoto: limit task to 1 and concurrent connection to 4
[+] Added Doujin-Moe (H)
[*] Various changes and bug fixes
0.9.20.0 (02-08-2015)
[*] Mangacan: rewrite all script
[*] PecintaKomik: rewrite all script
[*] Various changes and bug fixes
0.9.19.7 (30-07-2015)
[*] Minor bug fixes
0.9.19.6 (30-07-2015)
[*] Fix no manga folder when adding favorites from drop box
[*] Fix drop box issue with chrome
0.9.19.5 (30-07-2015)
[*] MangaFox: rewrite all script
[*] Fix drop box range check error
0.9.19.4 (28-07-2015)
[+] Added changelog tab
[+] Support multiple url on drop box
[+] Added popup menu to change drop box mode
[+] Added popup menu to abort loading thread (download all/add to favorites)
[*] Various changes and bug fixes
0.9.19.3 (27-07-2015)
[*] Various changes and bug fixes
0.9.19.2 (26-07-2015)
[*] Batoto: rewrite all script
[*] Various changes and bug fixes
0.9.19.1 (26-07-2015)
[*] Fix updater not closed after launching fmd.
For previous version just close FMD after update, it will also close the updater.
0.9.19.0 (26-07-2015)
[+] Mangalist data now using sqlite3, existing data will be automatically converted.
BUGS EXPECTED!
[*] Opening mangalist will be executed in separated thread, access to mangalist will be blocked until the process finish
[*] Search mangalist will be executed in separated thread, eleminate lag when searching large mangalist
[+] Added Soujosense (EN)
[+] Added mh160 (CN)
[*] Fix freeze in the middle of shutdown counter
[*] Fix Readmanga.today
[*] Fix various issue with unicode path
[*] Various changes and bug fixes
0.9.18.2 (05-07-2015)
[*] Minor bug fixes
0.9.18.1 (05-07-2015)
[!*] Fix connection closed forcefully when timeout reached
0.9.18.0 (04-07-2015)
[+] Added check/stop favorite per item
[+] Added transfer rate graph in download toolbar
[*] Various changes and bug fixes
0.9.17.1 (26-06-2015)
[+] Added "Failed" on download filter
[*] "Delete task + data", only remove chapters that exist in the task
[*] Fix EyeOnManga can't get names and links on update list
[*] Various changes and bug fixes
0.9.17.0 (19-06-2015)
[+] Added MangaCap, Authrone, EyeOnManga(EN)
[+] Added MangaBoom(TH)
[+] Added search websites on websites selection
[+?] Added connection timeout setting
[*] Various changes and bug fixes
0.9.16.6 (13-06-2015)
[*] Various changes and minor bug fixes
0.9.16.5 (12-06-2015)
[*] Minor bug fixes
0.9.16.4 (12-06-2015)
[*] Fix "Open with.." with unicode character
0.9.16.3 (11-06-2015)
[*] Minor bug fixes
0.9.16.2 (10-06-2015)
[*] Fix updater can't download manga list from server
[*] Fix open with external program, program path and parameter now separated
[*] Fix Madokami can't download images
[*] Various changes and bug fixes
0.9.16.1 (09-06-2015)
[!] Fix FMD not closed when updating.
- This bug prevent updater to overwrite the existing file.
- You may have to download manually this version.
0.9.16.0 (09-06-2015)
[+] Added Madokami (EN)
[*] Fix compress to pdf
[*] Various changes and bug fixes
0.9.15.0 (07-06-2015)
[+] Added LoneManga(EN)
[+] Added Dynasty-Scans(EN-SC)
[+] Added option to show/hide downloads toolbar
[+] Added button to expand/collapse websites selection
[*] Updater, enable minimize button
[*] Fix update dialog stay on top
[*?] Fix launch external program
[*] Various changes and bug fixes
0.9.14.1 (31-5-2015)
[*] Fix can't download images from imgur(kissmanga)
[*] Fix "delete task + data"
[*] Various changes and bug fixes
0.9.14.0 (30-5-2015)
[+] Added ReadMangaToday(EN)
[*] Various changes and bug fixes
0.9.13.1 (26-5-2015)
[*] Various changes and bug fixes
0.9.13.0 (26-5-2015)
[+] Added Drop box for download all/add to favorites
You can drag the url from browser to this box to download all the capter
[*] Various changes
0.9.12.2 (25-5-2015)
[*] AcademyVN: fix manga info
[*] Various changes and bug fixes
0.9.12.1 (25-5-2015)
[*] Various changes and bug fixes
0.9.12.0 (24-5-2015)
[+] Add download speed (per task and total)
[+] Add favorites check status per item (icon and higlight color on favorites list)
[*] Fix strange behavious when deleting multiple task
[*] Fix can't stop favorites
[*] Various changes and bug fixes
0.9.11.3 (21-5-2015)
[!*] Fix high cpu usage when checking favorites
[!*] Fix crash when delete running task
0.9.11.2 (21-5-2015)
[*] MangaFox: fix mangainfo, no chapters for licensed manga
0.9.11.1 (21-5-2015)
[*] Various changes and minor bug fixes
0.9.11.0 (19-5-2015)
[!*] Change translation with gettext, all previous translation will be loss, only English and Indonesian available
[*] Various changes for stability and bug fixes
0.9.10.4 (14-5-2015)
[+] Add setting for User-Agent via advanced.ini, example available in advanced_temp.ini
[*] Minor changes
0.9.10.3 (13-5-2015)
[*] If external program were not specified, FMD will open using registered viewer on OS
[+] Add menu favorites>download all
[*] Merge manual download chapter list to existing favorites
[*] Various changes and bug fixes
0.9.10.2 (12-5-2015)
[*] Minor changes
0.9.10.1 (12-5-2015)
[*] Minor changes
0.9.10.0 (11-5-2015)
[+] Add toolbar to start/stop all download task
[*] MangaStream: fix download problem
[*] Fix various favorites bugs
[*] Fix can't stop download task
[*] Various changes and bug fixes
0.9.9.6 (10-5-2015)
[*] Fix menu popup state
[*] Minor changes
0.9.9.5 (10-5-2015)
[+] Added button to cancel favorites check.
[*] Fix favorites not auto download
[*] Fix favorites add to download list with empty chapters link
[*] Minor changes
0.9.9.4 (10-05-2015)
[!*] Store the url instead of index for dowwnloaded chapter list, for more reliable validation.
IMPORTANT! THIS WILL MAKE YOUR OLD DOWNLOADED CHAPTER LIST UNUSABLE.
RECOMMENDED TO DELETE YOUR downloadedchapters.ini BEFORE ADDING NEW TASK
[!*] Merge downloaded chapter list from favorite to main downloaded chapter list.
[+] Add menu "View manga info" in download list (only accesible if your task added from current version upward)
[*] SenMangaRAW: added update list script
[*] S2Scans: rewrite all script
[*] Various changes and bug fixes
0.9.9.3 (09-05-2015)
[*] MangaStream: rewrite all script
[*] Minor changes
0.9.9.2 (09-05-2015)
[!*] Rewrite FavoritesManager
- Now you can add favorite while still checking the favorites,
or checking while there is still add to fav thread running
- Remove completed manga now working
- Broken favorite will be marked red with exclamation icon
[!*] Updater: Fix redirection
- You may have to download manually this version due to broken redirection on previous updater
[*] Various changes and bug fixes
0.9.9.1 (07-05-2015)
[!*] Updater: Bug fixes
[+] Added SenMangaRAW, no update list at the moment.
You can use old SenManga data (Dwonload mangalist from server)
[*] SenManga: fix manga info
[*] Various changes
0.9.9.0 (06-05-2015)
[!*] Bug fixes and stability improvements
[*] SenManga: rewrite all script
[*] MangaPark: fix mangainfo
[*] Various changes
0.9.8.10 (29-04-2015)
[+-] Replace MangaBird with MangaMint
0.9.8.9 (27-04-2015)
[*] AcademyVN fix status info
[*] Minor changes
0.9.8.8 (26-04-2015)
[+] Added AcademyVN (VN)
[+] Added MangaAt (AR)
[*] Various changes
0.9.8.7 (25-04-2015)
[+] Add MangaKu (ID)
[*] Minor changes
0.9.8.6 (25-04-2015)
[*] Fix MangaAr (all manga url seems changed, you have to build manga list from scratch)
0.9.8.5 (24-04-2015)
[*] Various changes and minor bugs fixed
0.9.8.4 (18-04-2015)
[*] MangaGo: add raw chapters
0.9.8.3 (16-04-2015)
[*] Fix SubManga*
[*] Various changes
0.9.8.2 (15-04-2015)
[*?] Change execution level of FMD to asInvoker (no UAC)
[*?] Run external process without admin privileges
[*] Various changes
0.9.8.1 (15-04-2015)
[!*] Fix downloadmanager
[*] Fix Fakku, Mangacow, LectureEnligne, Japscan
[!*] Various changes and bugs fixed
0.9.8.0 (12-04-2015)
[+?] Updater: add support for update FMD (experimental)
[*?] Enable FMD update (test using github release page)
[*] Various changes
[!] From now on only 32-bit version will be released,
there is no much benefit of using 64-bit version and to save my bandwith,
I will reconsider to provide it later
0.9.7.1 (04-04-2015)
[*] MyReadingMangaInfo: Add multi pages/chapter support, fix mangainfo
0.9.7.0 (02-04-2015)
[*] Manga2u: change domain to mangakaka.com
[*] KissManga: Fix not downloading
[*] SenManga: Fix mangainfo, updatelist and images download
[*] Various changes
0.9.6.4 (01-04-2015)
[*] Minor bugs fixed
0.9.6.3 (27-02-2015)
[*] Minor bugs fixed
0.9.6.2 (26-02-2015)
[!*] Fixing some memory leaks
0.9.6.1 (26-02-2015)
[*] Use gzip, deflate compression when loading page for faster loading and bandwidth saving
[*] Minor changes
0.9.6.0 (25-02-2015)
[+] Added MangaSee(EN)
[*] MangaPark: Various changes and fixes, new mangalist
[*] Various changes
0.9.5.0 (22-02-2015)
[*] Senmanga: Rewrite script, website changed
[*] Minor changes to DownloadManager
[*] Minor bugs fixed
0.9.4.1 (21-02-2015)
[*] Minor bugs fixed
[*] Various changes
0.9.4.0 (20-02-2015)
[*+] Various changes
0.9.3.1 (16-02-2015)
[*] Minor changes
0.9.3.0 (16-02-2015)
[*] Increase max task to 8 and max thread pertask to 16
[*] Button "Add to favorites", set enabled property by checking the existence of manga in favorite list
[*] Various changes
[*] Minor bugs fixed
[+?] Added PornComix(H-Sites), not all downloadable
[+?] Added XXComics(H-Sites), not all downloadable
0.9.2.0 (14-02-2015)
[*] Double click on empty space in download list open manga folder bug fixed
[*] Various minor bugs fixed
[*] MangaAe: rewrite all script, website changed, new mangalist
0.9.1.3 (12-02-2015)
[*] MangaHere: Various change and bugs fixed
0.9.1.2 (11-02-2015)
[*] Pururin: Rewrite mangainfo script
0.9.1.1 (06-02-2015)
[*] Minor bugs fixed
0.9.1.0 (05-02-2015)
[*] MangaReader_POR: update list bugs fixed
[*] UnionMangas: rewrite all script, website changed, new mangalist
[*] Starkana: rewrite script, website changed
[-] Drop MangasProject support (website inaccessible)
[+] Added MangaHost (PT)
[*] Various changes
0.9.0.0 (03-02-2015)
[*] Various changes
0.8.16.0 (02-02-2015)
[*] Fixed ticket#160 and related windowstate and position bugs
[*] MangaTraders: Rewrite all script (website entirely changed), new mangalist, delete data/MangaTraders.dat and rebuild mangalist to get new list
[*] Various changes
0.8.15.2 (23-01-2015)
[*] Various changes
0.8.15.1 (22-01-2015)
[*] Mangago: Change domain and logic to not fail if domain changed again
0.8.15.0 (21-01-2015)
[+] Compiled with FPC 3.3.1 and LCL 1.5
[+] Assigned CTRL + KEY_UP/KEY_DOWN to arrange download list item(s)
[*] Fixed ticket#151
[*] OneManga: Change domain and logic to not fail if domain changed again
[*] SenManga: Fix UserAgent and logic to not fail if domain changed again
[*] MangaStreamTo: Fix Manga Information (chapter list) and logic to not fail if domain changed again
0.8.14.0 (15-12-2014)
[*] MangaFrame: Rewrite all script from scratch
[*] DownloadManager: Keep record for each failed chapter download and replace current chapterlist with failedchapterlist when task finish, so we can retry this task.
[*] Various changes and bug fixes
0.8.13.1 (14-12-2014)
[*] Manga2u: change domain and update list with sorted list for faster update (ticket#141)
0.8.13.0 (13-12-2014)
[+] Added ExtremeMangas(PT)
[*] Minor changes
0.8.12.0 (12-12-2014)
[*] E-Hentai: Retry with new server if image failed to download
(old task will not work. Remedy: Replace E-Hentai task "PageLinks=" with "PageContainerLinks=" in works\works.ini)
[*] MangaBird: Fixed ticket#139
[*] Various changes and bug fixes
0.8.11.0 (08-12-2014)
[+] Implement rearrange download list by drag and drop (multiselect supported)
[*] Various changes and bug fixes
0.8.10.0 (06-12-2014)
[+] Added %AUTHOR% and %ARTIST% CustomRename field to "Save to>Chapter folder name" (need translation on hint text for non english)
[+] Added HakiHome(H-Sites)
[*] Various changes and bug fixes
[-] Disable Download List auto-sort when new task added for a moment
0.8.9.1 (03-12-2014)
[*] Fix ticket#128
0.8.9.0 (03-12-2014)
[+] Added UnixManga(EN)
0.8.8.0 (01-12-2014)
[+] Added UnionMangas(BR/PT)
[+] Added MangaBird(RAW)
[*] Updater: Handle file not found and offer to download manually from my mediafire folder.
[*] Minor changes
0.8.7.2 (30-11-2014)
[*] Minor bug fixes (custom genres filter)
0.8.7.1 (29-11-2014)
[*] Minor changes
0.8.7.0 (29-11-2014)
[*] Minor changes
0.8.6.0 (28-11-2014)
[+] Added I-Komik(MY-ID)
[+] Added NHentai(H-Sites)
[+] Added option to remove duplicate data when updating list, default false (slow and take cpu on long list!)
[*] Debug symbol for fpc and lcl is enabled (larger debug file, you can delete *.dbg file if you don't have a plan to report any bug in the future)
[*] Minor changes and bug fixes (DownloadManager, UpdateListManager, baseunit)
0.8.5.24 (24-11-2014)
[*] Minor changes (DownloadInfo)
0.8.5.23 (23-11-2014)
[*] Change DownloadInfo.progress value from WorkCounter to DownCounter
[*] Minor changes
0.8.5.22 (11-11-2014)
[*] Fix AnimeA (ticket#119)
[*] Various changes
0.8.5.21 (10-11-2014)
[+] Added MangaOku(TR)
[+] Added MyReadingMangaInfo(H-Sites)
[*] Various changes and bug fixes
0.8.5.20 (07-11-2014)
[+] Added confirmation dialog on "download all" if title are already in download list
[*] Various changes and bug fixes