-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanyme changelog.txt
2355 lines (1896 loc) · 70.5 KB
/
anyme 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
Zun10/19/2018
AnYme V6.7 (yeah I skipped 6.69)
Added a new source called AnimeHub. This source is actually pretty good since it doesn't have ads and it has dub :nauseated_face: It might be possible that a few sources won't open your video player. In that case report the show you're watching to me
Fixed an issue where the app would crash when using the Seasonal Anime function and where it wouldn't remember your selected genres
Now possible to use the "Alternative Downloader" using MasterAnimeV2
Fixed genres or synopsis not loading for certain unaired shows in the Info section of the app
GoGoAnime is back in the app (untested)
Removed an useless permission (it was named something called BIND_REFERER, this was used to detect how you installed AnYme
@everyone
Download link: https://cdn.discordapp.com/attachments/407638358643179520/502996335587360768/AnYme.apk
Attachment file type: unknown
AnYme.apk
4.41 MB
Zun10/28/2018
AnYme 6.71
* Get notifications outside of AnYme for new episodes
- you can subscribe to episode notifications on two screens. Either click on "Calendar" from the left sidebar on the homescreen or click on an Anime and you'll see "Get Notified"
* You will no longer see NSFW recommendations in the recommendations section of the app
@everyone
https://cdn.discordapp.com/attachments/407638358643179520/506100166336446474/AnYme.apk
Attachment file type: unknown
AnYme.apk
4.45 MB
Zun11/04/2018
AnYme 6.73
This version of AnYme is written in a new programming language called Kotlin. Please try out this version cause I'd like to know if everything still works
Here a list of new or fixed things
* When you receive a notification for a new episode you can now click on it and the app will automatically open the show for you
* When you click on a waifu you can now click on "Open Anime" to go to the Anime the character is in. Speaking of waifus, you now get to see the top 50 waifus in the Discover section of the app
* Fixed an issue where the alternative downloader would create a new folder for every new episode you download
* I've attempted to fix an issue where you would see a white notification icon. Not sure if it works :')
@everyone
Attachment file type: unknown
AnYme.apk
4.72 MB
Zun11/06/2018
AnYme 6.75
* Fixed some memory leaks from previous update
* Fixed the app crashing upon app startup if you had no internet turned on
* Overall made some processes more streamlined. I'll go more in depth in the upcoming changelogs. For now it's important for me to just analyze the crash logs.
* Minor bugs fixed such as not being able to click on an cover image to see the full sized image
@everyone
Attachment file type: unknown
AnYme.apk
4.71 MB
Zun11/08/2018
AnYme 6.76
* Fixed the downloader not correctly setting the filename
* Fixed an issue where the user would unnecessary need to relogin after updating a show
* Clicking the info button on the Anime info screen will no longer blind you (white background has been changed to black)
* Speed improvements :mwee:
This is a smoll update mainly for those who want the downloader working again
@here
Attachment file type: unknown
AnYme.apk
4.73 MB
Zun11/12/2018
AnYme 6.77
Mostly just an update with lots of behind-the-scene changes. I'd appreciate if you could update just so I can look at crashlogs again. Just use the app like you usually do.
* Fixed the AdBlocker not updating
* When you rotate your device in the recommendations screen, the app no longer re-connects to Kanon. Instead, it loads data from your memory. If this works, I'll add this mechanic everywhere in the app.
I found out a way of making layouts with little coding, so if you guys don't notice anything new it means the new change works :lick:
@here
Attachment file type: unknown
AnYme.apk
4.76 MB
Zun11/18/2018
AnYme 6.78
This version of AnYme contains a new app layout on the Homescreen. The primary navigation is done through the Navigation Bar. I've also experienced with a different primary color theme. Will most update this based off feedback.
Note: there is an unfinished Bookmarks tab in the app. You can create a Bookmark but not yet add entries.
@everyone
Attachment file type: unknown
AnYme.apk
4.85 MB
Zun11/21/2018
AnYme 6.782
Previous Alpha update was a mess. Here we go again :')
This version of the app fixes various crashes, introduces new animations and an updated AdBlocker
Cool thing: you can press twice on the icon in the bottom bar. Example: if you press twice on Discover, the search page will open.
@everyone
Attachment file type: unknown
AnYme.apk
4.85 MB
Zun11/23/2018
AnYme 6.783
* Added a new source called DubbedAnime
* Attempted to fix MasterAnimeV2 not working for those in Asia/Africa
* Fixed the app layout on the Home-screen
* Removed the fancy fade animation ):
@everyone
Attachment file type: unknown
AnYme.apk
4.85 MB
Zun12/02/2018
AnYme 6.784
This version of AnYme contains bookmarks. With bookmarks you can put shows in a folder for easy access. I'm not sure yet how I want the user interface to look so if you guys got any suggestions then please ping me.
This version also contains some small user interface fixes
@everyone
Attachment file type: unknown
AnYme.apk
4.85 MB
Zun12/08/2018
AnYme 6.785
Added a new 'stats' page where you can see some Kanon related stats and what genres you watch most
KissAnime is now back again the default source
Speedy improvements
Removed some ads (please report more)
@everyone
Attachment file type: unknown
AnYme.apk
4.97 MB
Zun12/09/2018
Early release for AnYme 7
Would appreciate if you guys could install it and use it a bit
@everyone
This version contains fixes from yesterday as well
Zun01/30/2019
A QoL update for AnYme (Version 7.1)
* Add shortcuts to shows on your homescreen. Open an anime, then click settings on the toolbar to find the option to add it to your homescreen.
* The app will automatically pick the highest available quality when you use RapidVideo (KissAnime and 9Anime)
* Added support for the Beta 2.0 server
* You're no longer required to relogin every 7 days
* You're no longer unnecessarily logged out when updating a show
* Icons on the toolbar no longer disappear
* New animations on the home screen if you got a modern phone
* You now get a proper warning in MasterAni when a show is not found
Some other nerd things:
* More features in the app are dynamic. For example: you'll be able to retrieve notifications based on your favorite genres etc.
* The app is now based off AndroidX
* It's updated to the latest SDK version and Firebase libraries
* Added a new permission 'Install Shortcuts'
@everyone
Adding app shortcuts is only available on Android 8 and higher
Attachment file type: unknown
AnYme.apk
4.96 MB
Zun02/12/2019
AnYme Alpha 7.25
This version contains many bug fixes from the previous alpha and new features
- Add shortcuts even if you're below Android 8 (thanks to PeopleHater)
- When clicking on a genre (in the Anime page in AnYme) shows are now loaded through Kanon with an infinite scrolling effect.
- The home screen now looks different.
- Some user interface controls are migrated to Material 2. Buttons and text may look different. Please note that not everything is migrated. There are some older looking buttons
- Images load quicker
- If a show doesn't have a wallpaper you'll see a default image from Kimi No Na Wa
- Removed AnimeFLV
- Updated the Alt downloader. Episodes are now saved in the following format 001.mp4
- Added better support for Android 4.4
Known things
Loading shows by a genre has a strict rate limit. If I recall correctly you can only load 5 pages per minute. After that shows won't load
@everyone
Attachment file type: unknown
AnYme.apk
5.09 MB
Zun02/19/2019
AnYme Alpha 7.30
Small QoL improvements.
* You can now help improve the AdBlocker! Found an ad? Go to Settings > Misc > Improve AdBlocker. Now go to the site with an ad and I can update the AdBlocker (no app update required)
* Y'know the blue text for studios in the Additional Info card? You can now click on it and instead of a browser being opened, shows are now loaded natively though Kanon
* Removed the heart/unheart icon in the Favorites screen. You can no longer unfavorite a waifu by accident. To unfavorite a waifu you first have to click on them and click 'remove waifu'
* Certain data such as seasonal anime will load faster in app since the data is now kept in cache for a short period
* Instead of "Open MyAnimeList", the app now shows "More Information" which opens the floating action button
* Fixed AnimeHub not tracking episodes
Vysair or friend of Vysair, if you're reading this, your app usage is being tracked https://i.imgur.com/GC9eePM.png :eyes:
@everyone
Attachment file type: unknown
AnYme.apk
5.06 MB
Zun02/22/2019
@everyone just a reminder. Sharing alpha .apk files isn't allowed.
An app update with some fixes will be released later
Zun03/08/2019
AnYme Alpha 7.32
* Removed MasterAni
* Updated the user interface
* Fixed some sources not working (don't forget to report ads)
* Bug fixes
@everyone
- note: I'm aware of the bottom bar showing incorrect text
Attachment file type: unknown
AnYme.apk
5.06 MB
Zun03/08/2019
AnYme Alpha 7.33
Hotfix based on feedback from previous version
* Fixed the "More Information" button not working in the anime screen
* Fixed the app not showing the correct text on the homescreen
@here
Attachment file type: unknown
AnYme.apk
5.06 MB
Zun03/09/2019
AnYme Alpha 7.34
Not so interesting update so I won't ping people
* Removed the fancy bottom bar
* Added more animations
Attachment file type: unknown
AnYme.apk
5.05 MB
Zun03/13/2019
AnYme Alpha 7.4
* Fixed thumbnails not loading
* Removed some animations
* Bug fixes
Just use the app like you normally would. If all goes well then this is the last alpha update
@everyone
Attachment file type: unknown
AnYme.apk
5.05 MB
Zun03/14/2019
AnYme Alpha 7.41
Not so interesting update. Contains an update bottom bar (yet again) and some more minor things
Attachment file type: unknown
AnYme.apk
5.08 MB
Zun03/15/2019
AnYme Alpha 7.5
Release candidate for the public
* New animations added
* Fixed the alternative downloader not setting the correct file name
@everyone
Attachment file type: unknown
AnYme.apk
5.08 MB
Zun03/31/2019
AnYme Alpha 8.02
* Sort shows by last updated. This is now the default setting
* (Untested) added support for XstreamCDN and Kwik
@here
Attachment file type: unknown
AnYme.apk
5.08 MB
Zun04/07/2019
AnYme Alpha 8.03
* Added a new feature called "Continue Watching". Open the left sidebar on the home screen to find it. The name of this feature will most likely change in the future.
* Waifus in the Discover section are now in a separate tab
@everyone
Attachment file type: unknown
AnYme.apk
5.08 MB
Zun04/08/2019
AnYme Alpha 8.04
* The "Continue Watching" feature works again. This update will prevent you from seeing already added shows on this screen
* Fixed OServer not working on AnimeHub
* Fixed the app not automatically setting your status to watching/completed when you update your progress
* Added "Mark as Completed" in the right sidebar in the Anime screen
@everyone
Attachment file type: unknown
AnYme.apk
5.08 MB
Zun04/08/2019
AnYme V8.05
* Hotfixes a very specific issue. Let's say you add a show to your profile and set the progress to 25/25, then the app wouldn't set your status to completed
Attachment file type: unknown
AnYme.apk
5.08 MB
Zun04/14/2019
AnYme 8.06
* Added the option to disable full screen under Settings > Appearance
* Changed the way app notifications look. (Will send a test notification later)
* Fixed the search bar not working correctly. Surprisingly this issue didn't get reported that often
* Changed the way the blue progressbar works on the homescreen. It's now at 100% if you've watched all released episodes for shows
* Added text ellips...
* other bug fixes.
Smoll update so I'll stick with @here
Attachment file type: unknown
AnYme.apk
5.12 MB
Zun04/17/2019
AnYme V8.07
This version of the app contains an application-wide cleanup which will result in the following changes
* The app will use lower RAM
* It's slightly smoother
* The amount of data it caches is depends on how much free storage you have to respect those with low storage.
Would appreciate if you guys could download this update :hihi:
@everyone
Attachment file type: unknown
AnYme.apk
5.17 MB
Zun04/29/2019
AnYme V8.1
* Added an early version of WonderfulSubs. It's now the default source while being tested. This source will act like the old MasterAniV2
* Changed the order of seasons in the "Seasonal Anime" page
* On the Discover screen it's possible to long click a show to add it to your profile. IIRC you can only do this on shows being watched. Tell me what you think of it
* Fixed a bug where the app would crash even when it wasn't open :towelman:
* Refreshing your profile is now faster
* A whole lot of code improvements so if you're bored please go through all screens
Casting will be available in 8.2, it's almost done
@everyone
Attachment file type: unknown
AnYme.apk
6.22 MB
Zun05/04/2019
AnYme V8.2
Few minor issues and crashes got fixed
* Fixed the app not remembering what episode you watched last in WS
* Auto scroll to last unwatched episode in WS
* Last update before publishing V8.5 to the public :hihi: please go through all screens and sites and tell me if you find any issues
Note: WS will not be published to the public
@everyone
Attachment file type: unknown
AnYme.apk
6.23 MB
Zun05/05/2019
AnYme V8.3
* Fixed 9Anime not getting the correct episode
* Fixed an issue where loading a paginated list would fail. Example: the Action category has thousands of Anime, but AnYme loads them in batches of 75. Whenever you scroll to the 66th anime, AnYme will preload the next 75 anime. This will result in a smoother experience
@here
Attachment file type: unknown
AnYme.apk
6.22 MB
Zun05/06/2019
Quick note for alpha users
* Keep using the Alpha version of the app, even tho I recently published "8.5"
* In the public release of AnYme, opening Settings->Accounts opens the Alpha version of the app. This is a bug. I added this feature to automatically move your Kanon from regular to Alpha (For those who had issues with their browser) but this action should be performed when you click on "migrate". Seems like there's a bug where this happens automatically
Zun05/09/2019
AnYme V8.6
* Updated a feature: Categories V2. You can find it in the Discover section of the app
* Cleaned up a lot of code. Would appreciate if you guys could try out the streaming sites in the app
@everyone
Attachment file type: unknown
AnYme.apk
6.23 MB
Zun05/12/2019
AnYme 8.61
Lots of features that are being worked on
* Added a new source: AnimeKisa. Has support for 1080p. Looks like AnimeHeaven
* Added a weeb level in the Stats tab. XP is based on episodes watched, notes written and waifus added. This will obv be extended in a future app update
* Your days wasted is now in the Stats page
* Long click on a note to delete it
@everyone
report issues as usual
Attachment file type: unknown
AnYme.apk
6.24 MB
Zun05/14/2019
AnYme V8.62
* Added support for seasons in WonderfulSubs. Ex: you're now able to switch between One Punch Man S1 and One Punch Man S2
* Updated the Stats page in the app. You now also see a short "description" based on your level
* Added support for a quality picker for RapidVideo
* Rewrote the way the Site Picker works. Please try it out again
* Bugfixes
Known thing: the app doesn't save your last selected season. Will be added next alpha, which will probably be on Thursday
@everyone
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/19/2019
AnYme V8.63
* The app now remembers the last selected season for a show in WonderfulSubs
* Fixed an issue where additional information for certain shows (like C&T) didn't load
* Bug fixes
@everyone
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/21/2019
AnYme V8.65 (where is .64??)
* WonderfulSubs shows episodes again for shows with just 1 season
* Updated the stats page to show your XP progression
* The boxes in the Stats page are clickable. Clicking on "Notes Written" brings you to a list of all shows you've written notes for
The app now is now almost done for a public release.
@everyone
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/21/2019
AnYme v8.66
Oh boi sorry for another ping
* Added a quality picker for RapidVideo. Picking quality should work again in KissAnime and 9Anime
@here
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/23/2019
AnYme v8.68
* You're now able to filter by genres over shows you've already added to your profile. Find the option by pressing the search button on the home screen or by tapping the "Watch" button in the bottom bar twice
* Added support for quality picker in 9Anime
* Quite some bug fixes
* It's now possible in-app to disable the quality picker
* Note: filtering by genre requires an active internet connection to KanonApp.com
@everyone
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/24/2019
AnYme V8.7
This Alpha update (hopefully) fixes most of yesterdays issues
* App crashes fixed
* The quality picker now correctly saves your last used quality
* You can now filter local shows by minimum score as well
pls I just want to release a public version
@everyone
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/26/2019
AnYme V8.8
Not an Alpha but a Public release build. Please try it out before I release it to the rest
This version fixes the last few identified crashes and issues
@everyone
Attachment file type: unknown
AnYme.apk
6.25 MB
Zun05/29/2019
New alpha with crash fixes soon
Reminder to not share alpha .apk files
Zun06/05/2019
AnYme V8.83
Oh boi plenty of bugs fixed here
* Added a "Donate" section in the app, please check it out. You can find it in the left sidebar on the home screen
* The navigation bar background color now matches the color of the app
* Improved the AdBlocker
* Better experience for new users. Entering your password is now optional. I've also changed the welcome screen. If you're bored, then please log out of the app and go through all screens
* Added an option to change your username in the app
* Reduced app size by 100kb by moving app code to the server :)
* Rewrote a lot of code
@everyone
Please try it out, even if the update seems small to you I've made plenty of changes behind the scenes
Attachment file type: unknown
AnYme.apk
6.16 MB
Zun06/07/2019
AnYme V8.85
This version hopefully fixes most of the issues from the previous Alpha. Please try out all features if you're bored and report back on stuff I've missed
@everyone
Attachment file type: unknown
AnYme.apk
6.16 MB
Zun06/23/2019
AnYme V8.91
* You can now add or remove bookmarks from shows more quickly. On the home screen, you can click the "more info, 3 dots" icon then click on "Add to bookmark". You can also add or remove a show from bookmarks by clicking the bookmark icon in the anime screen (next to the casting/downloading icon)
* Added a new feature: Reverse Image Search. Using a screenshot from an episode you found you can now use the AnYme app to find out what show it is from. The app will also link to the Anime.
This feature uses some interesting tech to access your screenshots (with your consent) without app permission. Tell me if it works for you
* KissAnime is no longer the default source
* Many crash fixes
Please suggest what I should change about the reverse image search tool. Ex: how to access it, the icon, the interface...
@everyone
Attachment file type: unknown
AnYme.apk
6.34 MB
Zun06/27/2019
AnYme V8.93
* Added a new host: BestAnimes
* Fixed an issue where shows like Dororororororo would have an incorrect episode number set
* Small user interface changed like shadows removed and some other color changes
* AnimePahe is now the default source
Technical stuff
* Added logging for errors that appear in WebView. If you open the browser and get a white screen error, these error now get logged if you have "Improve AdBlocker" enabled
* Added Firebase Performance so I can collect performance measurements from each app user, group them together and see how fast the app performs on each screen
Pls download :ASpepecry:
@everyone
Attachment file type: unknown
AnYme.apk
6.59 MB
Zun06/30/2019
AnYme V8.94
I've added notifications in-app to help people with basic stuff. Please try out this update and if there are no crashes I will promote this version to a BETA ( #0ld-4pp-updates )
Technical stuff
* The app is faster on some screens by moving tasks to a background thread. This means smoother animations while the app is doin stuff in the background.
@everyone
Attachment file type: unknown
AnYme.apk
6.61 MB
Zun07/03/2019
AnYme V8.942
* Fixed quite some huge memory leaks. Expect lower RAM
* You can now long click on an Anime in Advanced Anime Search and the Calendar to add it to your profile
* You can now subscribe to Anime again in the Calendar tab
* The app now returns 75 waifus in the Discover tab
* The app now returns more search results for shows in Advanced Anime Search.
* Plenty of bugs fixed (and probably introduced some more bugs)
@everyone
Attachment file type: unknown
AnYme.apk
6.61 MB
Zun07/05/2019
AnYme V8.951
* Added a privacy policy in the Settings -> About page and in the login page
Not so interesting update but check it out if you're bored
Attachment file type: unknown
AnYme.apk
6.62 MB
Zun07/20/2019
AnYme V8.97
Not so interesting update
* Added TioAnime, a Spanish source. I'll go look for some more Spanish testers
* You can now delete notes through a three-dots menu
Attachment file type: unknown
AnYme.apk
6.62 MB
Zun07/27/2019
AnYme V8.972
* Added a Socials tab on the Home-screen
@everyone
Attachment file type: unknown
AnYme.apk
6.64 MB
Zun07/28/2019
AnYme V8.973
* Added a new native source called Animeflix
Known 'issue', the app will only load the last 30 episodes of a show. I'll work on that soon
@everyone
Attachment file type: unknown
AnYme.apk
6.64 MB
Zun07/28/2019
Also if anyone finds issues with Animeflix such as no episodes/host/qualities then send me the exact anime you clicked so I can research it
Zun08/02/2019
AnYme V8.98
* Added support again for Quality Picker
* NSFW search results no longer appear within Reverse Image Search
* Episodes you download follow the following format: AnimeName (Episode 001).mp4. this results in your downloads being sorted properly
* Episodes in Animeflix are now sorted by episode number ascending
* Lots of bugfixes and speedy improvements
@everyone
Attachment file type: unknown
app-alpha.apk
6.64 MB
Zun08/06/2019
AnYme V8.99
* Fixed a very old issue with WonderfulSubs where some episodes returned "no providers found". Right now I've added a "Bun" source :)))))
* Dropped shows no longer appear in "stay up-to-date"
* A lot of behind the scenes improvements and bug fixes from V8.98
@everyone
Attachment file type: unknown
AnYme_v899.apk
6.64 MB
Zun08/12/2019
AnYme V8.991 please end my suffering from shitty version numbers
* It's now possible to load more than 30 episodes from Animeflix
* Lot's of crash fixes as usual
* Removed every site that don't use HTTPS
@everyone
Attachment file type: unknown
AnYme_V8_991.apk
6.63 MB
Zun08/15/2019
AnYme V8.992
* Added a new pop-up in app telling people to use MX/VLC
* The default source in the app is now Animeflix, but it can be changed without app update through the Kanon server
* It's possible to use KissAsian again
* Some trivial features added. You'll see them yourself.
I think this will be the last update before a full release
@here
Attachment file type: unknown
AnYme_V8_992.apk
6.64 MB
Zun08/16/2019
AnYme V8.993
* It's possible to use WonderfulSubs and Animeflix again
* You can now see the popularity of each source in the app. Note that this percentage only refreshes once per day, so for the time being only Animeflix is "popular"
* It's now easier to receive targeted notifications about interesting things in the app. For example, if you like Action/Fantasy, you'll receive a notification about Isekai anime etc.
@everyone
Attachment file type: unknown
AnYme_V8_993.apk
6.64 MB
Zun08/16/2019
Known issue: calculation issue with the percentage
Zun08/17/2019
AnYme V8.994
Percentages should show up correctly now
@here
Attachment file type: unknown
AnYme_V8_994.apk
6.64 MB
Zun08/17/2019
AnYme V8.995
Won't ping people this time but fixed an issue where more than 1 site in the Site Picker dialog appeared as selected
Attachment file type: unknown
AnYme_V8_995.apk
6.64 MB
Zun08/18/2019
For those who would like to continue using the Alpha version, download version 10 here
Attachment file type: unknown
AnYme_V10_0.apk
6.64 MB
Zun08/18/2019
AnYme V10.02
Reverted an update where I disallowed HTTP sites to be available in AnYme. This update should fix all NSFW sources and bring back Chia-Anime
Attachment file type: unknown
AnYme_V10_02.apk
6.64 MB
Zun08/18/2019
AnYme V10.03
I have attempted to fix an issue where your profile flashes multiple times upon app startup. Still looking for ways to properly solve this
Attachment file type: unknown
AnYme_V10_03.apk
6.64 MB
Zun08/18/2019
Sigh
This update prevents the app from refreshing multiple times
Only downside is that the start/end date on a show won't be loaded
Attachment file type: unknown
AnYme_V10_04.apk
6.64 MB
Zun08/20/2019
AnYme V10.09
* Fixed an issue where shows like One Piece couldn't load their episodes on Animeflix
* some crashes fixed
Attachment file type: unknown
AnYme_V10_09.apk
6.63 MB
Zun08/23/2019
Starting with AnYme 10.11, every public build will have an alpha build as well. This means you can continue using Alpha without switching back to the regular version
Zun08/25/2019
AnYme 10.11
Last update pls test
This update contains crash fixes
@everyone
Attachment file type: unknown
AnYme_V10_11.apk
6.57 MB
Zun08/28/2019
AnYme 10.13
* This version contains a rewritten version (in terms of code and user interface) of the Anime Info screen. Please give it a try.
* Note: I need suggestions on how to deal with empty states. Empty states means what should the app show when an anime doesn't have related shows, characters etc.
* Technical stuff: The Anime Info screen was originally written in Java and roughly contained 1700 lines of code. This has been reduced to 1100 while converting to Kotlin. Still a lot of code :towelman:
@everyone
Attachment file type: unknown
AnYme_V10_13.apk
6.45 MB
Zun09/01/2019
AnYme 10.17
* Fixed an issue where you were unable to get subscribed for episode releases
* Fixed an issue where the app crashed when clicking on a link in the info screen
* Fixed an issue where the "no videos found" message disappeared in the Videos tab
* Fixed an issue where pressing the back button didn't work
* Fixed an issue where the Advanced Anime Search wouldn't display entries
* Technical stuff: the app now checks if your AdBlocker is up-to-date when opening a streaming site. You can not stream anime when the AdBlocker is outdated
@everyone
Attachment file type: unknown
AnYme_V10_17.apk
6.49 MB
Zun09/02/2019
AnYme V10.18
* Added a new feature: "Score Distribution". Check the Stats tab!
* Fixed an issue where WonderfulSubs wouldn't load anything at all
* Speeeedy improvements to the Info screen in the app
* NSFW shows in the "Genres" and "Continue Watching" screen will no longer appear (this is actually a server-sided update, not app update)
@everyone
Attachment file type: unknown
AnYme_V10_18.apk
6.49 MB
Zun09/03/2019
AnYme V10.19
For those who prefer to continue using the Alpha version
* This update added warning for when trying to download/cast incompatible types
* Added "Source" and "Type" in the Additional Info section of the app
Attachment file type: unknown
AnYme_V10_19.apk
6.44 MB
Zun09/07/2019
AnYme V10.25
* You can now click on a rating in the Score Distribution chart and it'll open a list of shows with the rating you clicked
* Fixed an issue where the app wouldn't load anime cover images or titles
* Added "Open OST" in the Anime Music screen
* Fixed the back button not working
* Fixed an issue where WonderfulSubs wouldn't autoscroll to last unwatched episode
* Added support for Android 4.4 again
* The app no longer shows decimal numbers in the chart (I hope)
* Fixed the Reddit Discuss button not loading all discussions on Reddit
@everyone
Attachment file type: unknown
AnYme_V10_25-alpha.apk
6.44 MB
Zun09/15/2019
AnYme V10.29
This is mostly a stability update, fixing many bugs and some annoyances
* Added an in-app FAQ. The FAQ entries is a work in progress. You can find this in the sidebar and then click "Help". You can help contribute with question/answers
* Fixed an issue where the quality picker is shown twice
* Fixed the UI in the Stats page. Also, Score Distribution is now placed where the Top Genres was.
* Fixed an issue where notes wouldn't always load
* When writing a note, the first letter in a sentence is now properly Capitalized.
* Made the app more responsive for tablets on some pages
@everyone
Attachment file type: unknown
AnYme_V10_29-alpha.apk
6.47 MB
Zun09/16/2019
AnYme V10.31
* Fixed an app crash when opening an Anime
* Fixed the back button not working on the Anime Info screen
* Fixed 3 memory leaks
@here pls try
Attachment file type: unknown
AnYme_V10_31-alpha.apk
6.35 MB
Zun09/19/2019
AnYme V10.34
* The app now displays the score distribution in a chart in the Anime Info screen
* Improved the Seasonal Anime screen. Filters are now remembered when changing them
* Even more speedy improvements. RAM usage should be lower too
note: no need to download the same 10.34 BETA build if you stricly use the Alpha version
@everyone
Attachment file type: unknown
AnYme_V10_34-alpha.apk
6.45 MB
Zun09/26/2019
AnYme V10.41
Hopefully the last Alpha before a public release....
* Fixed an issue where the score distribution showed values below 0 (negative values)
* Some app data like 'shows by genre' is now loaded much faster
* Lots of behind the scene changes
@everyone
pls try and lemme know if all still works
Attachment file type: unknown
AnYme_V10_41-alpha.apk
6.45 MB
Zun10/01/2019
AnYme 10.44 Hotfix
* It's now possible to cast HLS/DASH again
* It's possible to reverse image search an image by giving a link
* Fixed some UI issues in the Calendar tab
* Updated the UI for the Bookmarks tab
@everyone
Attachment file type: unknown
AnYme_V10_44-alpha.apk
6.45 MB
Zun10/02/2019
AnYme Alpha 10.45
* It's now possible to use the app without a MyAnimeList account
* Socials tab is gone. The content is now in the Discovery tab. The reason for this is to place all discover related stuff in one place. This also helps those who use the app without a MAL account
* The app now warns again if your search result in Fast Anime Search contains NSFW shows. This explains why we haven't had many people ask for the patch in the discord server
Known issues
* The spacing between "Top Airing" and "Discord Recommendation" is weird
* Reverse image search by link doesn't work properly
@here
Attachment file type: unknown
AnYme_V10_45-alpha.apk
6.46 MB
Zun10/03/2019
AnYme 10.46
Not so interesting update fixing yesterday's issues.
* Fixed the weird margin in the Discover tab
* Improved the user experience for those without a MyAnimeList account
* Removed the loading indicator in the Bookmarks tab
* Temporarily removed the option to reverse image search by URL.
@here
Download the update anyway
Attachment file type: unknown
AnYme_V10_46-alpha.apk
6.46 MB
Zun10/06/2019
AnYme V10.47
* Added a "Recently Released Episodes" card in the Discovery tab to see which shows had a recent episode release
* Fixed an issue where the calendar wouldn't load for some users
* Fixed an issue where searching for NSFW shows by title didn't work
* Removed the skip intro feature
* Changed the Welcome screen images/text. Though this one doesn't require an app update
@everyone
Attachment file type: unknown
AnYme_V10_47-alpha.apk
6.46 MB
Zun10/09/2019
AnYme V10.50
* Added a new card in the Discover tab: "Discover something" (name will change). Pick a genre and the app will pick some random popular shows.
* Reworked the Discover tab. Top Anime is no longer in 3 different cards but instead now just in 1 and it can be changed by clicking on the "chips"
* The "Recently Aired" card now shows how many minutes ago an episode got released
* Improved performance when clicking on an anime to read the info. The app makes fewer database calls.
* Probably fixed an issue where you got logged out too early with MAL
* Probably added support for PTServer
* Increased timeout for WS and Animeflix to 15 seconds (that's how long the app will try to connect to these sites before it shows a warning)
@everyone
Known issue: currently the results for "Discover Something" are not so good. In about 1 hour this will change. Cloudflare and Kanon got old data cached.