Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Commit eb89adf

Browse files
authored
Merge pull request #26 from teampheenix/new-twitch-api
New twitch api
2 parents d1e89ed + 1fb2731 commit eb89adf

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

33

4+
## v2.12.0 (2022-02-13)
5+
6+
### Changes
7+
8+
* Use new Twitch-API to set stream title.
9+
10+
411
## v2.11.0 (2021-10-30)
512

613
### Fix

inno-setup/scct.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "StarCraft Casting Tool"
5-
#define MyAppVersion "2.11.0"
5+
#define MyAppVersion "2.12.0"
66
#define MyDataVersion "2.11.0"
77
#define MyAppPublisher "team pheeniX"
88
#define MyAppURL "https://teampheenix.github.io/StarCraft-Casting-Tool/"

requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
appdirs >= 1.4.4
22
beautifulsoup4 >= 4.10.0
3-
humanize >= 3.12.0
3+
humanize >= 3.14.0
44
keyboard==0.13.5
5-
markdown2 >= 2.4.1
6-
Pillow >= 8.4.0; platform_system == 'Windows'
7-
PyInstaller >= 4.6
8-
pyinstaller-hooks-contrib >= 2021.3
9-
pywin32 >= 302; platform_system == 'Windows'
5+
markdown2 >= 2.4.2
6+
Pillow >= 9.0.1; platform_system == 'Windows'
7+
PyInstaller >= 4.9
8+
pyinstaller-hooks-contrib >= 2022.1
9+
pywin32 >= 303; platform_system == 'Windows'
1010
PyQt5 == 5.13.2 # rq.filter: != 5.14.*, != 5.15.*
1111
pytesseract >= 0.3.8; platform_system == 'Windows'
1212
PyUpdater >= 4.0.0
13-
requests >= 2.26.0
14-
websockets >= 10.0
13+
requests >= 2.27.0
14+
websockets >= 10.1

scctool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
logger = logging.getLogger(__name__)
1414

15-
__version__ = "2.11.0"
15+
__version__ = "2.12.0"
1616
__latest_version__ = __version__
1717
__new_version__ = False
1818

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = f.read()
99

1010
setup(name='StarCraftCastingTool',
11-
version='2.11.0',
11+
version='2.12.0',
1212
description=(''),
1313
long_description=long_description,
1414
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)