diff --git a/CHANGELOG.md b/CHANGELOG.md index 90ff979..56d06ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,14 +22,15 @@ ### Fixed - Crash when opening invite-only memo. (My bad-) - Random encounters occasionally not being disabled when switched off. (RE bot is now updated after connect and on profile switch.) -- A few memo/convo related syntax errors in a few themes +- A few memo/convo related syntax errors in a few themes. - nothing.png being missing in some themes. -- 64-bit crt for PyInstaller -- Manual sort not working +- 64-bit crt for PyInstaller. +- Manual chumroll sorting not working. ### Changed - Honk emote now only triggers when typing ':honk:' instead of on every 'honk'. - Logging is now configured in logging.conf and logs are also writen to pesterchum.log by default. +- Warnings/Errors are now logged to pesterchum.log as well as console. ## [v2.1.2] - 2021-4-16 diff --git a/pyinstaller.py b/pyinstaller.py index 3728743..4b2821f 100644 --- a/pyinstaller.py +++ b/pyinstaller.py @@ -92,7 +92,8 @@ add_data = ['quirks;quirks', 'LICENSE;.', 'CHANGELOG.md;.', 'PCskins.png;.', - 'Pesterchum.png;.'] + 'Pesterchum.png;.', + 'logging.conf;.'] upx_exclude = ["qwindows.dll", "Qt5Core.dll", diff --git a/setup.py b/setup.py index 484b19d..abb03c2 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,8 @@ includefiles = ["quirks", "LICENSE", "CHANGELOG.md", "PCskins.png", - "Pesterchum.png"] + "Pesterchum.png", + "logging.conf"] build_exe_options = { ## "includes": ["PyQt5.QtCore", ## "PyQt5.QtGui",