-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaddons.xml
1732 lines (1495 loc) · 54.1 KB
/
addons.xml
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
<?xml version='1.0' encoding='UTF-8'?>
<addons><addon id="repository.aussieaddons-devel" name="Aussie Add-ons (development)" provider-name="Aussie Add-ons" version="1.2.0">
<extension name="Aussie Add-ons Development Repository" point="xbmc.addon.repository">
<dir minversion="1.0.0">
<info compressed="false">https://aussieaddons.com/repository-devel/leia/addons.xml</info>
<checksum>https://aussieaddons.com/repository-devel/leia/addons.xml.md5</checksum>
<datadir zip="true">https://aussieaddons.com/repository-devel/leia/</datadir>
</dir>
<dir minversion="18.9.701">
<info compressed="false">https://aussieaddons.com/repository-devel/matrix/addons.xml</info>
<checksum>https://aussieaddons.com/repository-devel/matrix/addons.xml.md5</checksum>
<datadir zip="true">https://aussieaddons.com/repository-devel/matrix/</datadir>
</dir>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Install Aussie Add-ons (development) plugins</summary>
<description>Download and install add-ons from the Aussie Add-ons development repository. This repository may include unstable add-ons. Use at your own risk.</description>
<platform>all</platform>
<news>[B]Version v1.2.0[/B]
- Change to separate folder layout
[B]Version v1.1.0[/B]
- Use HTTPS for all URLs
[B]Version v1.0.0[/B]
- Initial version
</news>
</extension>
</addon><addon id="script.module.pycaption" name="pycaption" provider-name="Aussie Add-ons" version="0.7.6-2_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.future" />
<import addon="script.module.six" />
</requires>
<extension library="lib" point="xbmc.python.module" />
<extension point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
</assets>
<summary>Python caption reading/writing module</summary>
<description>pycaption is a caption reading/writing module. Use one of the given Readers to read content into a CaptionSet object, and then use one of the Writers to output the CaptionSet into captions of your desired format.</description>
<platform>all</platform>
<source>https://github.com/pbs/pycaption</source>
<website>https://github.com/pbs/pycaption</website>
<license>Apache 2.0</license>
<news>[B]Version v0.7.6-2[/B]
- build for leia and matrix
[B]Version v0.7.6-1[/B]
- Refactor replace past cmp with equivalent expression
- Refactor old_div to floor div // or div /
[B]Version v0.7.6[/B]
- Update .travis.yml
[B]Version v0.5.6[/B]
- Remove SCC and DFXP support for Python < 2.7
- Ignore cues with missing content
[B]Version v0.5.5[/B]
- Initial version
</news></extension>
</addon><addon id="script.module.warrant" name="Warrant" provider-name="Aussie Add-ons" version="1.0.1_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.dateutil" version="2.4.2" />
<import addon="script.module.six" version="1.9.0" />
</requires>
<extension library="lib" point="xbmc.python.module" />
<extension point="xbmc.addon.metadata">
<language />
<summary lang="en">Warrant for Python</summary>
<description lang="en">Packed for Kodi from https://github.com/capless/warrant</description>
<platform>all</platform>
<news>[B]Version v1.0.1[/B]
- Correctly get tag name
- Run on tag instead of release
- fix dev commit msg again
- fix dev commit msg, tidyup
- Deploy to prod repo
- Update deploy.yml
- switch to personal access token
- Forgot to change TRAVIS_COMMIT_MSG to new
- Fix syntax error and finish script for dev
- Create deploy.yml - test run
- Update to build leia/matrix
[B]Version v1.0.0[/B]
- Initial version
</news></extension>
</addon><addon id="plugin.video.nrl-live" name="NRL Live" provider-name="Aussie Add-ons" version="1.5.10_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.common.plugin.cache" />
<import addon="script.module.aussieaddonscommon" />
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.drmhelper" />
<import addon="script.module.future" />
<import addon="script.module.requests" />
</requires>
<extension library="default.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension library="default.py" point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<summary>NRL Live add-on</summary>
<description>NRL Live allows subscribers of Telstra's NRL Digital Pass to stream live matches, match replays, and many other videos offered by this service.</description>
<provides>video</provides>
<platform>all</platform>
<news>[B]Version v1.5.10[/B]
- Disable stream auth
- add addon_version param to kodi urls
[B]Version v1.5.9[/B]
- fix live match listing for matrix
[B]Version v1.5.8[/B]
- New settings format, fix 19 compat issues
[B]Version v1.5.7[/B]
- GitHub Actions config
[B]Version v1.5.6[/B]
- Oauth PKCE for paid/linked authorisation
[B]Version v1.5.5[/B]
- cleanup
- Only get media auth token for live
- Kodi 19 vod fixed
[B]Version v1.5.4[/B]
- Live videos for 2020
- ooyalahelper -> stream_auth
[B]Version v1.5.3[/B]
- Fix shortlist url
- New streaming API
[B]Version v1.5.2[/B]
- Disable stream auth
- add addon_version param to kodi urls
- fix live match listing for matrix
- New settings format, fix 19 compat issues
- GitHub Actions config
- Oauth PKCE for paid/linked authorisation
- cleanup
- Only get media auth token for live
- Kodi 19 vod fixed
- Live videos for 2020
- ooyalahelper -> stream_auth
- Fix shortlist url
- New streaming API
[B]Version v1.5.10[/B]
- Disable stream auth
- add addon_version param to kodi urls
- fix live match listing for matrix
- New settings format, fix 19 compat issues
- GitHub Actions config
- Oauth PKCE for paid/linked authorisation
- cleanup
- Only get media auth token for live
- Kodi 19 vod fixed
- Live videos for 2020
- ooyalahelper -> stream_auth
- Fix shortlist url
- New streaming API
- Update to 2020 auth, add tests
- Fix travis config
- travis update for notifications and py27
[B]Version v1.4.5[/B]
- Fix url for upcoming matches
[B]Version v1.4.4[/B]
- additional change to revert
[B]Version v1.4.3[/B]
- Revert changes made in 9744f08 for preseason games
[B]Version v1.4.2[/B]
- Remove live streaming quality settings
- Fix live matches for preseason trials
[B]Version v1.4.1[/B]
- Remove bom on all xml requests
[B]Version v1.4.0[/B]
- Fix xml errors for live match menu
- update to new travis.yml
- Better icon
- New generic uncopyrighted icon
- Add mobile authentication
[B]Version v1.3.6[/B]
- Fix JSON errors for paid token
[B]Version v1.3.5[/B]
- Fix No JSON object could be decoded errors in auth
[B]Version v1.3.4[/B]
- Update for new auth api location
- Update README.md
[B]Version v1.3.3[/B]
- Disallow error reporting if ooyala detects overseas IP
- Remove replay quality settings
[B]Version v1.3.2[/B]
- Fix live matches following replay quality setting instead of live
- Raise exceptions for ooyala auth messages other than 'unauthorized location'
[B]Version v1.3.1[/B]
- Improve feedback for errors in login process
- Fix match highlights and add match replays category
[B]Version v1.3.0[/B]
- Finishing updating 2018 Free Live Pass auth, cleanup.
[B]Version v1.2.7[/B]
- add auth process for videos, start work on new sign in for telstra
[B]Version v1.2.6[/B]
- More live listing updates
[B]Version v1.2.5[/B]
- Rudimentary implementation of live matches
- Fix greyed out settings in Krypton, revert removing first run setting
- Remove firstrun setting
- fix greyed out settings issue
[B]Version v1.2.4[/B]
- Update README.md
- Improve error messages for nrl.com login
- Fix thumbnails, improve login settings, flake8 formatting
- Finish implementing videos from Match Highlights category
- Fix live video menu
- Implement in-app subscription option
- correct handling 404 for auth process
[B]Version v1.2.3[/B]
- Prepare for 2018 season
[B]Version v1.2.2[/B]
- Handle current year round number after season end
[B]Version v1.2.1[/B]
- quick fix for mktime overflow error
- Update provider name in addon.xml
[B]Version v1.2.0[/B]
- update travis token
- Major overhaul
- Small fix
- Better handling for no eligible services
[B]Version v1.1.8[/B]
- Fix several errors
[B]Version v1.1.7[/B]
- Use new requests functions/cleanup/fix DST error
- additional exception handling and logging
- flake8 compliance
[B]Version v1.1.6[/B]
- Fix incorrectly named variable
- Update README.md
[B]Version v1.1.5[/B]
- Replace HDS with HLS streams, use cache add-on
- Enhanced exception handling and logging
[B]Version v1.1.4[/B]
- Ooyala cleanup, cache user token
- Reinstate forced TLSv1
- Properly handle dummy list items
- Correct times for DST, fix for old quality settings
[B]Version v1.1.3[/B]
- Disable ordered headers
[B]Version v1.1.2[/B]
- Set default streaming method
- Small tidy-up, better formatting of live matches
- Fix parsing of live matches
[B]Version v1.1.1[/B]
- Fix error in utils, ascii encode game time
- Update README.md
[B]Version v1.1.0[/B]
- update addon.xml
- Overhaul of code
- Use bs4 for html parsing
- Update for 2017
- Fix 2016 season
- Update README.md
- update ooyalahelper
[B]Version v1.0.0[/B]
- Initial version
</news></extension>
</addon><addon id="plugin.video.afl-video" name="AFL Video" provider-name="Aussie Add-ons" version="2.0.13_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.aussieaddonscommon" />
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.drmhelper" />
<import addon="script.module.future" />
<import addon="script.module.requests" />
<import addon="script.common.plugin.cache" />
</requires>
<extension library="default.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<reuselanguageinvoker>true</reuselanguageinvoker>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<summary>AFL Video by Aussie Add-ons</summary>
<description>Watch the latest AFL replays, news and match reports. Live streaming available with a valid AFL Live Pass</description>
<website>http://aussieaddons.com/addons/afl/</website>
<source>https://github.com/xbmc-catchuptv-au/plugin.video.afl-video</source>
<disclaimer>This plugin is not affiliated with the AFL in any way.</disclaimer>
<provides>video</provides>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007</license>
<news>[B]Version v2.0.13[/B]
- Addon version in Kodi url
- Handle postponed game scores
- Correct dummy setting for AFLW upcoming
- Kodi 19 inputstream.adaptive
- GitHub Actions config
- Fix playback for older mp4 videos
[B]Version v2.0.9[/B]
- Fix external whitelist for tox and switch to py3
- Use HTTPS for some Telstra URLs
[B]Version v2.0.8[/B]
- Stop error reports for intermittent 404s and token expired
[B]Version v2.0.7[/B]
- Stop error reports from trying to play dummy titles
[B]Version v2.0.6[/B]
- Fix for 'unable to locate source' in older videos
[B]Version v2.0.5[/B]
- ooyala -> brightcove (again)
[B]Version v2.0.4[/B]
- Fix missing live streams
- Use inputstream.adaptive for live streams...
[B]Version v2.0.3[/B]
- Reinstate ooyala code
- Remove state setting
[B]Version v2.0.2[/B]
- Addon version in Kodi url
- Handle postponed game scores
- Correct dummy setting for AFLW upcoming
- Kodi 19 inputstream.adaptive
- GitHub Actions config
- Fix playback for older mp4 videos
- Fix external whitelist for tox and switch to py3
- Use HTTPS for some Telstra URLs
- Stop error reports for intermittent 404s and token expired
- Stop error reports from trying to play dummy titles
- Fix for 'unable to locate source' in older videos
- ooyala -> brightcove (again)
- Fix missing live streams
- Use inputstream.adaptive for live streams...
- Reinstate ooyala code
- Remove state setting
[B]Version v2.0.13[/B]
- Addon version in Kodi url
[B]Version v2.0.12[/B]
- Handle postponed game scores
- Correct dummy setting for AFLW upcoming
[B]Version v2.0.11[/B]
- Kodi 19 inputstream.adaptive
[B]Version v2.0.10[/B]
- GitHub Actions config
- Fix playback for older mp4 videos
- Fix external whitelist for tox and switch to py3
- Use HTTPS for some Telstra URLs
- Stop error reports for intermittent 404s and token expired
- Stop error reports from trying to play dummy titles
- Fix for 'unable to locate source' in older videos
- ooyala -> brightcove (again)
- Fix missing live streams
- Use inputstream.adaptive for live streams...
- Reinstate ooyala code
- Remove state setting
- Disable inputstream.adaptive for live streams
- remove playback settings relating to widevine
[B]Version v2.0.1[/B]
- Re-use python interpreter
[B]Version v2.0.0[/B]
- formatting
- Fix art for Kodi 19
- New live video location and move from ooyala to brightcove
- Update tests and data
- Update tox excludes
- ooyalahelper -> stream_auth
[B]Version v1.9.4[/B]
- Remove unused variables from fakes.py
- Add future dependency
- Python 3 compatibility
- New brightcove API for non-live videos
- Fix AFLW upcoming matches
- Add tests
- Remove blurbs
- Update from old strings.xml to .po
- Remove bundled etree
[B]Version v1.9.3[/B]
- Update to 2020 auth
- Fix travis config
- travis-ci config update for notifications and lock in py27
- Simplify handling of i.a and DRM failure messaging
[B]Version v1.9.2[/B]
- correct incorrect logic in play.py
- Fix free live games not playing
- Remove reliance on drmhelper hack
- Fix unicode errors, incorrect settings label
[B]Version v1.9.1[/B]
- Fix live streams for beginning of 2019 season (#2613)
[B]Version v1.9.0[/B]
- Add mobile data authentication (#2609)
- travis.yml - update old github url to new org
[B]Version v1.8.9[/B]
- fix token 403 errors (#2610)
[B]Version v1.8.8[/B]
- New auth 2019 (#2606)
- Feedback to user for upcoming (dummy) listings when selected (#2605)
- Add 'All' category
[B]Version v1.8.7[/B]
- Update to new auth process (#2601)
[B]Version v1.8.6[/B]
- Fix upcoming matches, Live Pass instructions (#2598)
- Implement manual token/in-app subscription (#2597)
[B]Version v1.8.5[/B]
- Handle outdated favourites links (#2594)
- Add AFLW content, fix UnboundLocalError issue (#2593)
- Improve m3u8 parsing, fixes live matches
[B]Version v1.8.4[/B]
- Remove unneeded functions and modules (#2587)
- Update to new travis.yml
- TypeError: object of type 'listreverseiterator' has no len()
- Merge remote-tracking branch 'refs/remotes/xbmc-catchuptv-au/remove-old-replays'
- Remove old replays and use API for seasons
- Begin work on restructuring addon
- Disable upcoming matches listings for now
[B]Version v1.8.3[/B]
- Clean up settings, method name fixes
- Update travis CI key for repo move
- Add higher res icons
- Use aussie addons common module, flake8 fixes
[B]Version v1.8.2[/B]
- Small error handling improvements (#2535)
[B]Version v1.8.1[/B]
- Use new requests functions and code cleanups
- Fix AttributeError: StorageServer instance has no attribute 'delete' #2267
- Update travisci config
- Add travisci deploy config
[B]Version v1.8.0[/B]
- Add Auto-generated Highlights back
- Added team video channels back
- Move JLT Series matches to the bottom
- Use VIC as the fallback state for live streams
- Don't require subscription for on-demand videos
[B]Version v1.7.9[/B]
- Remove debugging
- Fix for Ooyala video ID discovery on live matches
[B]Version v1.7.8[/B]
- Cleanups and better exception handling
- Cache token, add other live pass videos, more logging. (#1542)
[B]Version v1.7.7[/B]
- Fix some live matches not playing, handle ssl errors (#1081)
- Update README.md
[B]Version v1.7.6[/B]
- Code cleanups and error if trying live streaming on Python < 2.7
- update comm.py
- Fix broken paid subscriptions
[B]Version v1.7.5[/B]
- Remove forced TLSv1 from Ooyala
[B]Version v1.7.4[/B]
- ooyalahelper now using requests instead of urllib2
- Improve login process (#822)
[B]Version v1.7.3[/B]
- Support for paid subscriptions from afl.com.au
[B]Version v1.7.2[/B]
- Fix SSL erros
[B]Version v1.7.1[/B]
- Remove current round from 2016
- NAB Challenge now JLT. Renamed and added new rounds
- Fix for 'zero length field name in format' on Python < 2.7
- Update README.md
[B]Version v1.7.0[/B]
- Rename live pass subscription setting
- Minor enhancements to issue_reporter
- Update issue reporter, fix error in comm.py
- Cleanups for config.py and telstra_auth.py
- Cleanups and flake8 compatibility for default.py
- Code cleanups and flake8 fixes for Ooylahelper
- Disable username/password if subscription type is free
- fix missing line of code
- Fix indentation
- Style fixes, remove unused code
- Fix live streaming and update for 2017 replays
- Fix handling of non-ascii chars in titles
[B]Version v1.6.4[/B]
- Add better logging
- Fix live streaming
[B]Version v1.6.3[/B]
- Fix invalid token error
- Revert "Add files via upload"
- Fix SSL verification errors
- Add files via upload
- Add handling for bad login/no subscription
- Live Streaming fixes and code cleanups
- Add support for live videos
[B]Version v1.6.2[/B]
- Add new highlight category and fix errors with Editorial Highlights
[B]Version v1.6.1[/B]
- Revert removal of local version of ElementTree
[B]Version v1.6.0[/B]
- Update description for news, etc inclusion
- Big code cleanup, pep8 fixes
- Remove third party modules
- Add news, etc categories back as they still work
- Update README.md
[B]Version v1.5.0[/B]
- Update addon readme to reflect no club video
- Update license header
- Switch coding from tabs to spaces
- Add issue reporting, remove loading dialogs and club video
- Add Season 2016
[B]Version v1.4.0[/B]
- Support multiple seasons for match replays and remove busted categories
- Add match replay information for 2015
[B]Version v1.3.1[/B]
- Require v2.1.0 of xbmc.python for Gotham
[B]Version v1.3[/B]
- Update for Season 2014 inc. NAB Challenge
- Update README
[B]Version v1.2[/B]
- Restructure plugin to use shared tools
- Fix Round IDs for finals
[B]Version v1.1[/B]
- Initial version
</news></extension>
</addon><addon id="plugin.video.cricketaustralia" name="Cricket Live" provider-name="Aussie Add-ons" version="0.1.2_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.aussieaddonscommon" />
<import addon="script.module.drmhelper" />
</requires>
<extension library="addon.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension library="addon.py" point="xbmc.addon.metadata">
<reuselanguageinvoker>true</reuselanguageinvoker>
<summary>Cricket Live by Aussie Add-ons</summary>
<description>Watch live Cricket matches and other videos</description>
<website>http://aussieaddons.com/addons/cricket/</website>
<source>https://github.com/aussieaddons/plugin.video.cricketaustralia</source>
<provides>video</provides>
<platform>all</platform>
<news>[B]Version v0.1.2[/B]
- Addon version in Kodi url
[B]Version v0.1.1[/B]
- Fix for error on no live matches for Matrix
[B]Version v0.1.0[/B]
- Fix thumbnails
- Kodi 19 inputstream.adaptive
- add github actions config
- reuselanguageinvoker
- Style fixes, remove unused imports
- fix test for python 3
- tox
- Get videos from new API, remove deprecated ListItem contructor calls
- update settings
- Basic test coverage
- strings.po
[B]Version v0.0.4[/B]
- update for new API
[B]Version v0.0.3[/B]
- update travis token
[B]Version v0.0.2[/B]
- update addon.xml and travis.yml
- Fix for API change
- Improved live video listing/refreshing (#3)
- Update README.md
- Fix to restore news video stream support
- Website updates for 2018/19 season
- Include on-demand clips and DRM helper magic
[B]Version v0.0.1[/B]
- Initial version
</news></extension>
</addon><addon id="plugin.video.catchuptv.au.nine" name="9Now" provider-name="Aussie Add-ons" version="1.1.2_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.aussieaddonscommon" />
<import addon="script.module.drmhelper" />
<import addon="script.module.future" />
<import addon="script.module.pycaption" />
<import addon="script.module.requests" />
</requires>
<extension library="default.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension library="default.py" point="xbmc.addon.metadata">
<reuselanguageinvoker>true</reuselanguageinvoker>
<summary>9now add-on</summary>
<description>Watch live TV and catch up on all videos offered by the 9now service</description>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<provides>video</provides>
<platform>all</platform>
<news>[B]Version v1.1.2[/B]
- Fix for missing show description
- make parse_kodi_url safe
- Update addon.xml
[B]Version v1.1.1[/B]
- remove reassignment of play_item in play.py
- safer handling of getting upnext info
[B]Version v1.1.0[/B]
- add github actions config
- remove deprectated drmhelper settings
- Use inputstream.adaptive for HLS
- Fix python 3 tests
- Fix cache
- Style fixes
- Add future dependency
- Basic test coverage
- force_tlsv1=False
- quick fix for KeyError on playback
- Add plot info to series listings
- Offscreen listItem creation to speed up list generation in Kodi 18+
- Fix for setIsFolder Kodi 17 compatibility
- Formatting, change variable name
- Fix to make forward compatible with future Up Next versions
- Temporary fix to prevent video seek thumbs from being used as subtitles
- Update API urls (v2, web device) and spoof UA to fix intermittent service outages and missing entries
- Enable reuselanguageinvoker
- Fix for 404 response on non-existent next episode
- Update live TV URL to get 9Rush channel and fix errors caused by adding non-existent video info for live streams
- Add background fetch of API data
- Add UpNext integration and preliminary video info details
- Fix making list of shows by genre
- Split up list_series into separate list_series_by_genre function
- Change TVSERIESQUERY_URL to target device=web as device=android did not return all results
- Adjust cache to record when data was stored rather than when it is stale
- Add API request to get shows by genre rather than filtering from request for all shows
- Update classes.py
- POC caching mechanism to speed up list generation
- Add missing properties
- Add missing inputstream.adaptive.manifest_type property and add sort methods to episode list
- Speed up menu creation by creating ListItem offscreen
- Update comm.py
- Fix travis config
- travis update for notifications, py27, and github org name
[B]Version v1.0.4[/B]
- Fix News and Documentary genres not populating
- Show all episodes instead of just 'latest'
- fix error message for geoblocking
- fix handling of geoblocking errors
[B]Version v1.0.3[/B]
- Catch brightcove geoblocking errors (untested)
- Update logo, catch and log JSON errors
[B]Version v1.0.2[/B]
- Fix some nonetype errors
[B]Version v1.0.1[/B]
- Fix for unicode errors
- Fix wrong addon being called in settings
- Fix live channel playlist parsing
- Rework m3u8 parsing, missing airdate
[B]Version v1.0.0[/B]
- Update travisci token
- Fix live streams
- Add subtitles support
- Various fixes, add live video quality setting
- Rewrite add-on
[B]Version v0.1.0[/B]
- Bypass SSL Verification on platforms which lack SNI support
- Complete rewrite to work with 9Now
- Update README.md
[B]Version v0.0.3[/B]
- Move repo url from googlecode to github
- Fix failure to show all available shows
- Update README.md
[B]Version v0.0.2[/B]
- Initial version
</news></extension>
</addon><addon id="script.module.aussieaddonscommon" name="Aussie Add-ons Common" provider-name="Aussie Add-ons" version="1.3.3_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.future" />
<import addon="script.module.requests" />
</requires>
<extension library="lib" point="xbmc.python.module" />
<extension point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
</assets>
<summary>Common functions for Aussie Add-ons</summary>
<description>Common functions for Aussie Add-ons</description>
<source>https://github.com/aussieaddons/script.module.aussieaddonscommon</source>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007</license>
<news>[B]Version v1.3.3[/B]
- Issues not allowed to be submitted unless url is from current version
- Prevent tests from submitting an actual error report
- GitHub Actions config
- Fix not_already_reported for Kodi 19
- Fix multi-line message formatting in Kodi 19
- Fix issue reporting
- Ensure all repos are listed for being reportable
[B]Version v1.3.2[/B]
- Leia and Matrix in prod repo
- correct manage_repo arguments
- travis.yml - build liea and matrix
- LOGNOTICE -> LOGINFO
- test dev repo
[B]Version v1.3.1[/B]
- Prevent issue reports from 'Kodi boxes' that have modified addon versions
[B]Version v1.3.0[/B]
- set version to 0.0.1
- fix style
- repatch addon in test_utils
- Don't set ADDON until called
- Complete python 2/3 compatibility
- add session test, begin changes for py2/3 compatibility
- add future package to addon.xml, remove dependency on six in test_issue_reporter
- Python 2/3 compatibility for issue_reporter and test_issue_reporter
- Add issue_reporter unit tests, remove separate test requirements
- Add unit tests for utils.py
- move user_initiated logic into send_report
[B]Version v1.2.0[/B]
- Add platform as detected by Kodi to report summary
- Fix travis config
- travis-ci config update for notifications
- Add to org blacklist
- Create progress dialog for issue report immediately
- Busy dialog box fix
- Only allow reports for addons currently in repo
- Limit issue report titles to 256 chars
- Ensure debug mode is enabled for user reports. (#8)
[B]Version v1.1.5[/B]
- Add additional orgs to blacklist
[B]Version v1.1.4[/B]
- Update token
[B]Version v1.1.3[/B]
- Update GitHub references from xbmc-catchuptv-au to aussieaddons
- Add blacklisting for org (#6)
- Small tidy up
- Allow if hostname is blank when checking agains blacklist
- flake8
- Disallow reporting from known VPN/proxy addresses.
[B]Version v1.1.2[/B]
- Fix TypeError: can only concatenate list (not "unicode") to list
[B]Version v1.1.1[/B]
- Don't fail build on tag release
[B]Version v1.0.2[/B]
- Rework .travis.yml
[B]Version v1.0.1[/B]
- Deal with import _strptime python bug, update travis.yml
- Show detected country to user on error
- Use ipinfo for connection details and only allow AU reports
- Fix for showing error dialog for non-reportable errors
- Fix traceback handling in error reports
- Fix error message handling
- Fix token handling
- Another attempt at token
- Hopefully last time
- .. and again
- Update reporting token again after it went missing
- Filter out any non-str values in exc value args
- Update github token again
- Rework version number handling and other fixes
- Refactoring
- Update exception handling
- Include issue reporter and utils enhancements
- Fix requirements and flake8 updates
[B]Version v1.0.0[/B]
- Initial version
</news></extension>
</addon><addon id="plugin.video.netball-live" name="Netball Live" provider-name="Aussie Add-ons" version="1.5.0_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.aussieaddonscommon" />
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.drmhelper" />
<import addon="script.module.future" />
<import addon="script.module.requests" />
<import addon="script.common.plugin.cache" />
</requires>
<extension library="default.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension library="default.py" point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<summary>Netball Live add-on</summary>
<description>Netball Live allows you to use you Free Telstra Live Pass to stream live matches, match replays, and other videos offered by this service. Note: this add-on is not compatible with passes obtained via in-app purchase.</description>
<provides>video</provides>
<platform>all</platform>
<news>[B]Version v1.5.0[/B]
- Fix auth for 2021
[B]Version v1.4.6[/B]
- Sort listings by date properly
- Kodi 19 inputstream.adaptive
[B]Version v1.4.5[/B]
- fix 19 compat issue
[B]Version v1.4.4[/B]
- GitHub Actions config
- Update icon.png
- build leia and matrix
- Test new dev repo
[B]Version v1.4.3[/B]
- Implement new stream auth and fix live playback
[B]Version v1.4.2[/B]
- Fix replays and other videos
- Fix live matches
[B]Version v1.4.1[/B]
- Update broken CI token
[B]Version v1.4.0[/B]
- Update .travis.yml
- New strings.po for Kodi 19, overhaul settings.
- use inputstream.adaptive
- Use setArt instead of deprecated ListItem constructor
- Style and formatting fixes
- add tests
- add test resources
- Using brightcove now - no more ooyala
- ooyalahelper -> stream_auth
[B]Version v1.3.1[/B]
- Fix upcoming matches, don't filter to only super netball comp
[B]Version v1.3.0[/B]
- Update for new telstra auth
[B]Version v1.2.3[/B]
- Fix JSON error
[B]Version v1.2.2[/B]
- Update auth for new api location
[B]Version v1.2.1[/B]
- Fix livepass login
[B]Version v1.2.0[/B]
- Fix other videos
- Fix live matches
[B]Version v1.1.2[/B]
- Fix automatically removing login ticket if expired
[B]Version v1.1.1[/B]
- Add travis.yml
- update version no.
- Minor overhaul, using aussieaddonscommon
[B]Version v1.1.0[/B]
- List all replays, small fixes, flake8
- Update README.md
[B]Version v1.0.0[/B]
- Initial version
</news></extension>
</addon><addon id="plugin.video.soccer-live" name="Soccer Live" provider-name="Aussie Add-ons" version="1.5.0-1~g941eb6e_leia">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.aussieaddonscommon" />
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.drmhelper" />
<import addon="script.module.future" />
<import addon="script.module.requests" />
<import addon="script.module.warrant" />
<import addon="script.common.plugin.cache" />
</requires>
<extension library="default.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension library="default.py" point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<summary>Soccer Live add-on</summary>
<description>Soccer Live is an unofficial add-on for Australian soccer content</description>
<provides>video</provides>
<platform>all</platform>
<news>[B]Version v1.5.0-1-g941eb6e[/B]
- Fix addon icon/fanart for Matrix
[B]Version v1.5.0[/B]
- Fix free auth 2021
[B]Version v1.4.3[/B]
- Addon version in Kodi url
- New strings file, update settings, use IA for all videos
- Kodi 19 inputstream.adaptive
[B]Version v1.4.2[/B]
- fix 19 compat issues
[B]Version v1.4.1[/B]
- GitHub Actions config