Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="1.1.0" provider-name="A Talented Community">
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.0~alpha1" provider-name="A Talented Community">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.six" version="1.9.0"/>
Expand All @@ -9,10 +9,9 @@
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<news>
*** Twitch API V5 is deprecated and will be removed entirely on 2/14/18
*** script.module.python.twitch v2 will include the Twitch helix API, and may include breaking changes to current implementations. If you rely on this module follow development at https://github.com/MrSprigster/script.module.python.twitch

[fix/upd] v5.channels deprecated notations for community endpoints, add new communities endpoints
[chg] refactor oauth for inclusion of helix
[add] helix api
[add] add usher.live_request and usher.video_request
</news>
<assets>
<icon>icon.png</icon>
Expand Down
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2.0.0
[chg] refactor oauth for inclusion of helix
- adds MobileClient().prepare_token_uri() for generating app access tokens, adds client_secret requirement
- adds MobileClient().prepare_revoke_uri() for revoking oauth tokens
- adds helix oauth scopes
- twitch.scopes -> twitch.oauth.<api version>.scopes
- twitch.oauth.MobileClient() -> twitch.oauth.clients.MobileClient()
[add] helix api
[add] add usher.live_request and usher.video_request

1.1.0
*** Twitch API V5 is deprecated and will be removed entirely on 2/14/18
*** script.module.python.twitch v2 will include the Twitch helix API, and may include breaking changes to current implementations.
Expand Down