Skip to content

Commit

Permalink
Updated to teamtalk sdk v5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaTegner committed Jan 31, 2024
1 parent 902872f commit e654885
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This document holds a human-readable list of changes between releases.
1.2.0 - Unreleased
---------------------------------

This release adds subscriptions, and more expressive dir methods for Permissions, Channel Types and Server Properties, as well as fixing some long standing asyncio bugs. In addition, we also drop test compatibility for python 3.8
This release adds subscriptions, and more expressive dir methods for Permissions, Channel Types and Server Properties, as well as fixing some long standing asyncio bugs. In addition, we also drop test compatibility for python 3.8, and we have updated to TeamTalk SDK 5.15

Added
~~~~~
Expand All @@ -31,6 +31,7 @@ Added
Changed / Fixed
~~~~~~~~~~~~~~~

- Updated to TeamTalk SDK 5.15
- Fixed a bug where if a registered coroutine called asyncio.sleep, the entire event loop would freeze until a new event was received.

:version:`1.1.0` - 2023-03-24
Expand Down
2 changes: 1 addition & 1 deletion teamtalk/tools/ttsdk_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def download() -> None:
page = bs4.BeautifulSoup(r.text, features="html.parser")
# The last tested version series is v5.12x
versions = page.find_all("li")
version = [i for i in versions if "5.12" in i.text][-1].a.get("href")[0:-1]
version = [i for i in versions if "5.15" in i.text][-1].a.get("href")[0:-1]
download_url = url + "/" + version + "/" + "tt5sdk_{v}_{p}.7z".format(v=version, p=get_url_suffix_from_platform())
print("Downloading from " + download_url)
downloader.download_file(download_url, os.path.join(cd, "ttsdk.7z"))
Expand Down

0 comments on commit e654885

Please sign in to comment.