-
Notifications
You must be signed in to change notification settings - Fork 0
/
releases.json
4265 lines (4265 loc) · 257 KB
/
releases.json
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
[
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147",
"assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147/assets",
"upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/182433147/assets{?name,label}",
"html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.12.1",
"id": 182433147,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOLExXBM4K37V7",
"tag_name": "v1.12.1",
"target_commitish": "master",
"name": "Komikku v1.12.1",
"draft": false,
"prerelease": false,
"created_at": "2024-10-29T10:10:09Z",
"published_at": "2024-10-29T10:39:18Z",
"assets": [
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558367",
"id": 202558367,
"node_id": "RA_kwDOLExXBM4MEsuf",
"name": "Komikku-arm64-v8a-v1.12.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 35874711,
"download_count": 10087,
"created_at": "2024-10-29T10:24:14Z",
"updated_at": "2024-10-29T10:24:15Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-arm64-v8a-v1.12.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558371",
"id": 202558371,
"node_id": "RA_kwDOLExXBM4MEsuj",
"name": "Komikku-armeabi-v7a-v1.12.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 30922661,
"download_count": 846,
"created_at": "2024-10-29T10:24:14Z",
"updated_at": "2024-10-29T10:24:15Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-armeabi-v7a-v1.12.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558369",
"id": 202558369,
"node_id": "RA_kwDOLExXBM4MEsuh",
"name": "Komikku-v1.12.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 87502278,
"download_count": 1477,
"created_at": "2024-10-29T10:24:14Z",
"updated_at": "2024-10-29T10:24:16Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-v1.12.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558372",
"id": 202558372,
"node_id": "RA_kwDOLExXBM4MEsuk",
"name": "Komikku-x86-v1.12.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 37037933,
"download_count": 40,
"created_at": "2024-10-29T10:24:14Z",
"updated_at": "2024-10-29T10:24:15Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-x86-v1.12.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/202558373",
"id": 202558373,
"node_id": "RA_kwDOLExXBM4MEsul",
"name": "Komikku-x86_64-v1.12.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 39032706,
"download_count": 91,
"created_at": "2024-10-29T10:24:14Z",
"updated_at": "2024-10-29T10:24:15Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.12.1/Komikku-x86_64-v1.12.1.apk"
}
],
"tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.12.1",
"zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.12.1",
"body": "### What's Changed\r\n\r\n#### New\r\n\r\n##### UI\r\n\r\n- **Error screen** for Library update (@cuong-tran)\r\n- **Custom color theme** (@kana-shii) with Colors palette (@cuong-tran)\r\n- **Panorama cover** showing wide cover in full (@cuong-tran)\r\n- **Language flags** (@cuong-tran)\r\n- **Repo icon** for Komikku & Keiyoushi (@cuong-tran)\r\n- show all entries going to be checked for **Smart update** (@cuong-tran)\r\n- show **duplicating manga cover** on Duplicate dialog (@cuong-tran)\r\n\r\n##### Action\r\n\r\n- **Hidden categories** to hide yours *things* from nosy people (@cuong-tran)\r\n- **Random library sort** for your inspiration(@jackhamilton)\r\n- **Chips for Saved search** in source browse (@cuong-tran)\r\n- **Docking Read/Resume button** (@cuong-tran)\r\n- **Merge multiple** library entries together at same time (@cuong-tran)\r\n- **Range-selection for Migration** (@cuong-tran)\r\n- **Hide library entries in Feed** (@cuong-tran)\r\n- Add source search, icon & flag on **Feed adding dialog** (@cuong-tran)\r\n- Easy **re-ordering Feed & Saved search** (@cuong-tran)\r\n- Ability to **enable/disable repo** (@cuong-tran)\r\n- Show **extensions from multiple repos** (@cuong-tran)\r\n- Default disable **integrated H** features (fresh install) (@cuong-tran)\r\n- Add option to opt out of ~~Analytics and~~ Crashlytics (@Animeboynz)\r\n\r\n#### Improve\r\n\r\n- Show **quantity badge** on Upcoming screen (@cuong-tran)\r\n- Add option to **skip downloading duplicate read chapters** (@shabnix)\r\n- Allow **sync Feeds & extension's settings** (@cuong-tran)\r\n- Option to **not backup Saved searches & Feeds** (@cuong-tran)\r\n- Option to **Always/Ask/Never update trackers** when chapter marked as read (@Animeboynz)\r\n- Show a toast whenever progress is synced from Trackers (@cuong-tran)\r\n- update all trackers progress when new tracker is added (@cuong-tran)\r\n- Allow disable smart-update for individual & fix custom interval update (@kana-shii)\r\n- Show download state and progress on reader chapter list (@NGB-Was-Taken)\r\n- Show local chapters as downloaded on merged entries. (@NGB-Was-Taken)\r\n- Allow adding multiple tags separated by commas (@NGB-Was-Taken)\r\n- make global search pinned/all sticky (@cuong-tran)\r\n- hide Pinned chip in Global/Migrate Search if no pinned sources available (@cuong-tran)\r\n- hide Filter save-button on SourceFeedScreen (@cuong-tran)\r\n- show loading indicator while bulk-favorite is running (@cuong-tran)\r\n- bulk-favorite: reverse selection (@cuong-tran)\r\n- Add extensions list refresh menu (@cuong-tran)\r\n- Respect privacy settings in extension update notification (@Animeboynz)\r\n- Add \"show entry\" action to download notifications (@mm12)\r\n- Avoid blocking call causing lag when open Settings (@cuong-tran)\r\n- allow chapter 0 dupe auto mark as read (@Riztard)\r\n- Re-enable fetching chapters list for entries with licensed status (@Animeboynz)\r\n- hide batch-add if integrated H & Delegated src is off (@Riztard)\r\n- add MangaDex to batch-add example (@cuong-tran)\r\n- Remove more unnecessary permissions from Firebase dependency (@AntsyLich)\r\n- rename `Related Titles` to `Suggestions` (@cuong-tran)\r\n- only load suggestions after entry finished loading info & chapters (@cuong-tran)\r\n- Add confirmation when adding repo via URI (@Animeboynz)\r\n- Confirmation dialog when removing privately installed extensions (@Animeboynz)\r\n- Hide sync library option when sync is disabled (@FuSan21)\r\n- Hide keyboard when a Tracker SearchResultItem is clicked (@Animeboynz)\r\n- Back button on smart-search source (@cuong-tran)\r\n- Remove legacy broken source and history backup (@AntsyLich)\r\n- Move \"Choose what to sync\" out of \"Sync now\" (@NGB-Was-Taken)\r\n- Enable 'Split Tall Images' by default (@Smol-Ame)\r\n- Ignore \"intent://\" urls on webview (@bapeey)\r\n- Hide display mode for e-hentai (@cuong-tran)\r\n- Reduce ChapterNavigator horizontal padding on small ui (@AntsyLich)\r\n- Respect the `altTitlesInDesc` preference (MangaDex) (@NGB-Was-Taken)\r\n- Respect `thumbnailQuality` and `tryUsingFirstVolumeCover` preferences (@NGB-Was-Taken)\r\n\r\n#### Fix\r\n\r\n- Remove built-in Komikku repo (fresh install) (@cuong-tran)\r\n- Fix for ExHentai (@jobobby04)\r\n- Fix dropdown menu position (@cuong-tran)\r\n- Fix late loading saved-searches/filters when jump from other screens (@cuong-tran)\r\n- Don't show Suggestions for merged entries (@cuong-tran)\r\n- Don't expand description on the manga found by smart search being used for merging (@cuong-tran)\r\n- Fix sync progress from tracker not working if chapters' order is messed up after backup restoration (@cuong-tran)\r\n- Fix app crash when removing tracked entry from tracker (@cuong-tran)\r\n- Safe-guard some edge-cases where chapters are duplicated causing a crash on a merged entry (@cuong-tran)\r\n- Retain remote last chapter read if it's higher than the local one for EnhancedTracker (@brewkunz)\r\n- Fix crashlytics (@cuong-tran)\r\n- Fix Kitsu `ratingTwenty` being typed as String (@MajorTanya)\r\n- Fix Kitsu `synopsis` nullability (@MajorTanya)\r\n- Fix AniList `ALSearchItem.status` nullibility (@Secozzi)\r\n- Fix EnhancedTracker not auto binding when adding manga to library (@brewkunz)\r\n- Fix issue with not showing source names in merged manga sometimes (@jobobby04)\r\n- Fix source search box's height (@cuong-tran)\r\n- Fix settings SliderItem steps count (@abdurisaq)\r\n\r\n##### Hotfix for v1.12.0\r\n\r\n- Fix release update version checking\r\n- Migration integrated H enable\r\n- add Back button on Migration screen\r\n- fix crash if cancel migration too soon\r\n- fix unable to migrate after manually cancel & search for entry\r\n\r\n#### Based on\r\n\r\n- Mihon stable 0.17.0 (Oct 26, 2024)\r\n- TachiyomiSY stable 1.11.0 (Oct 28, 2024)\r\n\r\n*Full Changelog*: https://github.com/komikku-app/komikku/compare/v1.11.2...v1.12.1\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 979d69cc357729161d5846aab6500aff8d78f89a32176f7a55228eaa693c1a0e |\r\n| arm64-v8a | f802acdf36b0ff7a3cb0a158bd1fbac6a229669fe545fd5bab8142cd92ecda0b |\r\n| armeabi-v7a | fb0a72e7dbfed270f8a0d3495307f44e0d53110f3e7f6abad911a0bae2f7939d |\r\n| x86 | c2629e414f319af8de9ef6c7cf700463c28fbcea7a006a1558c8e0ada3cb064a |\r\n| x86_64 | 2f95110d1f89efdfe6551f01e8a1b064d697458953084e3df78b39011622c8f1 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.12.1.apk`\r\n",
"reactions": {
"url": "https://api.github.com/repos/komikku-app/komikku/releases/182433147/reactions",
"total_count": 19,
"+1": 9,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 7,
"eyes": 3
},
"mentions_count": 17
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/169400408",
"assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/169400408/assets",
"upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/169400408/assets{?name,label}",
"html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.11.2",
"id": 169400408,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOLExXBM4KGNhY",
"tag_name": "v1.11.2",
"target_commitish": "master",
"name": "Komikku v1.11.2",
"draft": false,
"prerelease": false,
"created_at": "2024-08-08T19:36:08Z",
"published_at": "2024-08-08T19:50:35Z",
"assets": [
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788115",
"id": 184788115,
"node_id": "RA_kwDOLExXBM4LA6ST",
"name": "Komikku-arm64-v8a-v1.11.2.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 32861961,
"download_count": 19064,
"created_at": "2024-08-08T19:49:41Z",
"updated_at": "2024-08-08T19:49:42Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-arm64-v8a-v1.11.2.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788112",
"id": 184788112,
"node_id": "RA_kwDOLExXBM4LA6SQ",
"name": "Komikku-armeabi-v7a-v1.11.2.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 28319509,
"download_count": 1771,
"created_at": "2024-08-08T19:49:41Z",
"updated_at": "2024-08-08T19:49:42Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-armeabi-v7a-v1.11.2.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788114",
"id": 184788114,
"node_id": "RA_kwDOLExXBM4LA6SS",
"name": "Komikku-v1.11.2.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 79672408,
"download_count": 3235,
"created_at": "2024-08-08T19:49:41Z",
"updated_at": "2024-08-08T19:49:43Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-v1.11.2.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788113",
"id": 184788113,
"node_id": "RA_kwDOLExXBM4LA6SR",
"name": "Komikku-x86-v1.11.2.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 33865445,
"download_count": 117,
"created_at": "2024-08-08T19:49:41Z",
"updated_at": "2024-08-08T19:49:42Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-x86-v1.11.2.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/184788116",
"id": 184788116,
"node_id": "RA_kwDOLExXBM4LA6SU",
"name": "Komikku-x86_64-v1.11.2.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 35827447,
"download_count": 171,
"created_at": "2024-08-08T19:49:41Z",
"updated_at": "2024-08-08T19:49:42Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.2/Komikku-x86_64-v1.11.2.apk"
}
],
"tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.11.2",
"zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.11.2",
"body": "## What's Changed\r\n### New\r\n- Support for backing up and restoring Feeds (@cuong-tran)\r\n- Allow changing feeds' order (@cuong-tran)\r\n- Show progress-banner for sync/restore/update (@cuong-tran)\r\n- Jump to entry from download queue item (@cuong-tran)\r\n- Long-click search drop-down menu for entry's title/author/artist/source (@cuong-tran)\r\n- Support sources search in Migrate Source Screen (@cuong-tran)\r\n- Adds Reader Option to Copy Panel to Clipboard (@Animeboynz)\r\n- Added configuration options to e-ink page flashes (@sirlag)\r\n\r\n### Improve\r\n- (performance) Rework cover's loading animation (@cuong-tran)\r\n- Update default popular user-agent, better support Cloudflare (@cuong-tran)\r\n- Onboarding permissions request for external storage (@cuong-tran)\r\n- Request for storage permission when saving pictures (Android P & below) (@cuong-tran)\r\n- Improve google drive sync. (@kaiserbh)\r\n- Background color for favorite entries (@cuong-tran)\r\n- Update E-Hentai to support libraryColored, bulk-selection overlay (@cuong-tran)\r\n- Make global search \"Has result\" sticky (@AntsyLich)\r\n- Format Category String on Subtitle Display (@Animeboynz)\r\n- Press back to clear source search query (@cuong-tran)\r\n- Smart Update Dialog Tweak (@Animeboynz)\r\n- Update LewdMangaChecker (@gelionexists)\r\n\r\n### Fix\r\n- (performance) Laggy after browsing library for a while (@cuong-tran)\r\n- Migrate/copy manga with `Delete downloaded` unticked had no effect, always delete (@cuong-tran)\r\n- Copy icon (migration whole list) was always migrating instead of copy (@cuong-tran)\r\n- Dialog's button wrong order (@cuong-tran)\r\n- Fix library is backed up when disabled and make categories backup/restore independent (@AntsyLich)\r\n- Fix issue with creating and restoring backup (@AntsyLich)\r\n- Revert chapter's filter icon (@cuong-tran)\r\n- Fix some issues when reading/saving images (@foolbar)\r\n- Correct tako variable colours (@CrepeTF)\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/v1.11.1...v1.11.2\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | ade5a8b3945130010532681bda9a5a72bf41f6e06b6f817ea629c4658c4a3e23 |\r\n| arm64-v8a | 71d4d4f23945cf03b84ec06dc93c294a7babdf6c236f3656eafda6a430608e55 |\r\n| armeabi-v7a | 0e3e7d29c5f7a17c795803610ecc6db22aea91d1ae00d6e6003efccd1d16714d |\r\n| x86 | dbdd76437c4a137dc64ba1fd971ecdf3a6d82bd6abcca4ccb590d0285222d23e |\r\n| x86_64 | 950bbf02f513c9fc79e1ee469f802aad8f6ce09b8d66c875cccf8c761193b2e4 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.11.2.apk`\r\n",
"reactions": {
"url": "https://api.github.com/repos/komikku-app/komikku/releases/169400408/reactions",
"total_count": 14,
"+1": 6,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 4,
"rocket": 4,
"eyes": 0
},
"mentions_count": 8
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/163981746",
"assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/163981746/assets",
"upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/163981746/assets{?name,label}",
"html_url": "https://github.com/komikku-app/komikku/releases/tag/v1.11.1",
"id": 163981746,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOLExXBM4Jximy",
"tag_name": "v1.11.1",
"target_commitish": "master",
"name": "Komikku v1.11.1",
"draft": false,
"prerelease": false,
"created_at": "2024-07-04T10:04:36Z",
"published_at": "2024-07-04T15:34:47Z",
"assets": [
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654069",
"id": 177654069,
"node_id": "RA_kwDOLExXBM4Klsk1",
"name": "Komikku-arm64-v8a-v1.11.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 30566027,
"download_count": 1415,
"created_at": "2024-07-04T10:30:48Z",
"updated_at": "2024-07-04T10:30:49Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-arm64-v8a-v1.11.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654070",
"id": 177654070,
"node_id": "RA_kwDOLExXBM4Klsk2",
"name": "Komikku-armeabi-v7a-v1.11.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 26449559,
"download_count": 165,
"created_at": "2024-07-04T10:30:48Z",
"updated_at": "2024-07-04T10:30:49Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-armeabi-v7a-v1.11.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654067",
"id": 177654067,
"node_id": "RA_kwDOLExXBM4Klskz",
"name": "Komikku-v1.11.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 70478810,
"download_count": 800,
"created_at": "2024-07-04T10:30:48Z",
"updated_at": "2024-07-04T10:30:50Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-v1.11.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654068",
"id": 177654068,
"node_id": "RA_kwDOLExXBM4Klsk0",
"name": "Komikku-x86-v1.11.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 31667815,
"download_count": 32,
"created_at": "2024-07-04T10:30:48Z",
"updated_at": "2024-07-04T10:30:49Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-x86-v1.11.1.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/177654071",
"id": 177654071,
"node_id": "RA_kwDOLExXBM4Klsk3",
"name": "Komikku-x86_64-v1.11.1.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 32740985,
"download_count": 48,
"created_at": "2024-07-04T10:30:48Z",
"updated_at": "2024-07-04T10:30:49Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/v1.11.1/Komikku-x86_64-v1.11.1.apk"
}
],
"tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/v1.11.1",
"zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/v1.11.1",
"body": "## What's Changed\r\n### Welcome to Komikku's Discord\r\n\r\n### New\r\n- New App icon\r\n- More App themes\r\n- Theme based on entry's cover color\r\n- More *Suggestions* with a dedicated screen\r\n- Auto 2-way sync read chapters from Trackers & swipe read to update\r\n- Add NSFW filter & source search into Merge screen\r\n- A peek into Preview-build's 'What's New' in About screen\r\n- Support only Android 8+\r\n\r\n### Improve\r\n- Improved Faster loading of *Suggestions*\r\n- Better background for full cover view\r\n- Better cover-error & cover-loading\r\n- Sticky header & language for sources filter\r\n- Update translation\r\n- Update dependencies\r\n\r\n### Fix\r\n- Allow manual edit on Tracker's chapter (must hit Done on keyboard)\r\n- Fix Genre tag search while browsing *Suggestions* or from *Feed* Screen\r\n- Fix Bangumi tracker\r\n- Fix GDrive sync error messages\r\n- Fix sometimes it's loading forever if app sleeps for too long (in Source's feed & browse screens)\r\n\r\n#### Based on TachiyomiSY v1.10.6 & Mihon 0.16.5\r\n- New: Trust all extensions by repo\r\n- New: Add Namicomi support for external chapters on MD\r\n- Improved: Massively improve findFile performance\r\n- Fix: storage permission request for non-conforming devices\r\n\r\n**Full Changelog**: https://github.com/komikku-app/komikku/compare/v1.10.5...v1.11.1\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | 142ffbe5862bb64f209d003f077b69e5713582a8c36179f113ecb888a815cfdf |\r\n| arm64-v8a | a90979a0300b3aabb8d8c06bc42b73a61d1c29caa0a90d20b2daa1cbb402e917 |\r\n| armeabi-v7a | 23e6a866d43deda91bf5c71fbbf397eed0ea78ad3cdd291cf2fc188cabb01f62 |\r\n| x86 | bcecc7ef91ae1c4401a459f60d51e5c77e932147dbd1628264cceaf2ad9ae74f |\r\n| x86_64 | 028f1fec5169358f8ca68672e5fafbc059ea3159b42866c8dd48fe6daa9451c2 |\r\n\r\n### If you are unsure which apk to download then go with `Komikku-v1.11.1.apk`",
"reactions": {
"url": "https://api.github.com/repos/komikku-app/komikku/releases/163981746/reactions",
"total_count": 13,
"+1": 5,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 6,
"rocket": 2,
"eyes": 0
}
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/153587647",
"assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/153587647/assets",
"upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/153587647/assets{?name,label}",
"html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-25",
"id": 153587647,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOLExXBM4JJ4-_",
"tag_name": "pre-release-25",
"target_commitish": "master",
"name": "Komikku Preview Build 25",
"draft": false,
"prerelease": false,
"created_at": "2024-04-30T21:09:29Z",
"published_at": "2024-05-01T02:35:30Z",
"assets": [
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212988",
"id": 165212988,
"node_id": "RA_kwDOLExXBM4J2PM8",
"name": "Komikku-arm64-v8a-pre-25.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 32038995,
"download_count": 291,
"created_at": "2024-04-30T21:19:21Z",
"updated_at": "2024-04-30T21:19:23Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-arm64-v8a-pre-25.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212991",
"id": 165212991,
"node_id": "RA_kwDOLExXBM4J2PM_",
"name": "Komikku-armeabi-v7a-pre-25.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 27922527,
"download_count": 22,
"created_at": "2024-04-30T21:19:22Z",
"updated_at": "2024-04-30T21:19:23Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-armeabi-v7a-pre-25.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212990",
"id": 165212990,
"node_id": "RA_kwDOLExXBM4J2PM-",
"name": "Komikku-pre-25.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 71951778,
"download_count": 29,
"created_at": "2024-04-30T21:19:22Z",
"updated_at": "2024-04-30T21:19:24Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-pre-25.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212989",
"id": 165212989,
"node_id": "RA_kwDOLExXBM4J2PM9",
"name": "Komikku-x86-pre-25.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 33140783,
"download_count": 3,
"created_at": "2024-04-30T21:19:21Z",
"updated_at": "2024-04-30T21:19:23Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-x86-pre-25.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/165212992",
"id": 165212992,
"node_id": "RA_kwDOLExXBM4J2PNA",
"name": "Komikku-x86_64-pre-25.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 34218049,
"download_count": 3,
"created_at": "2024-04-30T21:19:22Z",
"updated_at": "2024-04-30T21:19:24Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-25/Komikku-x86_64-pre-25.apk"
}
],
"tarball_url": "https://api.github.com/repos/komikku-app/komikku/tarball/pre-release-25",
"zipball_url": "https://api.github.com/repos/komikku-app/komikku/zipball/pre-release-25",
"body": "### *Suggestions*\r\nAllow extensions to use both webste *Suggestions* & App's *Suggestions* by search\r\n\r\n---\r\n\r\n### Checksums\r\n\r\n| Variant | SHA-256 |\r\n| ------- | ------- |\r\n| Universal | b0b5e43223fea62f618e5e392361b81f1315ffe548ab870636b0dd14f5d4aea0 |\r\n| arm64-v8a | 4a578d022c253cc28839c6ccc3b11b4b50cae0759fa471e21ef4959fa7742e25 |\r\n| armeabi-v7a | edc908d23bf8807b265b9c349df703059bf509ce75af4485f43bf2c0809e7650 |\r\n| x86 | 381186454818cd69ed514aa5218db3dafc748050e484b698ad1a5031da89d3be |\r\n| x86_64 | 537e1a5d511e8594ec9630a9d54d676d955b8025c60c3b521e8408f0b2ac636f |\r\n"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/153163685",
"assets_url": "https://api.github.com/repos/komikku-app/komikku/releases/153163685/assets",
"upload_url": "https://uploads.github.com/repos/komikku-app/komikku/releases/153163685/assets{?name,label}",
"html_url": "https://github.com/komikku-app/komikku/releases/tag/pre-release-24-force",
"id": 153163685,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOLExXBM4JIRel",
"tag_name": "pre-release-24-force",
"target_commitish": "master",
"name": "Komikku Preview Build 24",
"draft": false,
"prerelease": false,
"created_at": "2024-04-29T19:34:08Z",
"published_at": "2024-04-29T02:33:25Z",
"assets": [
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789090",
"id": 164789090,
"node_id": "RA_kwDOLExXBM4J0nti",
"name": "Komikku-arm64-v8a-pre-24.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"content_type": "application/vnd.android.package-archive",
"state": "uploaded",
"size": 32038995,
"download_count": 98,
"created_at": "2024-04-28T21:18:04Z",
"updated_at": "2024-04-28T21:18:06Z",
"browser_download_url": "https://github.com/komikku-app/komikku/releases/download/pre-release-24-force/Komikku-arm64-v8a-pre-24.apk"
},
{
"url": "https://api.github.com/repos/komikku-app/komikku/releases/assets/164789087",
"id": 164789087,
"node_id": "RA_kwDOLExXBM4J0ntf",
"name": "Komikku-armeabi-v7a-pre-24.apk",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false