Skip to content

Commit

Permalink
Merge pull request #22 from proddy/main
Browse files Browse the repository at this point in the history
remover forced wayland as display server. #19
  • Loading branch information
proddy authored Dec 31, 2024
2 parents 71c6d67 + a20a9d9 commit e1df2c4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion emsesp_flasher/const.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 2 additions & 1 deletion emsesp_flasher/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit e1df2c4

Please sign in to comment.