Skip to content

Commit 33ab7c0

Browse files
authored
Merge pull request #52 from anxdpanic/dev
2.0.5~beta1
2 parents 51dd9e5 + 835c0be commit 33ab7c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+552
-54
lines changed
File renamed without changes.

addon.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.4" provider-name="A Talented Community">
2+
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="2.0.5~beta1" provider-name="A Talented Community">
33
<requires>
44
<import addon="xbmc.python" version="2.20.0"/>
5-
<import addon="script.module.six" version="1.9.0"/>
6-
<import addon="script.module.requests" version="2.9.1"/>
5+
<import addon="script.module.six" version="1.11.0"/>
6+
<import addon="script.module.requests" version="2.12.4"/>
77
</requires>
88
<extension point="xbmc.python.module" library="resources/lib"/>
99
<extension point="xbmc.addon.metadata">
1010
<platform>all</platform>
1111
<news>
12-
[fix] video/live stream token encoding
12+
[add] add frame rate and resolution to returned stream information
13+
[upd] update usher parameters
14+
[upd] use SPDX license identifiers
1315
</news>
1416
<assets>
1517
<icon>icon.png</icon>
1618
</assets>
1719
<platform>all</platform>
1820
<summary lang="en_GB">Module for interaction with the Twitch.tv API</summary>
1921
<description lang="en_GB">python-twitch for Kodi is module for interaction with the Twitch.tv API based on python-twitch by ingwinlu.</description>
20-
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
22+
<license>GPL-3.0-only</license>
2123
<source>https://github.com/MrSprigster/script.module.python.twitch</source>
2224
<reuselanguageinvoker>true</reuselanguageinvoker>
2325
</extension>

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.0.5
2+
[add] add frame rate and resolution to returned stream information
3+
[upd] update usher parameters
4+
[upd] use SPDX license identifiers
5+
16
2.0.4
27
[fix] video/live stream token encoding
38

resources/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
3+
Copyright (C) 2016-2018 script.module.python.twitch
4+
5+
This file is part of script.module.python.twitch
6+
7+
SPDX-License-Identifier: GPL-3.0-only
8+
See LICENSES/GPL-3.0-only for more information.
9+
"""

resources/lib/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
"""
2+
3+
Copyright (C) 2016-2018 script.module.python.twitch
4+
5+
This file is part of script.module.python.twitch
6+
7+
SPDX-License-Identifier: GPL-3.0-only
8+
See LICENSES/GPL-3.0-only for more information.
9+
"""
110

211
__all__ = ['twitch']
312

resources/lib/twitch/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# -*- encoding: utf-8 -*-
2+
"""
3+
4+
Copyright (C) 2012-2016 python-twitch (https://github.com/ingwinlu/python-twitch)
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
212

313
__all__ = ['VERSION', 'CLIENT_ID', 'CLIENT_SECRET', 'OAUTH_TOKEN', 'APP_TOKEN', 'api', 'oauth',
414
'exceptions', 'keys', 'log', 'methods', 'parser', 'queries', 'scraper']

resources/lib/twitch/api/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# -*- encoding: utf-8 -*-
2+
"""
3+
4+
Copyright (C) 2012-2016 python-twitch (https://github.com/ingwinlu/python-twitch)
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
212

313
__all__ = ['v5', 'default', 'helix', 'parameters', 'usher']
414

resources/lib/twitch/api/helix/__init__.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# -*- encoding: utf-8 -*-
2-
# https://dev.twitch.tv/docs/
2+
"""
3+
Reference: https://dev.twitch.tv/docs/
4+
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
312

413
__all__ = ['analytics', 'bits', 'clips', 'entitlements', 'games', 'streams', 'users', 'videos', 'webhooks']
514

resources/lib/twitch/api/helix/analytics.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# -*- encoding: utf-8 -*-
2-
# https://dev.twitch.tv/docs/api/reference
2+
"""
3+
Reference: https://dev.twitch.tv/docs/api/reference
4+
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
312

413
from ..parameters import IntRange, Cursor, ReportType
514
from ... import keys

resources/lib/twitch/api/helix/bits.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# -*- encoding: utf-8 -*-
2-
# https://dev.twitch.tv/docs/api/reference
2+
"""
3+
Reference: https://dev.twitch.tv/docs/api/reference
4+
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
312

413
from ..parameters import PeriodHelix, IntRange
514
from ... import keys

0 commit comments

Comments
 (0)