Release v2.2.43

This commit is contained in:
grossmj
2023-09-19 20:16:52 +07:00
parent c06e534935
commit 97b777ceea
3 changed files with 13 additions and 3 deletions

View File

@@ -1,5 +1,14 @@
# Change Log
## 2.2.43 19/09/2023
* Add KiTTY to preconfigured telnet consoles. Fixes #3507
* Fix generic icon in Wayland. Ref #3501
* Support for appliance format version 8.
* Use importlib instead of pkg_resources
* Upgrade to PyQt 5.15.9 and pywin32
* Add support for appliance version 8 format
## 2.2.42 09/08/2023
* Use the system's certificate store for SSL connections

View File

@@ -50,7 +50,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://bae0411a1718612ee8c25cdb12ec7f02@o19455.ingest.sentry.io/38506"
DSN = "https://57454675a266a9d705fd505947a81b5c@o19455.ingest.sentry.io/38506"
_instance = None
def __init__(self):

View File

@@ -23,9 +23,10 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.43.dev1"
__version__ = "2.2.43"
__version_info__ = (2, 2, 43, 0)
__version_info__ = (2, 2, 43, 99)
if "dev" in __version__:
try:
import os