-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest-stable-flow.json
1172 lines (1172 loc) · 65.2 KB
/
manifest-stable-flow.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
[
{
"guid": "70b7b43b-471b-4159-b4be-56750c795499",
"name": "Auto Organize",
"description": "Automatically organize your media",
"overview": "Automatically organize your media",
"owner": "jellyfin",
"category": "General",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-autoorganize.png",
"versions": [
{
"version": "12.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- Use BaseItemKind (#76) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/auto-organize/auto-organize_12.0.0.0.zip",
"checksum": "1a1b08719718a38a8cc402565547866e",
"timestamp": "2022-01-08T17:21:56Z"
},
{
"version": "11.0.0.0",
"changelog": "### Bug Fixes ###\n- Fix saving configuration, Update for 10.8-alpha3 (#74) @NamekMaster\n\n### Code or Repo Maintenance ###\n- Fix saving configuration, Update for 10.8-alpha3 (#74) @NamekMaster",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/auto-organize/auto-organize_11.0.0.0.zip",
"checksum": "25bf10a6593fe0fe7389c75f4de46284",
"timestamp": "2021-12-12T13:48:15Z"
}
]
},
{
"guid": "9c4e63f1-031b-4f25-988b-4f7d78a8b53e",
"name": "Bookshelf",
"description": "Supports several different metadata providers and options for organizing your collection.\n",
"overview": "Manage your books",
"owner": "jellyfin",
"category": "Metadata",
"versions": [
{
"version": "7.0.0.0",
"changelog": "- 10.8 support (#33) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/bookshelf/bookshelf_7.0.0.0.zip",
"checksum": "4f9577d2e8741b292e179e1e7c43cd31",
"timestamp": "2022-01-08T17:22:13Z"
},
{
"version": "6.0.0.0",
"changelog": "### New features and improvements ### - Expand ComicInfo support and add support for comic covers (#34) @MinecraftPlaye - Use System.Text.Json (#29) @daullmer ### Dependency updates ### - chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#32) @dependabot ### CI & build changes ### - chore(ci): builds, releas drafter and more (#31) @h1dden-da3m0n\n",
"targetAbi": "10.7.7.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/bookshelf/bookshelf_6.0.0.0.zip",
"checksum": "0158783c8fba5044791263fba762907a",
"timestamp": "2021-10-31T02:05:24Z"
},
{
"version": "5.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/bookshelf/bookshelf_5.0.0.0.zip",
"checksum": "2063fb8ab317b8d77b200fde41eb5e1e",
"timestamp": "2020-12-05T22:03:13Z"
},
{
"version": "4.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/bookshelf/bookshelf_4.0.0.0.zip",
"checksum": "fc9f76c0815d766491e5b0f30ede55ed",
"timestamp": "2020-07-20T01:30:33Z"
}
]
},
{
"guid": "cfa0f7f4-4155-4d71-849b-d6598dc4c5bb",
"name": "Email",
"description": "Send SMTP email notifications",
"overview": "Send SMTP email notifications",
"owner": "jellyfin",
"category": "Notifications",
"versions": [
{
"version": "9.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/email/email_9.0.0.0.zip",
"checksum": "cfe7afc00f3fbd6d6ab8244d7ff968ce",
"timestamp": "2020-12-05T22:20:32Z"
},
{
"version": "7.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/email/email_7.0.0.0.zip",
"checksum": "680ca511d8ad84923cb04f024fd8eb19",
"timestamp": "2020-07-20T01:30:40Z"
}
]
},
{
"guid": "170a157f-ac6c-437a-abdd-ca9c25cebd39",
"name": "Fanart",
"description": "Scrape poster images for movies, shows, and artists in your library.",
"overview": "Scrape poster images from Fanart",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-fanart.png",
"versions": [
{
"version": "8.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#30) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/fanart/fanart_8.0.0.0.zip",
"checksum": "285e6097dc350d9655eb1fefa844094b",
"timestamp": "2022-01-08T17:22:44Z"
},
{
"version": "7.0.0.0",
"changelog": "- Remove jQuery and update to es6 (#26) @grafixeyehero\n- chore(ci): builds, releas drafter and more (#22) @h1dden-da3m0n\n- Use System.Text.Json (#21) @Ullmie02\n\n### New features and improvements ###\n- chore: plugin images (#25) @h1dden-da3m0n\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#23) @dependabot\n\n### CI & build changes ###\n- Update ci (#27) @h1dden-da3m0n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/fanart/fanart_7.0.0.0.zip",
"checksum": "9c778b54acc3a5f0f0cccb020b63e02b",
"timestamp": "2021-09-03T18:30:22Z"
},
{
"version": "6.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/fanart/fanart_6.0.0.0.zip",
"checksum": "ee4360bfcc8722d5a3a54cfe7eef640f",
"timestamp": "2020-12-05T22:25:43Z"
},
{
"version": "5.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/fanart/fanart_5.0.0.0.zip",
"checksum": "f842f7d65d23f377761c907d40b89647",
"timestamp": "2020-07-20T01:30:48Z"
}
]
},
{
"guid": "e29621a5-fa9e-4330-982e-ef6e54c0cad2",
"name": "Gotify Notification",
"description": "You must have a Gotify server to use this plugin!\n",
"overview": "Sends notifications to your Gotify server",
"owner": "crobibero",
"category": "Notifications",
"versions": [
{
"version": "7.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/gotify-notification/gotify-notification_7.0.0.0.zip",
"checksum": "7c5ff9e8792c8cdee7e8a2aaeb6cc093",
"timestamp": "2020-07-20T01:30:56Z"
}
]
},
{
"guid": "771e19d6-5385-4caf-b35c-28a0e865cf63",
"name": "Kodi Sync Queue",
"description": "This plugin will track all media changes while Kodi clients are offline to decrease sync times.",
"overview": "Sync all media changes with Kodi clients",
"owner": "jellyfin",
"category": "General",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-kodisyncqueue.png",
"versions": [
{
"version": "7.0.0.0",
"changelog": "### New features and improvements ###\n- chore: plugin images (#42) @h1dden-da3m0n\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#43) @dependabot\n\n### CI & build changes ###\n- Update ci (#47) @h1dden-da3m0n\n- Add pre-commit config (#41) @oddstr13\n- Add release drafter (#40) @oddstr13\n- Add workflows for code testing (#38) @oddstr13\n- Add analyzers and fix warnings (#37) @oddstr13\n\n### Code or Repo Maintenance ###\n- 10.8 support (#51) @crobibero\n- Split scripts and update to es6 (#46) @grafixeyehero\n- Use System.Text.Json (#34) @daullmer",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/kodi-sync-queue/kodi-sync-queue_7.0.0.0.zip",
"checksum": "e452370cae79462762f69f2506e77fe1",
"timestamp": "2022-01-08T17:23:13Z"
},
{
"version": "6.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/kodi-sync-queue/kodi-sync-queue_6.0.0.0.zip",
"checksum": "787c856c0d2ad2224cdd8b3094cf0329",
"timestamp": "2020-12-05T22:10:37Z"
},
{
"version": "5.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/kodi-sync-queue/kodi-sync-queue_5.0.0.0.zip",
"checksum": "08285397aecd93ea64a4f15d38b1bd7b",
"timestamp": "2020-07-20T01:31:22Z"
}
]
},
{
"guid": "958aad66-3784-4d2a-b89a-a7b6fab6e25c",
"name": "LDAP Authentication",
"description": "Authenticate your Jellyfin users against an LDAP database, and optionally create users who do not yet exist automatically.\n\nAllows the administrator to customize most aspects of the LDAP authentication process, including customizable search attributes, username attribute, and a search filter for administrative users (set on user creation). The user, via the \"Manual Login\" process, can enter any valid attribute value, which will be mapped back to the specified username attribute automatically as well.\n",
"overview": "Authenticate users against an LDAP database",
"owner": "jellyfin",
"category": "Authentication",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-ldapauth.png",
"versions": [
{
"version": "14.0.0.0",
"changelog": "### New features and improvements ###\n- Add User Settings Tests (#101) @1337joe\n- Add Settings Tests (#100) @1337joe\n- Changing the LDAP Admin filter can change existing LDAP authenticating users (#96) @jketreno\n- Add 'Enable All Folders' or selected folder list for LDAP user create (#90) @jketreno\n\n### Bug Fixes ###\n- Fix #92 - Re-registering of \"pageshow\" handler (#93) @jketreno",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_14.0.0.0.zip",
"checksum": "ee7baaf848be121f45b5177b65289cf7",
"timestamp": "2022-01-08T17:23:40Z"
},
{
"version": "13.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#89) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_13.0.0.0.zip",
"checksum": "72cae2785f838f563b22d5d773866189",
"timestamp": "2021-11-01T20:59:09Z"
},
{
"version": "12.0.0.0",
"changelog": "### Bug Fixes ###\n- Enable automatic referral following (#86) @gtbuchanan\n- fix admin lookup condition (#82) @Bobonium\n\n### CI & build changes ###\n- Update ci (#83) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- chore: plugin images (#79) @h1dden-da3m0n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_12.0.0.0.zip",
"checksum": "8a68b30bcf98eee76110c508d1cbefaf",
"timestamp": "2021-09-06T17:20:15Z"
},
{
"version": "11.0.0.0",
"changelog": "Fix case-sensitive username check\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_11.0.0.0.zip",
"checksum": "4da8f87c4746cba13f8103dfb974ca70",
"timestamp": "2021-04-15T09:03:43Z"
},
{
"version": "10.0.0.0",
"changelog": "Update for 10.7 support\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_10.0.0.0.zip",
"checksum": "62e7e1cd3ffae0944c14750a3c90df4f",
"timestamp": "2020-12-05T19:48:10Z"
},
{
"version": "9.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_9.0.0.0.zip",
"checksum": "7f2f83587a65a43ebf168e4058421463",
"timestamp": "2020-07-22T15:42:57Z"
},
{
"version": "8.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/ldap-authentication/ldap-authentication_8.0.0.0.zip",
"checksum": "8af8cee62717d63577f8b1e710839415",
"timestamp": "2020-07-20T01:31:30Z"
}
]
},
{
"guid": "9574ac10-bf23-49bc-949f-924f23cfa48f",
"name": "NextPVR",
"description": "Provides access to live TV, program guide, and recordings from NextPVR.\n",
"overview": "Live TV plugin for NextPVR",
"owner": "jellyfin",
"category": "LiveTV",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-nextpvr.png",
"versions": [
{
"version": "7.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- Changes for 10.8 alpha2 (#31) @emveepee\n- Use System.Text.Json (#17) @daullmer",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/nextpvr/nextpvr_7.0.0.0.zip",
"checksum": "eb204fc362b43bad171407832fed0459",
"timestamp": "2022-01-08T17:23:55Z"
},
{
"version": "6.0.0.0",
"changelog": "### New features and improvements ###\n- chore: plugin images (#24) @h1dden-da3m0n\n- Increase sid security (#19) @emveepee\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#22) @dependabot\n\n### CI & build changes ###\n- Update ci (#26) @h1dden-da3m0n\n- chore(ci): builds, releas drafter and more (#21) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- remove jQuery and update to es6 (#25) @grafixeyehero",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/nextpvr/nextpvr_6.0.0.0.zip",
"checksum": "85b692a6d0c3cf897867cbae31dffcaa",
"timestamp": "2021-07-20T20:56:25Z"
},
{
"version": "5.0.0.0",
"changelog": "Updated to use NextPVR API v5, no longer compatable with API v4.\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/nextpvr/nextpvr_5.0.0.0.zip",
"checksum": "d70f694d14bf9462ba2b2ebe110068d3",
"timestamp": "2020-12-05T22:24:03Z"
},
{
"version": "4.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/nextpvr/nextpvr_4.0.0.0.zip",
"checksum": "b15949d895ac5a8c89496581db350478",
"timestamp": "2020-07-20T01:31:38Z"
}
]
},
{
"guid": "4b9ed42f-5185-48b5-9803-6ff2989014c4",
"name": "Open Subtitles",
"description": "Download subtitles from the internet to use with your media files.",
"overview": "Download subtitles for your media",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-opensubtitles.png",
"versions": [
{
"version": "17.0.0.0",
"changelog": "### Bug Fixes ###\n- Move OpenSubtitlesHandler project to folder (#85) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/open-subtitles/open-subtitles_17.0.0.0.zip",
"checksum": "a4adafc1c813f720773ffe7cc4455645",
"timestamp": "2022-01-08T17:24:29Z"
},
{
"version": "12.0.0.0",
"changelog": "### Bug Fixes ###\n- Fixes, language improvements, code cleanup & error logging (#67) @MBR-0001",
"targetAbi": "10.7.7.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/open-subtitles/open-subtitles_12.0.0.0.zip",
"checksum": "3244dc49e494bfcf66b783660b7a5a17",
"timestamp": "2021-10-21T04:49:46Z"
},
{
"version": "11.0.0.0",
"changelog": "### Major features and improvements ###\n- Switch to new API (#54) @MBR-0001\n\n### New features and improvements ###\n- chore: plugin images (#50) @h1dden-da3m0n\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#45) @dependabot\n\n### CI & build changes ###\n- Update ci (#55) @h1dden-da3m0n\n- chore(ci): builds, releas drafter and more (#42) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- Add analyzers, remove all warnings (#61) @crobibero\n- Remove jquery and update to es6 (#51) @grafixeyehero\n- Add analyzers (#44) @crobibero",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/open-subtitles/open-subtitles_11.0.0.0.zip",
"checksum": "30b5ae5d6e0deab03364d1d861cdd911",
"timestamp": "2021-08-28T18:42:32Z"
},
{
"version": "10.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/open-subtitles/open-subtitles_10.0.0.0.zip",
"checksum": "ed99d03ec463bf15fca1256a113f57b4",
"timestamp": "2020-12-05T21:56:19Z"
},
{
"version": "9.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/open-subtitles/open-subtitles_9.0.0.0.zip",
"checksum": "16789b26497cea0509daf6b18c579340",
"timestamp": "2020-07-20T01:32:00Z"
}
]
},
{
"guid": "5c534381-91a3-43cb-907a-35aa02eb9d2c",
"name": "Playback Reporting",
"description": "Collect and show user play statistics",
"overview": "Collect and show user play statistics",
"owner": "jellyfin",
"category": "General",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-playbackreporting.png",
"versions": [
{
"version": "11.0.0.0",
"changelog": "- chore(deps): bump SQLitePCL.pretty.netstandard from 2.1.0 to 2.2.0 (#40) @dependabot\n\n### New features and improvements ###\n- chore: plugin images (#41) @h1dden-da3m0n\n\n### CI & build changes ###\n- Update ci (#45) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- 10.8 (#49) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/playback-reporting/playback-reporting_11.0.0.0.zip",
"checksum": "d750a6b41799142370fa2f40c70fea9d",
"timestamp": "2022-01-08T17:24:44Z"
},
{
"version": "10.0.0.0",
"changelog": "* Fix query to PlayActivity endpoint on User Playback Report (#35) @Stampede10343 * Feature/client timezone awareness (#37) @Stampede10343\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/playback-reporting/playback-reporting_10.0.0.0.zip",
"checksum": "b56ad6715336a363d4477eb40d668491",
"timestamp": "2021-04-12T14:12:57Z"
},
{
"version": "9.0.0.0",
"changelog": "Add authentication to plugin endpoints\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/playback-reporting/playback-reporting_9.0.0.0.zip",
"checksum": "ca323b3dcb2cb86cc2e72a7a0f1eee22",
"timestamp": "2020-12-05T22:15:48Z"
},
{
"version": "8.0.0.0",
"changelog": "Add authentication to plugin endpoints\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/playback-reporting/playback-reporting_8.0.0.0.zip",
"checksum": "58644c505586542ef0b8b65e2f704bd1",
"timestamp": "2020-11-18T03:01:51Z"
},
{
"version": "7.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/playback-reporting/playback-reporting_7.0.0.0.zip",
"checksum": "6a361ef33bca97f9155856d02ff47380",
"timestamp": "2020-07-20T01:32:09Z"
}
]
},
{
"guid": "de228f12-e43e-4bd9-9fc0-2830819c3b92",
"name": "Pushbullet",
"description": "Get notifications via Pushbullet.\n",
"overview": "Pushbullet notification plugin",
"owner": "jellyfin",
"category": "Notifications",
"versions": [
{
"version": "6.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/pushbullet/pushbullet_6.0.0.0.zip",
"checksum": "248cf3d56644f1d909e75aaddbdfb3a6",
"timestamp": "2020-12-06T02:47:53Z"
},
{
"version": "5.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/pushbullet/pushbullet_5.0.0.0.zip",
"checksum": "dabbdd86328b2922a69dfa0c9e1c8343",
"timestamp": "2020-07-20T01:32:17Z"
}
]
},
{
"guid": "F240D6BE-5743-441B-87F1-A70ECAC42642",
"name": "Pushover",
"description": "Send messages to a wide range of devices through Pushover.",
"overview": "Send notifications via Pushover",
"owner": "crobibero",
"category": "Notifications",
"versions": [
{
"version": "4.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/pushover/pushover_4.0.0.0.zip",
"checksum": "56a0da16c7e48cc184987737b7e155dd",
"timestamp": "2020-07-20T01:32:25Z"
}
]
},
{
"guid": "d4312cd9-5c90-4f38-82e8-51da566790e8",
"name": "Reports",
"description": "Generate reports of your media library",
"overview": "Generate reports of your media library",
"owner": "jellyfin",
"category": "General",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-reports.png",
"versions": [
{
"version": "14.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- Use BaseItemKind (#52) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/reports/reports_14.0.0.0.zip",
"checksum": "b7586cc3ef692576f425a303e9d398ee",
"timestamp": "2022-01-08T17:24:56Z"
},
{
"version": "12.0.0.0",
"changelog": "Fix Jellyfin 10.7 compatibility\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/reports/reports_12.0.0.0.zip",
"checksum": "cb16b92a8e0dc19f92eb0f46b3a64936",
"timestamp": "2021-06-19T17:23:15Z"
},
{
"version": "11.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/reports/reports_11.0.0.0.zip",
"checksum": "d71bc6a4c008e58ee70ad44c83bfd310",
"timestamp": "2020-12-05T22:00:46Z"
},
{
"version": "10.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/reports/reports_10.0.0.0.zip",
"checksum": "3917e75839337475b42daf2ba0b5bd7b",
"timestamp": "2020-10-19T19:30:41Z"
},
{
"version": "9.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/reports/reports_9.0.0.0.zip",
"checksum": "5b5ad8d885616a21e8d1e8eecf5ea979",
"timestamp": "2020-10-16T23:52:37Z"
}
]
},
{
"guid": "94fb77c3-55ad-4c50-bf4e-4e5497467b79",
"name": "Slack Notifications",
"description": "Get notifications via Slack.\n",
"overview": "Get notifications via Slack",
"owner": "jellyfin",
"category": "Notifications",
"versions": [
{
"version": "7.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/slack-notifications/slack-notifications_7.0.0.0.zip",
"checksum": "1d5330a77ce7b2a9ac8e5d58088a012c",
"timestamp": "2020-12-05T22:40:02Z"
},
{
"version": "6.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/slack-notifications/slack-notifications_6.0.0.0.zip",
"checksum": "ede4cbe064542d1ecccc5823921bee4b",
"timestamp": "2020-07-20T01:32:50Z"
}
]
},
{
"guid": "bc4aad2e-d3d0-4725-a5e2-fd07949e5b42",
"name": "TMDb Box Sets",
"description": "Automatically create movie box sets based on TMDb collections",
"overview": "Automatically create movie box sets based on TMDb collections",
"owner": "jellyfin",
"category": "Metadata",
"versions": [
{
"version": "9.0.0.0",
"changelog": "- Use BaseItemKind (#56) @crobibero\n\n### Bug Fixes ###\n- Update TMDbBoxSetManager.cs (#49) @WWWesten",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tmdb-box-sets/tmdb-box-sets_9.0.0.0.zip",
"checksum": "402e47f4f1c13ad1aa52f8bae6f29fc0",
"timestamp": "2022-01-08T17:25:18Z"
},
{
"version": "8.0.0.0",
"changelog": "- 10.8 support (#47) @crobibero\n- Fix #36: Save button has wrong text (#40) @danimart1991\n\n### New features and improvements ###\n- Strip Collection string multilanguage (#43) @danimart1991\n- Fix #38: NullReferenceException on Collection Name (#41) @danimart1991\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#39) @dependabot\n\n### CI & build changes ###\n- chore(ci): builds, releas drafter and more (#34) @h1dden-da3m0n",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tmdb-box-sets/tmdb-box-sets_8.0.0.0.zip",
"checksum": "a45b5384f3bb81a86f7b4fd4da18a644",
"timestamp": "2021-11-01T21:03:17Z"
},
{
"version": "7.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tmdb-box-sets/tmdb-box-sets_7.0.0.0.zip",
"checksum": "1551792e6af4d36f2cead01153c73cf0",
"timestamp": "2020-12-05T22:07:21Z"
},
{
"version": "6.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tmdb-box-sets/tmdb-box-sets_6.0.0.0.zip",
"checksum": "b92b68a922c5fcbb8f4d47b8601b01b6",
"timestamp": "2020-07-20T01:32:58Z"
}
]
},
{
"guid": "4fe3201e-d6ae-4f2e-8917-e12bda571281",
"name": "Trakt",
"description": "Record your watched media with Trakt.\n",
"overview": "Record your watched media with Trakt",
"owner": "jellyfin",
"category": "General",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-trakt.png",
"versions": [
{
"version": "14.0.0.0",
"changelog": "### New features and improvements ###\n- Handle TV show rewatches (#97) @dulli\n- Don't treat TVDB Id specially for episodes (#93) @SenorSmartyPants\n\n### Code or Repo Maintenance ###\n- Use BaseItemKind (#98) @crobibero\n- Remove all warnings in project (#96) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/trakt/trakt_14.0.0.0.zip",
"checksum": "82e41d5c0ecf59743627fac10d27a080",
"timestamp": "2022-01-08T17:25:30Z"
},
{
"version": "13.0.0.0",
"changelog": "### CI & build changes ###\n- Update ci (#85) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- 10.8 support (#91) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/trakt/trakt_13.0.0.0.zip",
"checksum": "408b38f1335ee1f947890752004cb017",
"timestamp": "2021-11-01T21:03:41Z"
},
{
"version": "12.0.0.0",
"changelog": "- remove jQuery and update to es6 (#78) @grafixeyehero\n- Use Trakt last watched date when importing (#63) @netpok\n- Use System.Text.Json (#61) @Ullmie02\n- chore: plugin images (#76) @h1dden-da3m0n\n- Fix save button label (#72) @Vagab0nd\n- Fix AUTHED_API_POST_LIMIT (#65) @dgalli1\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#68) @dependabot\n- chore(ci): builds, releas drafter and more (#66) @h1dden-da3m0n\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/trakt/trakt_12.0.0.0.zip",
"checksum": "f910593ca1ad68f1a90a08fa255281b7",
"timestamp": "2021-06-14T05:27:08Z"
},
{
"version": "11.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/trakt/trakt_11.0.0.0.zip",
"checksum": "2257ccde1e39114644a27e0966a0bf2d",
"timestamp": "2020-12-05T19:56:12Z"
},
{
"version": "10.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/trakt/trakt_10.0.0.0.zip",
"checksum": "ab67e6b59ea2e7860a6a3ff7b8452759",
"timestamp": "2020-07-20T01:33:06Z"
}
]
},
{
"guid": "3fd018e5-5e78-4e58-b280-a0c068febee0",
"name": "TVHeadend",
"description": "Manage TVHeadend from Jellyfin",
"overview": "Manage TVHeadend from Jellyfin",
"owner": "jellyfin",
"category": "LiveTV",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-tvheadend.png",
"versions": [
{
"version": "10.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#42) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvheadend/tvheadend_10.0.0.0.zip",
"checksum": "2e11b1af9c3c92b4bc70f537cda8f0a5",
"timestamp": "2022-01-08T17:25:55Z"
},
{
"version": "9.0.0.0",
"changelog": "### New features and improvements ###\n- chore: plugin images (#37) @h1dden-da3m0n\n\n### CI & build changes ###\n- Update ci (#39) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- reduce log spam and clean up log messages (#41) @Shadowghost\n- Remove jquery (#38) @grafixeyehero",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvheadend/tvheadend_9.0.0.0.zip",
"checksum": "a5bd2c65ae2b2b3398ae2bbfd5d92b47",
"timestamp": "2021-09-03T11:05:07Z"
},
{
"version": "8.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvheadend/tvheadend_8.0.0.0.zip",
"checksum": "64be4d0b4118e0a59a290c187338b4f0",
"timestamp": "2021-04-15T08:56:26Z"
},
{
"version": "7.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvheadend/tvheadend_7.0.0.0.zip",
"checksum": "1abbfce737b6962f4b1b2255dc63e932",
"timestamp": "2021-01-05T16:20:33Z"
},
{
"version": "6.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvheadend/tvheadend_6.0.0.0.zip",
"checksum": "143c34fd70d7173b8912cc03ce4b517d",
"timestamp": "2020-07-20T01:33:15Z"
}
]
},
{
"guid": "022a3003-993f-45f1-8565-87d12af2e12a",
"name": "InfuseSync",
"description": "This plugin will track all media changes while any Infuse clients are offline to decrease sync times when logging back in to your server.",
"overview": "Blazing fast indexing for Infuse",
"owner": "Firecore LLC",
"imageURL": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/InfuseSync/thumb.png",
"category": "General",
"versions": [
{
"version": "1.4.1.0",
"changelog": "Added support for libraries with shared network folders for non-admin users.\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/InfuseSync-jellyfin/InfuseSync-jellyfin-1.4.1.zip",
"checksum": "fece6cb4736503a325592bcee3aea56a",
"timestamp": "2021-10-22T06:42:00Z"
}
]
},
{
"guid": "8119f3c6-cfc2-4d9c-a0ba-028f1d93e526",
"name": "Cover Art Archive",
"description": "This plugin provides images from the Cover Art Archive https://musicbrainz.org/doc/Cover_Art_Archive and depends on the MusicBrainz metadata provider to know what images belong where\n",
"overview": "MusicBrainz Cover Art Archive",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-coverartarchive.png",
"versions": [
{
"version": "7.0.0.0",
"changelog": "### Bug Fixes ###\n- fix client string (#19) @Shadowghost\n\n### Code or Repo Maintenance ###\n- Fix readme (#20) @Shadowghost",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_7.0.0.0.zip",
"checksum": "005e308e111b3b3b068e67c9ec6c6e1e",
"timestamp": "2022-01-08T17:22:30Z"
},
{
"version": "6.0.0.0",
"changelog": "### Bug Fixes ###\n- Fix contact uri (#17) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_6.0.0.0.zip",
"checksum": "b4d5687142ae4210d43262ae6d9d92c7",
"timestamp": "2022-01-08T11:43:13Z"
},
{
"version": "5.0.0.0",
"changelog": "### Major features and improvements ###\n- Remove configuration page and migrate to MetaBrainz.MusicBrainz.CoverArt (#12) @MrTimscampi\n\n### Dependency updates ###\n- chore(deps): bump Microsoft.Extensions.Http from 5.0.0 to 6.0.0 (#14) @dependabot",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_5.0.0.0.zip",
"checksum": "ccc0878e5fc9b03cd1d828f74fe91ead",
"timestamp": "2022-01-07T21:16:19Z"
},
{
"version": "4.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#13) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_4.0.0.0.zip",
"checksum": "4dccac26c6470cebc25cb8d6e4201b4d",
"timestamp": "2021-11-01T20:57:28Z"
},
{
"version": "3.0.0.0",
"changelog": "### New features and improvements ###\n- chore: plugin images (#5) @h1dden-da3m0n\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#4) @dependabot\n\n### CI & build changes ###\n- Update ci (#9) @h1dden-da3m0n\n- Create release prep PR on release draft update (#7) @oddstr13\n- Add analyzers and remove all warnings (#3) @crobibero\n- Let there be CI (#2) @oddstr13",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_3.0.0.0.zip",
"checksum": "ca0ae1e2575cae9cb8d9f0164b8ab92c",
"timestamp": "2021-07-28T20:36:41Z"
},
{
"version": "2.0.0.0",
"changelog": "changelog\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_2.0.0.0.zip",
"checksum": "bea8fa4a37b3e7ed74e22266e7597a68",
"timestamp": "2020-12-06T02:51:03Z"
},
{
"version": "1.0.0.3",
"changelog": "changelog\n",
"targetAbi": "10.6.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/cover-art-archive/cover-art-archive_1.0.0.3.zip",
"checksum": "c502a5c54b168810614c1c40709b9598",
"timestamp": "2020-08-06T21:21:22Z"
}
]
},
{
"guid": "a677c0da-fac5-4cde-941a-7134223f14c8",
"name": "TheTVDB",
"description": "Get TV metadata from TheTvdb\n",
"overview": "Get TV metadata from TheTvdb",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-tvdb.png",
"versions": [
{
"version": "8.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- Use BaseItemKind (#59) @crobibero\n- update ruleset (#55) @crobibero\n\n### Dependency updates ###\n- chore(deps): bump Microsoft.Extensions.Http from 5.0.0 to 6.0.0 (#54) @dependabot",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_8.0.0.0.zip",
"checksum": "5b9ee28119c60dffeff67952d67ba67a",
"timestamp": "2022-01-08T17:25:42Z"
},
{
"version": "7.0.0.0",
"changelog": "- 10.8 support (#52) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_7.0.0.0.zip",
"checksum": "7ae213ac5c4d86ee968a0b7c69755393",
"timestamp": "2021-11-01T21:04:06Z"
},
{
"version": "6.0.0.0",
"changelog": "### Bug Fixes ###\n- Changed NormalizationForm to FormC (#45) @sushilicious\n\n### CI & build changes ###\n- Update ci (#42) @h1dden-da3m0n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_6.0.0.0.zip",
"checksum": "0d2bcfa13da7e10efa8874b445f92ba6",
"timestamp": "2021-08-07T21:24:50Z"
},
{
"version": "5.0.0.0",
"changelog": "* fix catching exceptions\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_5.0.0.0.zip",
"checksum": "ad07e5890042799642e4056ebf5620c0",
"timestamp": "2021-05-14T12:01:21Z"
},
{
"version": "4.0.0.0",
"changelog": "Fix getting metadata\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_4.0.0.0.zip",
"checksum": "97e82c193bf8c70c28158bdd4abb638d",
"timestamp": "2021-04-18T19:10:58Z"
},
{
"version": "3.0.0.0",
"changelog": "Fix getting metadata",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_3.0.0.0.zip",
"checksum": "108bb40691f7b08ebd28f78afd7d196f",
"timestamp": "2021-03-11T05:41:03Z"
},
{
"version": "2.0.0.0",
"changelog": "Remove from Jellyfin core.\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_2.0.0.0.zip",
"checksum": "e46cee334476a1b475e5c553171c4cb6",
"timestamp": "2020-12-16T20:03:28Z"
},
{
"version": "1.0.0.0",
"changelog": "Remove from Jellyfin core.\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/thetvdb/thetvdb_1.0.0.0.zip",
"checksum": "5a3dca5c0db4824d83bfd4e7e2b7bf11",
"timestamp": "2020-12-06T02:56:40Z"
}
]
},
{
"guid": "a2b2a7ed-aa28-4521-a64a-63d86901f246",
"name": "AniDB",
"description": "AniDB metadata provider\n",
"overview": "AniDB metadata provider",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-anidb.png",
"versions": [
{
"version": "5.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#13) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anidb/anidb_5.0.0.0.zip",
"checksum": "8bcfbf425f9c2d4c6f38edb8c4f05377",
"timestamp": "2022-01-08T17:20:54Z"
},
{
"version": "4.0.0.0",
"changelog": "### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#8) @dependabot\n\n### CI & build changes ###\n- Update ci (#10) @h1dden-da3m0n\n\n### Code or Repo Maintenance ###\n- chore: plugin images (#9) @h1dden-da3m0n",
"targetAbi": "10.7.7.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anidb/anidb_4.0.0.0.zip",
"checksum": "e8957962ec6d3a3e811b1804c608b294",
"timestamp": "2021-09-07T21:31:08Z"
},
{
"version": "3.0.0.0",
"changelog": "* Explicit decompress no longer needed (#4) @oddstr13 * Let there be CI (#3) @oddstr13\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anidb/anidb_3.0.0.0.zip",
"checksum": "574104cf6f64989214dbc1680861fa71",
"timestamp": "2021-03-12T23:32:20Z"
},
{
"version": "2.0.0.0",
"changelog": "- Split out from the Anime plugin - Unpin patch version of DependencyInjection\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anidb/anidb_2.0.0.0.zip",
"checksum": "9b69500943308d01e0e2e97432343468",
"timestamp": "2021-03-10T19:43:49Z"
}
]
},
{
"guid": "1bd22884-44be-40f3-ad95-fc4a7834ba2c",
"name": "AniList",
"description": "AniList metadata provider\n",
"overview": "AniList metadata provider",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-anilist.png",
"versions": [
{
"version": "5.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#18) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anilist/anilist_5.0.0.0.zip",
"checksum": "e9cac399791004a163eec2aeb5a4d11b",
"timestamp": "2022-01-08T17:21:07Z"
},
{
"version": "4.0.0.0",
"changelog": "### Bug Fixes ###\n- Fix Genre settings (#15) @CommandStorm5\n\n### CI & build changes ###\n- ci: set ABI version and more repo automation (#17) @h1dden-da3m0n",
"targetAbi": "10.7.7.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anilist/anilist_4.0.0.0.zip",
"checksum": "0c9335b5ac2c873473446ef5ab91b2be",
"timestamp": "2021-09-21T20:16:23Z"
},
{
"version": "3.0.0.0",
"changelog": "### New features and improvements ###\n- Add original title preference option (#7) @robertgzr\n- Add native Japanese title to the original title field (#4) @ayyu\n- Add option to hide tags that are marked as spoilers (#5) @sqlstatement\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#6) @dependabot\n\n### CI & build changes ###\n- Update ci (#11) @h1dden-da3m0n\n- Let there be CI (#3) @oddstr13\n\n### Code or Repo Maintenance ###\n- chore: plugin images (#8) @h1dden-da3m0n",
"targetAbi": "10.7.7.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anilist/anilist_3.0.0.0.zip",
"checksum": "276831fbfb1c12f60feb978e74384157",
"timestamp": "2021-09-07T21:33:18Z"
},
{
"version": "2.0.0.0",
"changelog": "- Split out from the Anime plugin - Unpin patch version of DependencyInjection\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anilist/anilist_2.0.0.0.zip",
"checksum": "3d3ab2231231e981f42f46745dd4a3fd",
"timestamp": "2021-03-10T19:47:04Z"
}
]
},
{
"guid": "776d9158-b91f-49d9-82c5-dacce63d63b8",
"name": "AniSearch",
"description": "AniSearch metadata provider\n",
"overview": "AniSearch metadata provider",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-anisearch.png",
"versions": [
{
"version": "4.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- 10.8 support (#7) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anisearch/anisearch_4.0.0.0.zip",
"checksum": "f4296b98d7cadd0f0d42f9c7ca63fba4",
"timestamp": "2022-01-08T17:21:39Z"
},
{
"version": "3.0.0.0",
"changelog": "### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#3) @dependabot\n\n### CI & build changes ###\n- Update ci (#5) @h1dden-da3m0n\n- Let there be CI (#2) @oddstr13\n\n### Code or Repo Maintenance ###\n- chore: plugin images (#4) @h1dden-da3m0n",
"targetAbi": "10.7.7.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anisearch/anisearch_3.0.0.0.zip",
"checksum": "de566977fe80a8d75475b7de937c8734",
"timestamp": "2021-09-07T21:31:55Z"
},
{
"version": "2.0.0.0",
"changelog": "- Split out from the Anime plugin - Remove dependency on DependencyInjection\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/anisearch/anisearch_2.0.0.0.zip",
"checksum": "761b4c98926541c79ed2d24be04f4a1f",
"timestamp": "2021-03-10T19:54:53Z"
}
]
},
{
"guid": "88d809e2-056b-47f4-9911-073949b9963f",
"name": "Kitsu",
"description": "Kitsu metadata provider\n",
"overview": "Kitsu metadata provider",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-kitsu.png",
"versions": [
{
"version": "3.0.0.0",
"changelog": "### New features and improvements ###\n- chore: plugin images (#5) @h1dden-da3m0n\n\n### Dependency updates ###\n- chore(deps): bump release-drafter/release-drafter from v5.14.0 to v5.15.0 (#4) @dependabot\n\n### CI & build changes ###\n- Update ci (#6) @h1dden-da3m0n\n- Let there be CI (#2) @oddstr13\n\n### Code or Repo Maintenance ###\n- 10.8 support (#9) @crobibero\n\n### Documentation updates ###\n- chore(doc): doc and editorconf update (#3) @h1dden-da3m0n",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/kitsu/kitsu_3.0.0.0.zip",
"checksum": "97bffe423d3f090db13f086f204c807c",
"timestamp": "2022-01-08T17:22:57Z"
},
{
"version": "2.0.0.0",
"changelog": "- Split out from the Anime plugin - Remove dependency on DependencyInjection\n",
"targetAbi": "10.7.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/kitsu/kitsu_2.0.0.0.zip",
"checksum": "0989ef4483639edb9a4ec266905f386a",
"timestamp": "2021-03-10T20:00:06Z"
}
]
},
{
"guid": "a4a488d0-17a3-4919-8d82-7f3de4f6b209",
"name": "TVmaze",
"description": "Get TV metadata from TVmaze\n",
"overview": "Get TV metadata from TVmaze",
"owner": "jellyfin",
"category": "Metadata",
"imageUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/images/jellyfin-plugin-tvmaze.png",
"versions": [
{
"version": "10.0.0.0",
"changelog": "### Code or Repo Maintenance ###\n- Fix build (#36) @crobibero\n\n### Dependency updates ###\n- chore(deps): bump Microsoft.Extensions.Http from 5.0.0 to 6.0.0 (#33) @dependabot",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvmaze/tvmaze_10.0.0.0.zip",
"checksum": "7a1bb4eccc01169f9bf31e5276c8d61e",
"timestamp": "2022-01-08T17:26:09Z"
},
{
"version": "9.0.0.0",
"changelog": "### Bug Fixes ###\n- tv-maze -> tvmaze in release-drafter config (#28) @oddstr13\n\n### Code or Repo Maintenance ###\n- 10.8 support (#32) @crobibero",
"targetAbi": "10.8.0.0",
"sourceUrl": "https://flow.lxnchan.cn/jellyfin-plugin-mirror/plugin/tvmaze/tvmaze_9.0.0.0.zip",