forked from AllMangasReader-dev/AMR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelease.html
1875 lines (1875 loc) · 72.3 KB
/
release.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
All Mangas Reader Release Note
</title>
<link href="css/jquery.treeview.css" rel="stylesheet" type="text/css">
<link href="css/amr_style.css" rel="stylesheet" type="text/css">
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.treeview.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.9.2.custom.min.js" type="text/javascript"></script>
<script src="js/analytics.js" type="text/javascript"></script>
<script src="js/innermenu.js" type="text/javascript"></script>
<script src="js/release.js" type="text/javascript"></script>
<style type="text/css">
ul.c1 {list-style-type:none}
a, a:active, a:hover {color:black}
</style>
</head>
<body>
<div id="header">
<div id="subheader">
<img class="imglogo" src="img/icon-32.png" width="100" alt="Icon">
<h1>
All Mangas Reader Release Note
</h1>
</div>
</div>
<div id="menunav">
<div id="menuitems">
<ul>
<li>
<a href="faq.html">Help</a>
</li>
<li class="selected">
Release note
</li>
<li class="last">
<a href="dev.html">Development</a>
</li>
</ul>
</div>
</div>
<div id="corpse">
<div id="navigation">
<ul id="nav">
<li>
<a class="menu main" rel="release">Release</a>
<ul>
<li>
<a class="menu" rel="release v5">Version 1.5</a>
<ul>
<li>
<a class="menu" rel="release v5 r50">Version 1.5.0</a>
</li>
<li>
<a class="menu" rel="release v5 r51">Version 1.5.1</a>
</li>
</ul>
</li>
<li>
<a class="menu" rel="release v4">Version 1.4</a>
<ul>
<li>
<a class="menu" rel="release v4 r40">Version 1.4.0</a>
</li>
</ul>
</li>
<li>
<a class="menu" rel="release v3">Version 1.3</a>
<ul>
<li>
<a class="menu" rel="release v3 r314">Version 1.3.14</a>
</li>
<li>
<a class="menu" rel="release v3 r313">Version 1.3.13</a>
</li>
<li>
<a class="menu" rel="release v3 r312">Version 1.3.12</a>
</li>
<li>
<a class="menu" rel="release v3 r311">Version 1.3.11</a>
</li>
<li>
<a class="menu" rel="release v3 r310">Version 1.3.10</a>
</li>
<li>
<a class="menu" rel="release v3 r39">Version 1.3.9</a>
</li>
<li>
<a class="menu" rel="release v3 r38">Version 1.3.8</a>
</li>
<li>
<a class="menu" rel="release v3 r37">Version 1.3.7</a>
</li>
<li>
<a class="menu" rel="release v3 r36">Version 1.3.6</a>
</li>
<li>
<a class="menu" rel="release v3 r34">Version 1.3.4</a>
</li>
<li>
<a class="menu" rel="release v3 r33">Version 1.3.3</a>
</li>
<li>
<a class="menu" rel="release v3 r32">Version 1.3.2</a>
</li>
<li>
<a class="menu" rel="release v3 r31">Version 1.3.1</a>
</li>
<li>
<a class="menu" rel="release v3 r30">Version 1.3.0</a>
</li>
</ul>
</li>
<li>
<a class="menu" rel="release v2">Version 1.2</a>
<ul>
<li>
<a class="menu" rel="release v2 r299">Version 1.2.99</a>
</li>
<li>
<a class="menu" rel="release v2 r220">Version 1.2.20</a>
</li>
<li>
<a class="menu" rel="release v2 r219">Version 1.2.19</a>
</li>
<li>
<a class="menu" rel="release v2 r218">Version 1.2.18</a>
</li>
<li>
<a class="menu" rel="release v2 r217">Version 1.2.17</a>
</li>
<li>
<a class="menu" rel="release v2 r216">Version 1.2.16</a>
</li>
<li>
<a class="menu" rel="release v2 r215">Version 1.2.15</a>
</li>
<li>
<a class="menu" rel="release v2 r214">Version 1.2.14</a>
</li>
<li>
<a class="menu" rel="release v2 r213">Version 1.2.13</a>
</li>
<li>
<a class="menu" rel="release v2 r212">Version 1.2.12</a>
</li>
<li>
<a class="menu" rel="release v2 r211">Version 1.2.11</a>
</li>
<li>
<a class="menu" rel="release v2 r210">Version 1.2.10</a>
</li>
<li>
<a class="menu" rel="release v2 r29">Version 1.2.9</a>
</li>
<li>
<a class="menu" rel="release v2 r28">Version 1.2.8</a>
</li>
<li>
<a class="menu" rel="release v2 r27">Version 1.2.7</a>
</li>
<li>
<a class="menu" rel="release v2 r26">Version 1.2.6</a>
</li>
<li>
<a class="menu" rel="release v2 r23">Version 1.2.3</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div id="subcorpse">
<div id="maincorpse">
<div id="release" class="article">
<h2>
Release
</h2>
<div id="v5" class="article">
<h3>
Version 1.5
</h3>
<p>
From this version, All Mangas Reader is open source (licence has not been yet chosen) and source code is hosted on <a href="https://github.com/AllMangasReader-dev/AMR">GitHub</a>.
</p>
<p>
This will make AMR evolve faster ! Anyone can fork All Mangas Reader's code and fix issues. If you want to participate, ask to enter the developer team on the forum !
</p>
<p>
AMR is now automatically packaged from GitHub code and the release process is lighter than before. We should be able to produce more versions and to fix bugs faster.
</p>
<p>
A beta channel has been created to allow anyone to have the latest fix in their AMR. If you use the beta channel. Your AMR will be updated each time a commit is made on GitHub. You should encounter bugs, regression but you will help us a lot by being able to declare new issues on GitHub !
<br />Note that if you are on the beta channel, you will have to uninstall AMR before returning to stable channel. Both versions can be downloaded from AMR's main website.
</p>
<p>
The purpose of AMR V1.5 was to migrate the extension to Manifest V2. Google Chrome changed their security policy and whole parts of the extension were not compliant with these requirements. We had to recode a lot of things...
</p>
<div id="r50" class="article">
<h3>
Version 1.5.0
</h3>
<p>This was the test version for migrating AMR manifest to v2 and to experiment recoding of AMR on GitHub. It will not be published officially.</p>
</div>
<div id="r51" class="article">
<h3>
Version 1.5.1
</h3>
<p>
New features: <br />
<ul>
<li>New clear all categories button (<a href='https://github.com/AllMangasReader-dev/AMR/issues/39'>issue #39</a>).</li>
<li>Use of UTF-8 as default coding (Fixes <a href='https://github.com/AllMangasReader-dev/AMR/issues/38'>issue #38</a>).</li>
<li>Caching all the websites implementations for faster deliver of the implementations (<a href='https://github.com/AllMangasReader-dev/AMR/issues/2'>issue #2</a>).</li>
<li>Popup loads faster than ever !</li>
</ul>
</p>
<p>
Bug fix: <br />
<ul>
<li>Submanga domain issue (commit <a href='https://github.com/AllMangasReader-dev/AMR/commit/9608b20c400e5579d775bb41f13f1fa031a4b1f6'>9608b20</a>).</li>
<li>Fix <a href='https://github.com/AllMangasReader-dev/AMR/issues/43'>issue #43</a>.</li>
</ul>
</p>
<p>
Changes: <br />
<ul>
<li>Removed the use of prototype (<a href='https://github.com/AllMangasReader-dev/AMR/issues/15'>issue #15</a>).</li>
<li>Validation of the html pages as HTML5.</li>
<li>Use of webnotifications instead html notifications (fixes <a href='https://github.com/AllMangasReader-dev/AMR/issues/42'>issue #42</a>).</li>
<li>Minimun version of chrome to version 18.0.</li>
</ul>
</p>
<p>Complete list of all the changes since version 1.5.0 in <a href='https://github.com/AllMangasReader-dev/AMR/tree/1.5.1'>GitHub</a></p>
<p>
Enjoy !
</p>
</div>
</div>
<div id="v4" class="article">
<h3>
Version 1.4
</h3>
<p>
From this version, All Mangas Reader does not include any websites implementations.
They are all hosted at
<a href="http://community.allmangasreader.com/">All Mangas Reader Community</a>
</p>
<p>
This will make AMR evolve faster ! On this community, developers can update
websites implementations as soon as bugs appear. Validators validate implementations
if they work and release it so any AMR user will have it in his AMR without
any new release of the extension !
</p>
<p>
Every user can report issues or website requests on this new website to
help the community
</p>
<p>
I hope you will enjoy these new features !
</p>
<div id="r40" class="article">
<h3>
Version 1.4.0
</h3>
<p>
New features :
</p>
<ul>
<li>
Websites implementations are hosted on
<a href="http://community.allmangasreader.com/">All Mangas Reader Community</a>
</li>
<li>
Option to have notifications when websites are updated or when new websites
are released.
</li>
<li>
Supported websites tab in the option page now contains :
<ul>
<li>
Developer name : I published all previous websites on AMR Community even
if i didn't develop all these implementations.
</li>
<li>
Revision : latest version number of the implementation. If you are a developer
or a validator, when you test a non released version of a website, this
revision number turns as temporary and is replaced by a button "Release"
which allows you to replace your temporary version by the latest released
and continue receiving updates for this website.
</li>
<li>
Discuss : View the discussion thread on AMR Community for this implementation
revision
</li>
</ul>
I encourage you to participate on AMR Community, the more we are, the
faster AMR will grow !
</li>
</ul>
<p>
New Websites : This section won't exist anymore in the release note as
websites implementations does not rely on the extension code anymore !
<br>
Note : just before releasing this version, some developers already tried
it in beta and already added a few websites and fix bugs so new websites
:
<strong>
Manga Panda, 13Th Hour Scanlations, amanteanime, Extras Scans, Kirei Cake
and Twin Dragons no Fansub
</strong>
... Enjoy !
</p>
<p>
<strong>
Note
</strong>
: If The extension does not seems to work properly at once... wait a little,
all implementations must be retrieved from All Mangas Reader Community,
so the first load could be a bit long...
</p>
</div>
</div>
<div id="v3" class="article">
<h3>
Version 1.3
</h3>
<p>
From this version, All Mangas Reader is no more hosted on Google Chrome
Extension Gallery. Indeed, Google has removed AMR from its gallery.
</p>
<p>
If you still have a v1.2.xx version installed, you need to unistall it
before using v1.3.xx.
</p>
<div id="r314" class="article">
<h3>
Version 1.3.14
</h3>
<p>
New features :
</p>
<ul>
<li>
Store websites manga lists in local webdatabase. As local webdatabase
can have unlimited storage, it is more suitable to have manga lists there.
Manga lists where stored in localStorage which is limited to 5Mb. That
was creating a lot of bugs when more than 25 websites were activated.
<br>
<strong>
There is no more limitations on the number of activated websites !
</strong>
All websites manga lists took about 4Mo space in webdatabase.
</li>
<li>
Option to disable personal statistics tracking
</li>
<li>
Add a "Stop updating" button on each manga.
<br>
There was a "Stop Follow updates" button which allows you to prevent AMR
from notifying you about updates on a manga. Stop updating prevent AMR
from checking latest published chapters for a manga. Mangas on which "Stop
updating" is on appeared darkened in the popup
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Fix websites bugs on :
<ul>
<li>
MangaFox (antimo fix) : I hope they won't update their website just after
AMR release as usual...
</li>
<li>
Batoto
</li>
<li>
MangasProject (nwT fix)
</li>
<li>
UnixManga
</li>
<li>
ReadManga.ru / AdultManga.ru (Mynglam fix)
</li>
<li>
CXCScans (braiam fix)
</li>
<li>
Anime story
</li>
<li>
Vortex scans (braiam fix)
</li>
<li>
TheSpectrum
</li>
<li>
EatManga
</li>
<li>
Manga-Ar
</li>
<li>
Animeextremist
</li>
<li>
Manga2u (which is now Mangatoyou)
</li>
</ul>
</li>
<li>
Fix synchronization bug (Nifiloa fix)
</li>
<li>
Fix notification popup height
</li>
<li>
Remove a console.log which was logging a line on every webpage...
</li>
</ul>
<p>
New Websites (implementations by braiam):
</p>
<ul class="icons">
<li>
<img src="img/japanzai.png" alt="Icon">
Ecchi Japanzai
</li>
<li>
<img src="img/imperial.png" alt="Icon">
Imperial scans
</li>
</ul>
<br>
<p>
<strong>
What's next :
</strong>
<br>
I took time to make this release because I have less free time than I
used to have...
<br>
Next release (unless big issues appears) will be 1.4 !
<br>
In 1.4, all websites implementations will be removed from AMR. They will
be hosted on a new website :
<strong>
All Mangas Reader Community
</strong>
.
<br>
This collaborative website will allow you to have websites implementations
up-to-date even if I don't release a new AMR version :
</p>
<ul>
<li>
developers will be able to post their updates which will be released automatically
(without a new AMR release) after being validated. They will be able to
add new implementations too
</li>
<li>
validators will have in charge to test developers implementation and to
release them
</li>
<li>
users will be able to post issues concerning websites implementations.
</li>
</ul>
This website will use your login password on the forum. As more and more
developers are publishing fix for websites on the forum, I think they deserve
a proper way to update website and release it as soon as possible. Hope
you will enjoy it !
</div>
<div id="r313" class="article">
<h3>
Version 1.3.13
</h3>
<p>
New features :
</p>
<ul>
<li>
Personal statistics : the
<img src="img/pstat.png" alt="Icon">
button access your personal statistics. Included :
<ul>
<li>
History of manga read (date + time spent reading)
</li>
<li>
Stats by manga (time spent reading)
</li>
<li>
Global stats (average chapters read per day / month, average time spent
reading per day / month, most read manga, favorite website, ...)
</li>
<li>
Graphs to represent your reading
</li>
</ul>
<strong>
Note :
</strong>
Your statistics can't be synchronized over your computers. You will have
to wait for the new website on which you will be able a synchronize and
share your manga list and reading history in your account.
<br>
<br>
</li>
<li>
New option to not display a badge with the number of unread manga but
display AMR's icon in color if there are new mangas and in grey if not.
</li>
<li>
Each manga stores the last time a new chapter has been published. An option
allows you to display a calendar icon representing the last time a new
chapter has been published (
<img src="img/day.png" title="Last time new chapter : 2 days ago" alt="Icon">
,
<img src="img/week.png" title="Last time new chapter : 3 weeks ago" alt="Icon">
or
<img src="img/month.png" title="Last time new chapter : 4 months ago"
alt="Icon">
). If not used, a tooltip will appear on the manga name telling : "Last
time new chapter : 2 weeks ago" for example
<br>
<strong>
Note :
</strong>
This functionnality will be effective when the next chapter of your mangas
will arrive.
<br>
<br>
</li>
<li>
Change all skins ! (option page has been rethinked). You can now access
all AMR functionalities through a menu bar in all AMR's pages !
</li>
<li>
Option to mark a chapter as read once it has been fully downloaded
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Fix websites bugs on :
<ul>
<li>
MangaFox (Xibiter fix)
</li>
<li>
Batoto : you will have to readd all your batoto mangas.
<br>
<strong>
Note :
</strong>
To keep good relations with batoto admins, ads are not removed from chapters
page even if the option is checked. While updating chapters, batoto chapters
are updated one by one. I recommend you to set the chapters update frequency
at least to 6 hours to not flood Batoto.
<br>
<br>
</li>
<li>
MangasProject
</li>
<li>
MangaTraders
</li>
<li>
CityManga
</li>
<li>
UnixManga
</li>
<li>
Bacamanga.web.id moved to Komikid.com
</li>
<li>
MangaHere
</li>
<li>
MangaHead
</li>
<li>
PunchManga
</li>
<li>
Mangable
</li>
<li>
ReadManga.ru / AdultManga.ru
</li>
<li>
MangaExceed
</li>
</ul>
</li>
<li>
Popup in a new tab : fix overflow on bottom panel
</li>
<li>
Take special chars into account to group mangas
</li>
<li>
Prevent AMR from freezing while updating chapters.
</li>
</ul>
<p>
New Websites (implementations by jaydee864):
</p>
<ul class="icons">
<li>
<img src="img/animexis.png" alt="Icon">
Animexis
</li>
<li>
<img src="img/mcreborn.png" alt="Icon">
MC Reborn
</li>
<li>
<img src="img/vortex.png" alt="Icon">
Vortex Scans
</li>
</ul>
</div>
<div id="r312" class="article">
<h3>
Version 1.3.12
</h3>
<p>
New features :
</p>
<ul>
<li>
Notify user when he reaches the bottom of the latest published chapter.
</li>
<li>
Spin the sharingan while loading chapters list (with an option to desactivate)
</li>
<li>
Save bandwidth by loading updates one by one (with an option to activate
it)
</li>
<li>
Check manga on browser startup (with an option to activate it)
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Fix TheSpectrum
</li>
<li>
Fix ClockWorkLies
</li>
<li>
Fix Batoto
</li>
<li>
Fix MangaFox
</li>
</ul>
<p>
New Websites (implementations by mexicano21):
</p>
<ul class="icons">
<li>
<img src="img/mangaeden.png" alt="Icon">
MangaEden
</li>
<li>
<img src="img/titania.png" alt="Icon">
Titania Scanlations
</li>
<li>
<img src="img/mangatraders.png" alt="Icon">
Manga Traders
</li>
<li>
<img src="img/mangaexceed.png" alt="Icon">
Manga Exceed
</li>
</ul>
</div>
<div id="r311" class="article">
<h3>
Version 1.3.11
</h3>
<p>
New features :
</p>
<ul>
<li>
Better zooming functionnality.
</li>
<li>
Can choose 5 and 10 seconds before closing notification
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Fix MangaStream
</li>
</ul>
<p>
New Websites :
</p>
<ul class="icons">
<li>
<img src="img/readmanga.png" alt="Icon">
AdultManga (in russian) (implementation developped by Mynglam).
</li>
</ul>
</div>
<div id="r310" class="article">
<h3>
Version 1.3.10
</h3>
<p>
New features :
</p>
<ul>
<li>
If at the bottom of the page, right key go to next chapter. You can desactivate
this feature in the option page.
</li>
<li>
Notifications system : when a new chapter is published, a notification
appears. You can desactivate this feature in the option page. (implementation
by mexicano21)
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Better zoom feature (while pressing + or - keys). Keep current scan centered
while zooming.
</li>
<li>
Fix RedHawkScans
</li>
<li>
Fix EatManga
</li>
<li>
Fix Animea
</li>
</ul>
<p>
New Websites :
</p>
<ul class="icons">
<li>
<img src="img/mangahead.png" alt="Icon">
MangaHead (implementation developped by Mexicano21). There are two websites
for this one (one for english scans and one for raw ones.)
</li>
<li>
<img src="img/Batoto.png" alt="Icon">
Batoto (implementation based on Jamie Schembri's script)
</li>
<li>
<img src="img/cxcscans.png" alt="Icon">
CXCScans (implementation developped by Mexicano21)
</li>
<li>
<img src="img/simplescans.png" alt="Icon">
Simple Scans (implementation developped by Mexicano21)
</li>
<li>
<img src="img/imangascans.png" alt="Icon">
Imangascans (implementation developped by Mexicano21)
</li>
<li>
<img src="img/fthscans.png" alt="Icon">
For The Halibut (implementation developped by Mexicano21)
</li>
<li>
<img src="img/evilflowers.png" alt="Icon">
Evil Flowers (implementation developped by Mexicano21)
</li>
<li>
<img src="img/easygoing.png" alt="Icon">
Easy Going (implementation developped by Mexicano21)
</li>
<li>
<img src="img/foolrulez.png" alt="Icon">
FoOlRulez (implementation developped by Mexicano21)
</li>
</ul>
</div>
<div id="r39" class="article">
<h3>
Version 1.3.9
</h3>
<p>
New features :
</p>
<ul>
<li>
Change bookmarked scans' border color : grey...
</li>
<li>
WASD support (use these keys to scroll)
</li>
<li>
View AMR's version when mouse is hover AMR's icon in google chrome extension
bar
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Manga Here fix
</li>
</ul>
<p>
New Websites :
</p>
<ul class="icons">
<li>
<img src="img/clockworklies.png" alt="Icon">
Clockwork Lies (implementation developped by QaZZy)
</li>
<li>
<img src="img/japanzai.png" alt="Icon">
Japanzai & XscansX (implementation developped by Mexicano21)
</li>
<li>
<img src="img/mangacurse.png" alt="Icon">
Mangacurse (implementation developped by Mexicano21)
</li>
<li>
<img src="img/trinitybakuma.png" alt="Icon">
Trinity BAKumA (implementation developped by Mexicano21)
</li>
</ul>
</div>
<div id="r38" class="article">
<h3>
Version 1.3.8
</h3>
<p>
New features :
</p>
<ul>
<li>
When AMR's toolbar is hidden (after clicking on the hide button) it will
auto show for 2 seconds when the mouse move in the top of the page.
</li>
<li>
Add a "unbookmark button" in the "bookmark" popup
</li>
<li>
Thinner border for scans
</li>
<li>
Change the bookmarked scans border color.
</li>
<li>
Do not show tooltip "Note : " if there is no note for a bookmark.
</li>
<li>
No more than 25 active websites allowed (warning message in the popup
if there are more). This will free some RAM for AMR, I hope there will
be less bug due to RAM consumption...
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Submanga fix : submanga changed their domain (now submanga.me). Usually,
such a fix would have forced you to delete and readd all of your submanga
entries. I added and auto update tool (no button... it's automatic) to
auto change your existing entries to submanga.me... hope it will work fine
(I can assure you i tested it...)
</li>
<li>
Synchronization does not update the "grey status" (Stop following updates)
and the reading mode preferences (right to left, left to right, ...)
</li>
<li>
Some text on on other web sites were impacted by the new page number on
each scans (same style)
</li>
<li>
MangaStream fix
</li>
<li>
Save AMR's bar mode (hidden / visible) does not work on MangaReader and
some other websites
</li>
</ul>
<p>
New Websites :
</p>
<ul class="icons">
<li>
<img src="img/mangafarsi.PNG" alt="Icon">
MangaIR in persian (implementation developped by Sepehr)
</li>
</ul>
</div>
<div id="r37" class="article">
<h3>
Version 1.3.7
</h3>
<p>
New features :
</p>
<ul>
<li>
Add "Activate all" and "Deactivate all" buttons in the "Supported websites"
panel in the options page. You can filter websites by language and deactivate
multiple websites at once.
</li>
<li>
Prefetching : next chapter is prefetched in background while reading a
manga chapter (a progress bar on the "Next" button indicates the loading
level of the next chapter). An option allows you to deactivate this feature.
</li>
<li>
Double click on a scan bookmarks it automatically with no note. If the
scan is already bookmarked, it removes the bookmark. An option allows you
to deactivate this feature.
</li>
<li>
The loading image (before a scan is loaded) has been changed. When the
scan starts loading, the loading image disappear.
</li>
</ul>
<p>
Bug Fixes :
</p>
<ul>
<li>
Animea fix
</li>
<li>
Submanga fix
</li>
</ul>
<p>
New Websites :
</p>
<ul class="icons">
<li>
<img src="img/mangachapter.png" alt="Icon">
Mangachapter (implementation developped by QaZZy)
</li>
<li>
<img src="img/unixmanga.png" alt="Icon">
UnixManga (implementation developped by TeoMan)
</li>
</ul>
</div>
<div id="r36" class="article">
<h3>
Version 1.3.6 (There is no 1.3.5 cause I let a minor bug in 1.3.5 which
is fixed in 1.3.6)
</h3>
<p>
New features :
</p>
<ul>
<li>
Global statistics tool : click on the
<img src="img/stats.png" alt="Icon">
in the popup. All Mangas Reader statistics page opens. A
<img src="img/find.png" alt="Icon">
appears near each manga name in the statistics page. This button allows
you to directly search this manga on all web sites within AMR's statistics
page ! The search function uses your search preferences. Go to search page
(or "Search manga" in the popup) to change these preferences (check / uncheck
websites to search on)
</li>
<li>