diff --git a/README.md b/README.md index b6404f8..8c1f578 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ pip install --upgrade build pip install -e . ``` -To build and test the a module for distribution (places in `dist` folder): +To build and test the a module for distribution (places in the `dist` folder): ```sh python -m build @@ -40,7 +40,7 @@ python -m build pip install --editable . ``` -To run as a module, when building and testing locally: +To run as a module, for building and testing locally: ```sh python -m emsesp_flasher @@ -70,7 +70,7 @@ If the Windows firewall blocks the .exe file, it's a false positive and you can ## Creating the installers in GitHub -The binary artifacts will only be created on a tag. Use: +The binary artifacts will only be created on a tag push. Use for example: ```sh git tag -f v1.1.0 diff --git a/emsesp_flasher/const.py b/emsesp_flasher/const.py index 1a52ed2..9cd0ef8 100644 --- a/emsesp_flasher/const.py +++ b/emsesp_flasher/const.py @@ -1,6 +1,6 @@ import re -__version__ = "1.1.0" +__version__ = "1.1.1" # TODO update latest arduino-esp32 version 2.0.17? ESP32_DEFAULT_OTA_DATA = "https://github.com/espressif/arduino-esp32/raw/2.0.5/tools/partitions/boot_app0.bin" diff --git a/emsesp_flasher/gui.py b/emsesp_flasher/gui.py index b083d53..868852a 100644 --- a/emsesp_flasher/gui.py +++ b/emsesp_flasher/gui.py @@ -203,7 +203,8 @@ def main(): elif os_name == 'Linux': distro_name = distro.id().lower() if 'ubuntu' in distro_name or 'debian' in distro_name: - os.environ['QT_QPA_PLATFORM'] = 'wayland' + # os.environ['QT_QPA_PLATFORM'] = 'wayland' + pass else: os.environ['QT_QPA_PLATFORM'] = 'xcb' elif os_name == 'Windows': diff --git a/pyproject.toml b/pyproject.toml index 81dd3bf..7bdbf3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ESP-ESP-Flasher" -version = "1.1.0" +version = "1.1.1" authors = [ {name = "Jason2866"}, {name = "Proddy"}