forked from fmd-project-team/FMD
-
Notifications
You must be signed in to change notification settings - Fork 59
/
changelog.txt
2481 lines (2102 loc) · 86.7 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
https://github.com/dazedcat19/FMD2
Changelog:
([!] Important, [+] Addition, [-] Removal, [*] Fix/Change, [?] Feedback needed)
2.0.33.1 (10.10.2024)
[+] Added "rookiepy" workaround to bypass cloudflare protection. To use this workaround, check Issue #1715 -> Thank you @NhKPaNdA
[*] "FlareSolverr" workaround has issues with looping requests and timing out. Follow Method 1a in Issue #1715 for a working fix.
[*] Hotfix: Fixed filter search
2.0.33.0 (05.10.2024)
[+] Added custom color options for module list. The color will stays for 7 days after modules update -> Thank you @NhKPaNdA
[*] Fixed "Last message" column in module list. Only new modules update will show the message for existing install -> Thank you @NhKPaNdA
[*] Fixed filter search
[*] Fixed transfer website
2.0.32.0 (21.09.2023)
[+] Added 'FlareSolverr' workaround to bypass cloudflare protection. To use this workaround, check Issue #1329. Thank you @NhKPaNdA
2.0.31.0 (21.03.2021)
[*] Various changes and bug fixes
2.0.30.0 (06.10.2020)
[*] Various changes and bug fixes
2.0.29.0 (03.10.2020)
[*] Various changes and bug fixes
2.0.28.0 (28.09.2020)
[*] Various changes and bug fixes
2.0.27.0 (28.09.2020)
[*] Various changes and bug fixes
2.0.26.0 (24.09.2020)
[*] Various changes and bug fixes
2.0.25.0 (23.09.2020)
[*] Various changes and bug fixes
2.0.24.0 (17.09.2020)
[*] Various changes and bug fixes
2.0.23.0 (..2020)
[*] Various changes and bug fixes
2.0.22.0 (..2020)
[*] Various changes and bug fixes
2.0.21.0 (..2020)
[*] Various changes and bug fixes
2.0.20.0 (..2020)
[*] Various changes and bug fixes
2.0.19.0 (..2020)
[*] Various changes and bug fixes
2.0.18.0 (..2020)
[*] Various changes and bug fixes
2.0.17.0 (..2020)
[*] Various changes and bug fixes
2.0.16.0 (..2020)
[*] Various changes and bug fixes
2.0.15.0 (..2020)
[*] Various changes and bug fixes
2.0.14.0 (..2020)
[*] Various changes and bug fixes
2.0.13.0 (..2020)
[*] Various changes and bug fixes
2.0.12.0 (..2020)
[*] Various changes and bug fixes
2.0.11.0 (..2020)
[*] Various changes and bug fixes
2.0.10.0 (..2020)
[*] Various changes and bug fixes
2.0.9.0 (..2020)
[*] Various changes and bug fixes
2.0.8.0 (..2020)
[*] Various changes and bug fixes
2.0.7.0 (..2020)
[*] Various changes and bug fixes
2.0.6.0 (..2020)
[*] Various changes and bug fixes
2.0.5.0 (..2020)
[*] Various changes and bug fixes
2.0.4.0 (..2020)
[*] Various changes and bug fixes
2.0.3.0 (..2020)
[*] Various changes and bug fixes
2.0.2.0 (..2020)
[+] Added converter tool to convert fmd 1.x to fmd 2.
Extract the tool in existing fmd 1.x installation then run it.
Copy the contents of "converted" folder to fmd 2 installation.
[*] Various changes and bug fixes
Full changes: https://github.com/dazedcat19/FMD2/compare/2.0.1.0...2.0.2.0
2.0.1.0 (..2020)
[*] Runtime modules optimization, new stucture
[*] Various changes and bug fixes
Full changes: https://github.com/dazedcat19/FMD2/compare/2.0.0.0...2.0.1.0
2.0.0.0 (..2020)
[*] Changed databases and config files, not compatible with FMD 1.x
[*] A lot of optimization. modules, databases and more
[*] Various changes and bug fixes
Full changes: https://github.com/dazedcat19/FMD2/compare/1.3.3.0...2.0.0.0
1.3.3.0 (12.04.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.3.2.0...1.3.3.0
1.3.2.0 (10.04.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.3.1.0...1.3.2.0
1.3.1.0 (09.04.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.3.0.0...1.3.1.0
1.3.0.0 (08.04.2020)
Full changes: https://github.com/fmd-project-team/FMD/compare/1.2.5.0...1.3.0.0
1.2.5.0 (25.02.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.2.4.0...1.2.5.0
1.2.4.0 (24.02.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.2.3.0...1.2.4.0
1.2.3.0 (24.02.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.2.2.0...1.2.3.0
1.2.2.0 (23.02.2020)
[*] Fixed website modules updater unable to find new update
Full changes: https://github.com/fmd-project-team/FMD/compare/1.2.0.0...1.2.1.0
1.2.1.0 (23.02.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.2.0.0...1.2.1.0
1.2.0.0 (22.02.2020)
[*] Lua modules structure changed
Full changes: https://github.com/fmd-project-team/FMD/compare/1.1.4.0...1.2.0.0
1.1.4.0 (15.02.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.1.3.0...1.1.4.0
1.1.3.0 (14.02.2020)
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.1.2.0...1.1.3.0
1.1.2.0 (13.02.2020)
[*] Hotfix update
Full changes: https://github.com/fmd-project-team/FMD/compare/1.1.1.0...1.1.2.0
1.1.1.0 (12.02.2020)
[*] Website account and proxy user/pass now encrypted in file,
it will break your previous data, backup them first
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.1.0.0...1.1.1.0
1.1.0.0 (03.02.2020)
[+] Added auto backup settings everyday, max 7 backups
[*] Fixed slowing down on long download/favorite list
[*] Fixed filter favorite
[*] Various performance improvement
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/1.0.0.0...1.1.0.0
1.0.0.0 (27.01.2020)
[*] Fixed FMD sometimes won't restart after modules update
[*] Fixed memory leaks
[+] Added MangaNT[EN]
[*] Ported MangaReader/MangaPanda to lua
[*] Various changes and bug fixes
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.168.0...1.0.0.0
0.9.168.1 (19.01.2020)
[!] Report issues here: https://github.com/fmd-project-team/FMD/issues
[!] Join us on Discord: https://discord.gg/cXKKgw3
[*] Replaced the "InternetTools" and "MultiLog" packages from Lazarus OPM with the newer Git versions.
[*] Improved logger and some cleanup. -> Thank you dazedcat19
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.168.0...0.9.168.1
0.9.168.0 (18.01.2020)
[+] Added GetManhwa [Webcomics]
[+] Added Hiperdex [H-Sites]
[+] Added KomikGoCoID [ID]
[+] Added LewdManhwa [H-Sites]
[+] Added MangaZukiWhatStatus [EN]
[+] Added Mangalek [AR]
[+] Added Mangareceh [ID]
[+] Added MataKomik [ID]
[+] Added ProjectTime [EN-SC]
[+] Added Rawkuma [RAW]
[+] Added TvYManga [ES]
[-] Removed ChampionScans [EN-SC] (use ProjectTime instead)
[*] DoujinYosh: Fixed all (Issue #728)
[*] HeavenManga: Fixed url (Issue #703)
[*] HentaiFox: Fixed chapter download (Issue #658)
[*] HolyManga: Fixed url (Issue #703)
[*] Imgur: Fixed getting info (Issue #650)
[*] Komiku: Fixed getting manga info
[*] MangaLife: Ported to Lua script; Fixed all
[*] MangaNelo: Fixed all (Issue #691)
[*] MangaSusu: Fixed all (Issue #725)
[*] NiAdd: Fixed all
[*] ZeroScans: Fixed getting manga info (Issue #674)
[*] Fixed lua modules getting removed when there is no connection or when checking for module updates fails. -> Thank you dazedcat19
[*] Fixed built-in cloudflare bypass code. With this fix, cf_bypass has been removed as it is not needed anymore. -> Thank you dazedcat19
[*] Fixed WebP support for manga covers. -> Thank you dazedcat19
[*] Updated all packages, components and other thirdparty libraries -> Thank you dazedcat19
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.167.2...0.9.168.0
0.9.167.2 (07.12.2019)
[+] Added AdonisFansub [TR] -> Thank you Slasar41
[+] Added ArtemisNF [ES-SC] -> Thank you rs3mk
[+] Added BaekjinScans [Webcomics] -> Thank you Slasar41
[+] Added HunterFansub [ES-SC] -> Thank you rs3mk
[+] Added Mangakyo [ID] -> Thank you Slasar41
[+] Added Mangaseno [ID] -> Thank you Slasar41
[+] Added MangaSusu [ID] -> Thank you Slasar41
[+] Added ManhuaBox [Webcomics] -> Thank you Slasar41
[+] Added ManhuaID [Webcomics] -> Thank you Slasar41
[+] Added NewToki34 [Webcomics] -> Thank you excalibur1010
[+] Added OnManga [EN] -> Thank you Slasar41
[+] Added PojokManga [ID] -> Thank you Slasar41
[+] Added RawDevart [RAW] -> Thank you excalibur1010
[+] Added ReadRawManga [EN] -> Thank you Slasar41
[+] Added SekteKomik [Webcomics] -> Thank you Slasar41
[+] Added SDLGFansub [ES-SC] -> Thank you rs3mk
[+] Added TopManhua [Webcomics] -> Thank you Slasar41
[+] Added Wakamics [Webcomics] -> Thank you Slasar41
[+] Added template script for websites based on NineManga.
[+] Added template script for websites based on ReadMangaRU.
[*] BacaManga: Fixed chapter download (Issue #533) -> Thank you Slasar41
[*] ChibiManga: Fixed chapter download (Issue #565) -> Thank you Slasar41
[*] CopyPasteScanlation: Fixed chapter download -> Thank you Slasar41
[*] DoujinYosh: Fixed url (Issue #521) -> Thank you Slasar41
[*] HeavenManga: Fixed url (Issue #541) -> Thank you Slasar41
[*] HentaiFox: Fixed all (Issue #623) -> Thank you Slasar41
[*] HolyManga: Fixed url (Issue #541) -> Thank you Slasar41
[*] Kiryuu: Improved ads filter -> Thank you Slasar41/AbidZakaria
[*] LeviatanScans: Fixed chapter download (Issue #539) -> Thank you Slasar41
[*] Lhscans: Fixed chapter download (Issue #647) -> Thank you Slasar41
[*] MangaShiro: Fixed url (Issue #582) -> Thank you Slasar41
[*] MangaYosh: Fixed url (Issue #521) -> Thank you Slasar41
[*] Manhwa18: Fixed all (Issue #509) -> Thank you Slasar41
[*] MintMangaRU: Ported to Lua script; Fixed all (Issue #572)
[*] NineManga: Ported to Lua script; Fixed all (Issue #594)
[*] NineMangaBR: Ported to Lua script; Fixed all (Issue #594)
[*] NineMangaDE: Ported to Lua script; Fixed all (Issue #594)
[*] NineMangaES: Ported to Lua script; Fixed all (Issue #594)
[*] NineMangaIT: Ported to Lua script; Fixed all (Issue #594)
[*] NineMangaRU: Ported to Lua script; Fixed all (Issue #594)
[*] NinjaScans: Fixed getting manga info (Issue #478) -> Thank you Slasar41
[*] NManhwa: Fixed getting chapter list -> Thank you Slasar41
[*] PlotTwistNoFansub: Fixed getting chapter list -> Thank you Slasar41
[*] ReadMangaRU: Ported to Lua script; Fixed all (Issue #572)
[*] SelfMangaRU: Ported to Lua script; Fixed all (Issue #572)
[*] ScanFR: Fixed url (Issue #561)
[*] SubManga: Fixed all (Issue #529) -> Thank you Slasar41
[*] Toonkor: Fixed url (Issue #657)
[*] Fixed cf_bypass -> Big thanks to alzamer2 who fixed the thirdparty python script (cfscrape)!
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.167.1...0.9.167.2
0.9.167.1 (21.09.2019)
[+] Added Manhwa18 [RAW] (Issue #499) -> Thank you AbidZakaria
[+] Added WakaScan [FR] -> Thank you Slasar41
[-] Removed EyeOnManga [EN]
[-] Removed HoduComics [RAW]
[-] Removed HoshinoFansub [ES-SC]
[-] Removed HotChocolateScans [EN-SC]
[-] Removed HunterFansubScan [ES-SC]
[-] Removed IMangaScans [EN-SC]
[-] Removed IsekaiRaw [RAW]
[-] Removed JokerFansub [ES-SC]
[-] Removed KissDoujin [H-Sites]: Moved to 9hentai
[*] JapScan: Fixed url (Issue #494)
[*] HeavenManga: Fixed url (Issue #500) -> Thank you AbidZakaria
[*] KlikManga: Fixed getting manga list -> Thank you Slasar41
[*] MangaPus: Fixed getting manga list -> Thank you Slasar41
[*] NinjaScans: Fixed getting chapter list (Issue #497)
[*] SenseScans: Fixed url -> Thank you AbidZakaria
[*] Toonily: Fixed getting manga list -> Thank you Slasar41
[*] Fixed setting forbidden characters in save-to-path when changing multiple favorites (Issue #507)
[*] Fixed downloads not sorting when checking for new chapters (Issue #383)
[*] Localization Update: Indonesian
[*] Localization Update: Turkish
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.167.0...0.9.167.1
0.9.167.0 (15.09.2019)
[+] You can define a default action on double click in the favorites (open folder, show infos, rename or check new chapters)
[+] You can now change the save-to path for multiple favorites (Issue #10)
[+] Added CopyPasteScanlation [ES-SC] -> Thank you rs3mk
[+] Added KIDzScan [ES-SC]
[+] Added LeviatanScansEN [EN-SC] (Issue #361)
[+] Added MangaHato [RAW]
[+] Added MangaHost [PT] (Issue #448)
[+] Added MangaKomi [EN] (Issue #463)
[+] Added MangaReaderOnline [EN]
[+] Added MangaTensei [EN] (Issue #188)
[+] Added MangaWeek [EN]
[+] Added MangaZukiSite [EN]
[+] Added ManhwaScan [EN]
[+] Added OneShotScans [Webcomics] (Issue #297) -> Thank you Slasar41
[+] Added WoweScans [Webcomics] -> Thank you Slasar41
[+] Added template script for websites based on AnyACG.
[+] Added template script for websites based on Genkan.
[+] Added template script for websites based on MangaReaderOnline.
[+] AcademyVN: Ported to Lua script; Fixed url
[-] Removed AtelierDuNoir [EN-SC]: Chapters are linked to MangaDex
[-] Removed Authrone [EN]
[-] Removed GoodManga [EN]: The url redirects to MangaReader
[-] Removed MangaBB [EN]: The url redirects to MangaReader
[-] Removed MangaLike [EN]: Moved to MangaKomi (Issue #463)
[-] Removed OtakuIndo [ID]: Moved to Komiku (Issue #416)
[-] Removed RawQQ [RAW]: Moved to HanaScan
[-] Removed RawQV [RAW]: Moved to MangaHato (Issue #399)
[*] AcQQCom: Fixed chapter download
[*] BacaManga: Fixed chapter download (Issue #388) -> Thank you AbidZakaria
[*] Batoto: Ported to Lua script
[*] ChampionScans: Fixed url (Issue #411)
[*] ComicoCoID: Fixed chapter download
[*] ComicVn: Fixed url
[*] CopyPasteScanlation: Fixed chapter download
[*] DoujinYosh: Fixed chapter download (Issue #464) -> Thank you AbidZakaria
[*] ExHentai: Fixed url
[*] GManga: Fixed chapter download (Issue #365)
[*] HeavenManga: Fixed url (Issue #463) -> Thank you AbidZakaria
[*] HolyManga: Fixed url (Issue #463) -> Thank you AbidZakaria
[*] Imgur: Fixed download and added more gallery info
[*] KnightNoFansub: Fixed url (Issue #414)
[*] KoMBatch: Fixed chapter download
[*] Komiku: Fixed all (Issue #416) -> Thank you AbidZakaria
[*] KuManga: Ported to Lua script; Fixed all (Issue #146)
[*] LeitorNet: Fixed chapter download
[*] LeoManga: Fixed all
[*] LeviatanScans: Fixed all (Issue #361)
[*] Lhscans: Fixed chapter download (Issue #491) -> Thank you AbidZakaria
[*] MangaDex: Fixed downloading problems when title contained '<' or '>' (Issue #334)
[*] MangaFreak: Fixed all (Issue #326) -> Thank you AbidZakaria
[*] MangaShiro: Fixed url (Issue #405)
[*] MangaWindow: Ported to Lua script
[*] MangaYosh: Fixed chapter download (Issue #464) -> Thank you AbidZakaria
[*] ManhuaGui: Fixed chapter download (Issue #386) -> Thank you AbidZakaria
[*] ManhwaHentai: Fixed url
[*] ManyToons: Fixed url (Issue #429)
[*] OneTimeScans: Fixed url -> Thank you Slasar41
[*] PsychoPlay: Ported to Lua script; Fixed all (Issue #343)
[*] ReadComicsOnlineRU: Fixed all
[*] Toonkor: Fixed url (Issue #447)
[*] Tumangaonline: Set rooturl to http so cf_bypass works again (Issue #375)
[*] UnionMangas: Fixed url (Issue #382)
[*] ZManga: Fixed all (Issue #400)
[*] Fixed performance problems on startup while sorting the download list (Issue #383)
[*] Fixed favorites filter counter not updating correctly (Issue #423)
[*] FMD version is now displayed in the window title.
[*] cf_bypass: __cfduid cookie will be included as well because some websites load faster if the cookie is available.
[*] cf_bypass: HTTP proxies are now supported.
[*] Localization Update: French
[*] Localization Update: Indonesian
[*] Localization Update: Spanish
[*] Localization Update: Turkish
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.166.1...0.9.167.0
0.9.166.1 (26.07.2019)
[*] Hotfix: Fixed a problem with the favorites search.
[*] MangaDex: Added a ignore list for chapters that are linked to external websites. The first group in the ignore list is MangaPlus.
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.166.0...0.9.166.1
0.9.166.0 (26.07.2019)
[+] Added global options for Cloudflare Bypass.
[+] Added new advanced website setting to override the default "save to" path per website (Issue #246)
[+] Added a simple filter for favorites (show all, enabled or disabled) (Issue #203)
[+] Added new Lua module for debugging and statistics. Will be integrated into the other scripts in the future.
[+] Added 11Toon [RAW] (Issue #295) -> Thank you AbidZakaria
[+] Added AzoraManga [AR-SC] (Issue #281) -> Thank you AbidZakaria
[+] Added HanaScans [RAW] (Issue #270) -> Thank you AbidZakaria
[+] Added HunterFansubScan [ES-SC] -> Thank you rs3mk
[+] Added KoMBatch [ID] (Issue #355) -> Thank you AbidZakaria
[+] Added MaidMangaID [ID] (Issue #276) -> Thank you AbidZakaria
[+] Added Ngomik [ID] (Issue #113) -> Thank you AbidZakaria
[+] Added NinjaScans [EN-SC] (Issue #247) -> Thank you ElectroShade
[+] Added ReadManhua [EN-SC] (Issue #258) -> Thank you AbidZakaria
[+] Added Shoujohearts [EN-SC] (Issue #247) -> Thank you ElectroShade
[-] Removed DarkSkyScans [ES-SC] (use DarkskyProjects instead)
[-] Removed MangaArab [AR-SC] (Issue #293)
[-] Removed WoweScans [EN-SC] (Issue #300)
[*] BacaManga: Fixed chapter download (Issue #372) -> Thank you AbidZakaria
[*] DoujinYosh: Fixed chapter download (Issue #329)
[*] HentaiCafe: Ported to Lua script; Fixed chapter download (Issue #262)
[*] HentaiNexus: Include genre in getting manga info (Issue #335)
[*] HitomiLa: Fixed chapter download (Issue #287)
[*] KazeManga: Changed url (Issue #316) -> Thank you AbidZakaria
[*] Kyuroku: Fixed getting chapter list (Issue #253) -> Thank you AbidZakaria
[*] MangaInn: Ported to Lua script; Fixed chapter download (Issue #303)
[*] MangaKid: Changed url (Issue #317) -> Thank you AbidZakaria
[*] MangaLib: Fixed chapter download (Issue #292)
[*] MangaShiro (all websites): Fixed all (Issue #322, #331, #332)
[*] MangaYosh: Fixed chapter download (Issue #329)
[*] ManhwaHentai: Changed url; This website is a fake, origin website has closed down (Issue #314)
[*] MerakiScans: Fixed chapter download (Issue #265) -> Thank you AbidZakaria
[*] NewType: Ported to Lua script; Fixed all (Issue #141)
[*] Toonkor: Fixed all (Issue #269) -> Thank you AbidZakaria
[*] Tumangaonline: Fixed chapter download
[*] WestManga: Fixed getting summary in manga info tab (Issue #268) -> Thank you AbidZakaria
[*] ZManga: Moved to [ES-SC] -> Thank you rs3mk
[*] (Module) Madara.lua: Fixed chapter download for all websites (Issue #310)
[*] Current selection count in the Favorites tab will be shown in the status bar (Issue #202)
[*] Fixed download list not sorting if entries are added from any part of FMD except from the favorites list (Issue #353)
[*] Localitation Fix: Typo in all languages (Issue #344)
[*] Localization Update: French
[*] Localization Update: Indonesian
[*] Localization Update: Spanish
[*] Localization Update: Turkish
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.165.0...0.9.166.0
0.9.165.0 (10.06.2019)
[!] We changed the website database server to a new github repository. We're still uploading more database files so some might be missing at first.
[+] Added Localization: French -> Thank you jsoudeer
[+] Added DoujinYosh [H-Sites] (Issue #230)
[+] Added KlikManga [ID] (Issue #113)
[+] Added KnightNoFansub [ES-SC]
[+] Added KomikMama [ID] (Issue #174) -> Thank you AbidZakaria
[+] Added MangaArab [AR-SC]
[+] Added MangaCeng [ID] (Issue #230) -> Thank you AbidZakaria
[+] Added MangaFull [EN] (Issue #160) -> Thank you AbidZakaria
[+] Added MangaLike [EN] (Issue #175)
[+] Added MangaZukiOnline [EN] (Issue #222)
[+] Added ManhwaHand [H-Sites]
[+] Added PocketAngelScan [Webtoon] (Issue #165)
[+] Added ReadComicsOnlineRU [EN] (Issue @226) -> Thank you AbidZakaria
[+] Added SiXiangScans [EN-SC]
[+] Added TMOHentai [H-Sites] (Issue #83) -> Thank you AbidZakaria
[+] Added Toonily [Webtoon] (Issue #142)
[+] Added ZinManga [EN-SC]
[+] Added ZManga [ES] (Issue #171)
[*] HentaiChanRU: Fixed url (Issue #228)
[*] HentaiNexus: Fixed getting download links
[*] MangaChanRU: Fixed url (Issue #228)
[*] MangaKakalot: Fixed getting manga list (Issue #235)
[*] MangaNelo: Fixed getting manga list (Issue #235)
[*] MangaRock: Fixed not getting latest chapter sometimes (Issue #211)
[*] MangaRock: You can now set a different country in the options if some titles or chapters are missing because of region locks (Issue #212)
[*] MangaSail: Fixed url
[*] PecintaKomik: Fixed all (Issue #181) -> Thank you AbidZakaria
[*] TonariNoYoungJump: Fixed getting latest chapters (Issue #221)
[*] Tumangaonline: Fixed chapter download (Issue #227)
[*] YaoiChanRU: Fixed url (Issue #228)
[*] cf_bypass: If a cf_bypass for a website is already running, the other tasks for the same website wait 6 seconds before continuing.
[*] cf_bypass: Renamed the advanced settings section from DynHTTP to CloudflareBypass.
[*] cf_bypass: Added an option in the advanced settings to disable cf_bypass per website.
[*] cf_bypass: For each website a separate cf_bypass.txt will be generated.
[*] cf_bypass: The cf_bypass.exe shouldn't be a hanging process anymore if an error occurs. A simple error line will be written into a separate logfile.
[*] cf_bypass: When cf_bypass is being executed, a log entry will be made.
[*] cf_bypass: If a website causes cf_bypass to be called but fails, it will be disabled in the advanced settings for that website.
[*] cf_bypass: You can set a custom url for the cf_bypass in the advanced settings. When cf_bypass is called it will check the set url instead of the base url of the website. This is a workaround for websites that use Cloudflare for their imageservers.
[*] Localization Update: German
[*] Localization Update: Indonesian
[*] Localization Update: Turkish
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.164.0...0.9.165.0
0.9.164.0 (18.05.2019)
[+] Added a bypass machanism for Cloudflare. The manual workaround is still possible, but not needed as much as before.
[+] Added 3asqOrg [AR-SC] -> Thank you AbidZakaria
[+] Added DarkskyProjects [ES-SC]
[+] Added HentaiNexus [H-Sites] (Issue #139)
[+] Added IsekaiScan [EN] -> Thank you rs3mk
[+] Added IsekaiRaw [RAW] (Issue #135)
[+] Added LeviatanScans [ES-SC] -> Thank you rs3mk
[+] Added ManyToon [Webtoon] (Issue #125) -> Thank you AbidZakaria
[+] Added PlotTwistNoFansub [ES-SC] -> Thank you rs3mk
[-] Removed RawNeko [RAW] (Issue #135) -> You can transfer your favorites to IsekaiRaw when you updated the manga list
[*] ComicExtra: Fixed getting chapter list (Issue #151) -> Thank you AbidZakaria
[*] HentaiChanRu: Ported to Lua script; Fixed all
[*] KomikCast: Fixed all (Issue #122) -> Thank you AbidZakaria
[*] LeoManga: Ported to Lua script; Changed to new website -> Thank you AbidZakaria
[*] LetItGoScans: Moved from FoOlSlide to ComiCake (Issue #97)
[*] Mangacan: Ported to Lua script -> Thank you AbidZakaria
[*] MangaChanRu: Ported to Lua script; Fixed all (Issue #130)
[*] MangaEden: Fixed getting manga list (Issue #156)
[*] MangaEdenIT: Fixed getting manga list (Issue #156)
[*] MangaIndo: Ported to Lua script -> Thank you AbidZakaria
[*] MangaLib: Fixed all (Issue #140) -> Thank you AbidZakaria
[*] MangaToon: Check for premium chapters -> Thank you AbidZakaria
[*] Manga-Tr: Ported to Lua script; Fixed getting chapter list (Issue #54) -> Thank you AbidZakaria
[*] ManhwaCo: Fixed all (Issue #145)
[*] OtakuIndo: Changed URL from otakuindo.net to otakuindo.co (Issue #149)
[*] PervEden: Fixed getting manga list (Issue #156)
[*] PervEdenIT: Fixed getting manga list (Issue #156)
[*] Puzzmos: Ported to Lua script -> Thank you AbidZakaria
[*] RawQQ: Fixed some download problems (Issue #87)
[*] YaoiChanRU: Ported to Lua script; Fixed all
[*] Fixed an inconsistency when deleting the top entries in the manga list
[*] Fixed string format of NewChapter dialog (Issue #159)
[*] Fixed adding a manga to favorites by right-click setting wrong target folder (Issue #131)
[*] Localization Update: German
[*] Localization Update: Indonesian
[*] Localization Update: Portuguese
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.163.0...0.9.164.0
0.9.163.0 (14.04.2019)
[+] Added MangaToon [Multilanguage] -> Thank you AbidZakaria
[+] Added more date filters (6 months, 1-5 years, 10 years) (Partially implementation of Issue #78)
[+] Added options to toggle the jump behavior for "Downloads" and "Favorites" tab (Issue #27, #95)
[+] Added WebToons Challenge [Multilanguage] (Options->Websites->Options->WebToons->Toggle Checkbox) (Issue #57)
[-] Removed YamiTenshiNoFansub [ES]
[*] BacaManga: Changed URL (Issue #99) -> Thank you AbidZakaria
[*] KazeManga: Fixed all (Issue #85)
[*] Kiryuu: Fixed all (Issue #85)
[*] MangAs: Changed URL from 'mang.as' to 'mangas.pw' -> Thank you rs3mk
[*] MangaKu: Fixed chapter list (Issue #96)
[*] MangaPark: Fixed not getting H-manga info (Issue #70)
[*] MangaParkOrg: Fixed not getting H-manga info (Issue #70)
[*] MangaYosh: Fixed chapter download (Issue #73)
[*] TheCatScans: Changed URL from 'reader.thecatscans.com' to 'reader2.thecatscans.com' (Issue #75)
[*] Toonkor: Changed URL from 'toonkor.co' to 'toonkor.pink' (Issue #66) -> Thank you AbidZakaria
[*] WebToons: Ported to Lua script; Added multilanguage support (Options->Websites->Options->WebToons)
[*] Fixed "Add to Favorites" button behavior (Issue #92)
[*] Fixed button arrangement in "Transfer Favorites" dialog (Issue #76)
[*] Fixed "History/Yesterday" filter not showing any entries in "Downloads" tab (Issue #78)
[*] Localization Update: German
[*] Localization Update: Greek
[*] Localization Update: Indonesian
[*] Localization Update: Polish
[*] Localization Update: Portuguese
[*] Localization Update: Russian
[*] Localization Update: Spanish
[*] Localization Update: Turkish
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.162.0...0.9.163.0
0.9.162.0 (07.04.2019)
[+] Added BacaManga [IN] -> Thank you AbidZakaria
[+] Added KomikIndoWebId [IN]
[+] Added OtakuIndo [IN] -> Thank you AbidZakaria
[+] Added KomikManga [IN] -> Thank you AbidZakaria
[+] Added Komiku [IN] -> Thank you AbidZakaria
[+] Added Kyuroku [IN] -> Thank you AbidZakaria
[+] Added "(Un)Select All" buttons for website selection in options tab (Issue #28)
[+] Added an option to automatically sort the Downloads list when adding new tasks (Issue #17)
[-] Removed KomikOtaku [ID] (Issue #31)
[*] BoredomSociety: Fixed chapter numbering (Issue #53)
[*] Kiryuu: Fixed all (Issue #21)
[*] HeavenManga: Fixed all (Issue #42) -> Thank you AbidZakaria
[*] MangaID: Moved to BacaManga (Issue #31)
[*] MangaKita: Fixed all (Issue #31)
[*] NeuManga: Fixed manga info (Issue #31) -> Thank you AbidZakaria
[*] WestManga: Fixed all (Issue #31) -> Thank you AbidZakaria
[*] "Do you want to download manga list from the server?" dialog won't pop up anymore if you apply options
[*] Fixed the splitter base position alignment in manga info tab (Issue #52)
[*] Changed resizing behavior of the form when closing the application (Issue #52)
[*] Component backported: Virtual TreeView [5.5.3-R1] -> [4.8.7-R4] (Issue #12)
[*] Localization Update: German
[*] Localization Update: Indonesian
[*] Localization Update: Russian
[*] Localization Update: Turkish
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.161.0...0.9.162.0
0.9.161.0 (02.04.2019)
[!] Updater won't work because of some mistakes on my side. Please update manually. After that it should be working for further releases. Sorry.
[*] MangaPark: Fixed chapter download (Issue #9)
[*] MangaParkOrg: Fixed chapter download (Issue #9)
[*] ZeroScans: Fixed manga info (Issue #7)
[*] Fixed language files (Issue #11)
[*] Fixed updater (The wrong project was used)
[*] Component updated: Synapse [r160] -> [r209] - Fixes some general networking problems (Issue #7)
[*] Component updated: 7-Zip [18.01] -> [19.00] - Possible fix for issue #8
[*] Component backported: Lazarus/LCL [2.0.4] -> [1.8.4] - FMD isn't fully compatible with [2.x]
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.160.0...0.9.161.0
0.9.160.0 (31.03.2019)
[!] This release is a fork of https://github.com/riderkick/FMD, which will be maintained by SDXC. More information: https://github.com/fmd-project-team/FMD/blob/master/README.md
[!] Troubleshooting, Cloudflare workarounds and developer infos can be found here: https://github.com/fmd-project-team/FMD/wiki
[+] Added ScanOP [FR]
[-] Removed DejameProbar [ES]
[-] Removed MangaID [ID]
[-] Removed MangajinNoFansub [ES]
[-] Removed OtakuFile [ID]
[*] GManga: Fixed chapter download
[*] HentaiChanRU: Fixed URL
[*] HitomiLa: Fixed chapter download
[*] KirishimaFansub: Fixed URL
[*] Komikcast: Fixed all -> Thank you AbidZakaria
[*] LHTranslation: Fixed all -> Thank you AbidZakaria
[*] MangaFox: Fixed getting page links -> Thank you 1aam2am1
[*] MangaFoxFun: Fixed chapter download -> Thank you AbidZakaria
[*] MangaHubIO: Fixed chapter download -> Thank you AbidZakaria
[*] MangaShiro: Fixed all -> Thank you AbidZakaria
[*] Pururin: Fixed page links URL -> Thank you boppen
[*] ScanFR: Fixed manga info
[*] TonariNoYoungJump: You can now hide private chapters in the "Manga Info" tab (see "Options"->"Websites"->"Options")
[*] Fixed position of "New Chapters" dialog window when using more than one monitor
[*] Fixed LUA update URLs not being updated in luamodules.json
Full changes: https://github.com/fmd-project-team/FMD/compare/0.9.158.0...0.9.160.0
0.9.158.0 (06-01-2018)
[*] Minor bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.157.0...0.9.158.0
0.9.157.0 (29-12-2018)
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.156.0...0.9.157.0
0.9.156.0 (02-07-2018)
[+] Added DoujinsCom [H-Sites]
[+] Added PlusComico [RAW]
[+] Added ZingBox [EN]
[+] Added MangaRoom [EN]
[+] Added RawNeko [RAW]
[+] Added MangaHispano [SP]
[+] Added WestManga [ID]
[+] Added DM5 [RAW]
[+] Added TranslateWebtoon
[+] Added RawQV [RAW]
[+] Added AsmHentai [H-Sites]
[+] Added KomikGue [ID]
[+] Added Toonkor [RAW]
[+] Added 3asq [AR-SC]
[+] Added TruyenChon [VI]
[+] Added NetTruyen [VI]
[+] Added Mexat [AR-SC]
[-] Removed Bamtoki
[*] Tumangaonline, fixed all
[*] Mangavy, fixed all
[*] MyReadingManga, fixed manga info
[*] Lhscans, fixed manga info
[*] TruyenTranhTuan, fixed page order
[*] MangaID, fixed domain name
[*] UnionMangas, fixed list update
[*] HatigarmScans, fixed domain name
[*] HeavenManga, fixed domain name
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.155.0...0.9.156.0
0.9.155.0 (14-05-2018)
[+] Added ePub support
[+] Added Bamtoki [RAW]
[+] Added RawQQ [RAW]
[+] Added AllHentai [RU]
[+] Added ComicExtra [EN]
[+] Added ReadComicBooksOnline [EN]
[+] Added SOSScanlation [SP-SC]
[+] Added MangaHereIO [EN]
[+] Added SiberOwl [EN-SC]
[+] Added ComicoCoID [ID]
[+] Added IMangaScans [EN-SC]
[+] Added InManga [SP]
[-] Removed MangaSh
[*] MangaKu, fixed domain name
[*] JapScan, fixed download
[*] Pzykosis666HFansub, fixed domain name
[*] ReadComicOnline, set high image quality
[*] MangaDex, fixed all
[*] CentralDeMangas, fixed domain name
[*] Mangaf, fixed domain name
[*] AcademyVN, fixed domain name
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.154.0...0.9.155.0
0.9.154.0 (15-04-2018)
[+] Added GodsRealmScan [SP-SC]
[+] Added IlluminatiManga [EN-SC]
[+] Added MangaFreak [EN]
[+] Added MangaHereFun [EN]
[+] Added MangaAll [RAW]
[+] Added MangaTrue [RAW]
[-] Removed MangaBackup
[*] MangaTail, changed domain
[*] MangaDex, fixed all
[*] Tapas, fixed manga list update
[*] MyReadingManga, fixed download
[*] MangaHere, fixed manga list update
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.153.0...0.9.154.0
0.9.153.0 (08-04-2018)
[+] Added SoManga [PT]
[+] Added ReadMangaEU [EN]
[+] Added MangaDoom [EN]
[+] Added RawMangaUpdate [RAW]
[+] Added ManhuaTr [TR]
[+] Added MangaVadisi [TR]
[+] Added Manga99 [EN]
[+] Added MangaRawOnline [RAW]
[+] Added AcQQCom [RAW]
[+] Added MangaLib [RU]
[+] Added DesuMe [RU]
[+] Added Shakai [RU]
[+] Added MangaOnlineBiz [RU]
[+] Added MangaOnlineToday [EN]
[+] Added TrashScanlations [EN-SC]
[+] Added HatigarmScans [EN-SC]
[+] Added BunnysScans [EN-SC]
[+] Added CanisMajorScans [EN-SC]
[+] Added HoshikuzuuScans [EN-SC]
[+] Added YaoiIsLife [EN-SC]
[+] Added FujoshiBitches [EN-SC]
[+] Added TwistedHelScans [EN-SC]
[+] Added TapTrans [EN-SC]
[+] Added ZeroScans [EN-SC]
[+] Added WhiteCloudPavilion [EN-SC]
[+] Added EvilFlowers [EN-SC]
[+] Added LoliVault [SP-SC]
[+] Added CoYuHi [SP-SC]
[+] Added SKSubs [SP-SC]
[+] Added ComicVn [VI]
[+] Added MangaSupa [EN]
[+] Added MangaFoxCom [EN]
[+] Added MangaKid [ID]
[+] Added MangaCast [ID]
[-] Removed MangaTraders
[*] MangaDex, fixed all
[*] Hentai2Read, fix domain
[*] Imgur, fix download
[*] LHTranslation, fixed all
[*] HeavenManga, change domain
[*] LeitorNet, added manga list update
[*] JapScan, change domain
[*] UnionMangas, change domain
[*] NeuManga, fix manga info
[*] Updated Russian localization
[*] Cloudflare, fix bypass
[*] Fixed crash when searching website by name
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.152.0...0.9.153.0
0.9.152.0 (28-02-2018)
[!] Fix updater doesn't extract the update package after download.
You have to download this version manually or extract updatepakage.7z
Full changes: https://github.com/riderkick/FMD/compare/0.9.151.0...0.9.152.0
0.9.151.0 (28-02-2018)
[+] Added MangajinNoFansub [SP-SC]
[+] Added TenManga [EN]
[*] Updated Portuguese (Brazil) translation by Havokdan
[*] Updated Spanish translation by rs3mk
[*] Updated Turkish translation by Tmp341
[*] Madokami, fixed login
[*] MangaDex, fixed all
[*] Disable coloring on disabled item in favorites list
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.150.0...0.9.151.0
0.9.150.0 (26-02-2018)
[+] Added HeavenManga [EN]
[+] Added Nightow [SP-SC]
[+] Added TrueColorsScan [SP-SC]
[*] SeinagiFansub, fixed domain
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.149.0...0.9.150.0
0.9.149.0 (26-02-2018)
[!] Separated settings for each website
[+] Added KomikStation [ID]
[+] Added SilentSkyScans [EN-SC]
[+] Added Yuri-ism [EN-SC]
[+] Added SaikoScans [EN-SC]
[+] Added RoseliaScanlations [EN-SC]
[+] Added VortexScans [EN-SC]
[+] Added PhoenixSerenade [EN-SC]
[+] Added Riceballicious [EN-SC]
[+] Added ForgottenScans [EN-SC]
[+] Added MangaichiScan [EN-SC]
[+] Added DarkSkyScan [SP-SC]
[+] Added NozominoFansub [SP-SC]
[+] Added add ManHuaTai [Raw]
[+] Added add Rawdevart [Raw]
[*] Updated Indonesian localization
[*] Updated Turkish localization
[*] Fix JPG to PNG conversion
[*] MangaHubIO, fix download
[*] MangaDex, add chapter list pagination
[*] VnSharing, fix update list
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.148.0...0.9.149.0
0.9.148.0 (20-02-2018)
[+] Added MyMangaIO [FR]
[+] Added MangaHub [EN]
[+] Added MangaBB [EN]
[+] Added AntisenseScans [EN-SC]
[+] Added TheCatScans [EN-SC]
[+] Added DeathTollScans [EN-SC]
[+] Added IdkScans [SP-SC]
[*] Tumangaonline, show scanlation group
[*] Updated Spanish translation
[*] Added summary to manga list hint
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.147.0...0.9.148.0
0.9.147.0 (19-02-2018)
[+] Added LeitorNet [PT]
[*] Restore window size on startup
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.146.0...0.9.147.0
0.9.146.0 (18-02-2018)
[+] Added XAnimeSeduccion [SP-SC]
[+] Added JokerFansub [SP-SC]
[+] Added PatyScans [SP-SC]
[*] MangaKu, fixed all
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.145.0...0.9.146.0
0.9.145.0 (17-02-2018)
[*] Update Indonesian localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.144.0...0.9.145.0
0.9.144.0 (17-02-2018)
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.143.0...0.9.144.0
0.9.143.0 (17-02-2018)
[*] Update Indonesian localization
[*] Update Turkish localization
[*] Update Russian localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.142.0...0.9.143.0
0.9.142.0 (16-02-2018)
[+] Added ManhwaCo [EN-SC]
[+] Added HentaiHere [H]
[*] Fixed update list issue
[*] Update Indonesian localization
[*] Update Russian localization
[*] Update Turkish localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.141.0...0.9.142.0
0.9.141.0 (15-02-2018)
[+] Added new updater only to extract update package
[*] Download new version in the background
[*] Download mangalist database(s) in the background
[*] Pururin, change domain
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.140.0...0.9.141.0
0.9.140.0 (14-02-2018)
[+] Added SeaOtterScans [EN-SC]
[+] Added MangaSh
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.139.0...0.9.140.0
0.9.139.0 (13-02-2018)
[+] Added SelfMangaRU [RU]
[+] Added MerakiScans [EN-SC]
[*] MangaOnlineTo, change domain
[*] Update Turkish localization
[*] Fixed empty website selection in advanced website options
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.138.0...0.9.139.0
0.9.138.0 (13-02-2018)
[+] Added option to delete completed task on close
[+] Added option to convert PNG images to JPEG
[+] Added NeuManga [ID]
[+] Added HotChoholateScans [EN-SC]
[+] Added LetItGoScans [EN-SC]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.137.0...0.9.138.0
0.9.137.0 (12-02-2018)
[+] Added ChibiManga [EN-SC]
[*] Fixed updater can't find 7za.exe, you need to download this release manually
[*] Update Turkish localization
[*] Update Indonesian localization
[*] Update Russian localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.136.0...0.9.137.0
0.9.136.0 (12-02-2018)
[+] Added website modules updater
[+] Added RavenScans [SP-SC]
[+] Added KirishimaFansub [SP-SC]
[+] Added NoraNoFansub [SP-SC]
[+] Added YamiTenshiNoFansub [SP-SC]
[+] Added Mangavy [ID]
[-] Removed MangaWorksFansub
[-] Removed MasterPieceScans
[-] Removed R15TeamScanlation
[*] TonarinoYoungJump: fixed all
[*] Hentai2Read: fixed info
[*] Mangadex: limit maximum connections to 4
[*] Update Turkish localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.135.0...0.9.136.0
0.9.135.0 (10-02-2018)
[+] Added option to convert WebP to PNG/JPEG
[-] Removed AnimeA
[-] Removed CentrumMangi_PL
[-] Removed DM5
[-] Removed Imanhua
[-] Removed MangaLib_PL
[-] Removed MangaAr
[-] Removed MangaAt
[*] MangaStream: fixed download
[*] Update Russian localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.134.0...0.9.135.0
0.9.134.0 (08-02-2018)
[+] Added Lhscans [RAW]
[+] Added Mangakakalot/Manganelo [EN]
[+] Added Mangawindow [EN]
[*] MangaStream: fixed domain
[*] Update Turkish localization
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.133.0...0.9.134.0
0.9.133.0 (07-02-2018)
[!] Added Lua support to add website module at runtime
[+] Added left download toolbar to move selected download(s). Options > View
[+] Added WorldThree [EN-SC]
[+] Added PsychoPlay [EN-SC]
[+] Added MangaZukiRaws [Raws]
[+] Added MangaDeep [EN]
[+] Added Imgur
[-] Removed MangaSpy
[-] Removed MangaIce
[*] View manga info preserve saveto location from download or favorite
[*] MangaZuki: fixed all
[*] Comico: fixed all
[*] MangaGo: fixed all
[*] Tumangaonline: fixed all
[*] MangaAe: fixed download
[*] Cloudflare check added to all network events
[*] Update Russian localization (by TokcDK)
[*] Update Turkish localization (by Tmp341)
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.132.0...0.9.133.0
0.9.132.0 (29-01-2018)
[*] LHTranslation, fix chapter order
[*] Mangadex, fix download
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.131.0...0.9.132.0
0.9.131.0 (27-01-2018)
[+] Added Mangarock [EN]
[+] Added LHTranslation [EN-SC]
[+] Added ChampionScans [EN-SC]
[+] Added Mangaf [AR]
[+] Added WieManga [DE]
[+] Added MangaTube [DE]
[+] Added AtelierDuNoir [EN-SC]
[+] Added MangaDex [EN]
[+] Added MangaHub [RU]
[+] Added Turkish translation by Tmp341
[+] Added WebP codec library (libwebp)
[+] Enabled high DPI awareness
[*] MangaTown, exclude ads page
[*] MangaChan, fix domain
[*] UnionMangas, fix download
[*] Update localization [EN, RU]
[*] Various changes and bug fixes
Full changes: https://github.com/riderkick/FMD/compare/0.9.130.0...0.9.131.0
0.9.130.0 (23-01-2018)
[+] Added transfer favorites
[+] Added rename favorites
[+] Added Subapics [ID]
[+] Added MangaDesu [ID]
[+] Added MangaKita [ID]
[+] Added Whiteoutscans [EN-SC]
[+] Added DokiFansubs [EN-SC]
[*] NineManga: fixed all
[*] MangaInn: fixed all
[*] MangaLife: fixed domain
[*] MangaId: fixed download
[*] Madokami: fixed chapter title
[*] Jaiminisbox: fixed downoad
[*] MangaPark: fixed title
[*] Tsumanga: fixed update list
[*] Kumanga: fixed all
[*] RawSenManga: fixed all
[*] SenManga: fixed all