Squashed commit of the following:
commitde8116899c
Author: Dpeta <69427753+Dpeta@users.noreply.github.com> Date: Tue Aug 10 23:08:27 2021 +0000 Update CHANGELOG.md commitc4dd2dcee5
Author: BuildTools <Jasprose@protonmail.com> Date: Wed Aug 11 00:37:02 2021 +0200 added logging.conf to setup.py & pyinstaller.py
This commit is contained in:
parent
a10b92287b
commit
6f953a4cbb
3 changed files with 8 additions and 5 deletions
|
@ -22,14 +22,15 @@
|
||||||
### Fixed
|
### Fixed
|
||||||
- Crash when opening invite-only memo. (My bad-)
|
- 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.)
|
- 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.
|
- nothing.png being missing in some themes.
|
||||||
- 64-bit crt for PyInstaller
|
- 64-bit crt for PyInstaller.
|
||||||
- Manual sort not working
|
- Manual chumroll sorting not working.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Honk emote now only triggers when typing ':honk:' instead of on every 'honk'.
|
- 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.
|
- 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
|
## [v2.1.2] - 2021-4-16
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,8 @@ add_data = ['quirks;quirks',
|
||||||
'LICENSE;.',
|
'LICENSE;.',
|
||||||
'CHANGELOG.md;.',
|
'CHANGELOG.md;.',
|
||||||
'PCskins.png;.',
|
'PCskins.png;.',
|
||||||
'Pesterchum.png;.']
|
'Pesterchum.png;.',
|
||||||
|
'logging.conf;.']
|
||||||
|
|
||||||
upx_exclude = ["qwindows.dll",
|
upx_exclude = ["qwindows.dll",
|
||||||
"Qt5Core.dll",
|
"Qt5Core.dll",
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -22,7 +22,8 @@ includefiles = ["quirks",
|
||||||
"LICENSE",
|
"LICENSE",
|
||||||
"CHANGELOG.md",
|
"CHANGELOG.md",
|
||||||
"PCskins.png",
|
"PCskins.png",
|
||||||
"Pesterchum.png"]
|
"Pesterchum.png",
|
||||||
|
"logging.conf"]
|
||||||
build_exe_options = {
|
build_exe_options = {
|
||||||
## "includes": ["PyQt5.QtCore",
|
## "includes": ["PyQt5.QtCore",
|
||||||
## "PyQt5.QtGui",
|
## "PyQt5.QtGui",
|
||||||
|
|
Loading…
Reference in a new issue