From a49bfab27096f0489c4d739349822e677050c2ca Mon Sep 17 00:00:00 2001 From: John Date: Mon, 3 Jul 2023 15:09:08 -0400 Subject: [PATCH] Update version number --- Main.py | 2 +- README.md | 13 +++++++++++++ build-on-mac-m1.spec | 6 +++--- build-on-win.spec | 2 +- build.sh | 4 ++-- build-on-mac.spec => old/build-on-mac.spec | 6 +++--- 6 files changed, 23 insertions(+), 10 deletions(-) rename build-on-mac.spec => old/build-on-mac.spec (90%) diff --git a/Main.py b/Main.py index 9df6fb2..0483983 100644 --- a/Main.py +++ b/Main.py @@ -62,7 +62,7 @@ def get_language_code(): translate = gettext.translation('brewflasher', localedir, languages=[get_language_code()], fallback=True) _ = translate.gettext -__version__ = "1.5.1" +__version__ = "1.5.2" # __flash_help__ = ''' #

This setting depends on your device - but in most cases you will want to use DIO.

#

diff --git a/README.md b/README.md index b9db69f..11e6858 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,19 @@ comparison to that project, BrewFlasher adds explicit ESP32 & ESP32-S2 support a downloading brewing-related firmware to flash. The firmware selection is taken from a curated list maintained behind-the-scenes on BrewFlasher.com. +### Special Thank You + +A special THANK YOU goes out to the following people who assisted with translating BrewFlasher into other languages: + +- **Deutsche**: TheySaidGetAnAlt on Reddit +- **EspaƱol**: iloverentmusical on Reddit +- **Svenska**: @mp-se +- **Norsk**: bardevjen on HomeBrewTalk + +Interested in helping translate BrewFlasher, or have suggestions to improve one of the translations? Please reach out - either on HomeBrewTalk or by raising an issue/pull request here on GitHub! + + + ## License This package was based on the NodeMCU PyFlasher project which is licensed under [MIT](http://opensource.org/licenses/MIT) diff --git a/build-on-mac-m1.spec b/build-on-mac-m1.spec index cfdea63..90b5ffb 100644 --- a/build-on-mac-m1.spec +++ b/build-on-mac-m1.spec @@ -28,7 +28,7 @@ exe = EXE(pyz, codesign_identity='Developer ID Application: John Beeler (RAS94LVJ7S)', console=False , icon='images/icon-512.icns') app = BUNDLE(exe, - name='BrewFlasher-1.5.1.app', + name='BrewFlasher-1.5.2.app', icon='./images/icon-512.icns', bundle_identifier='com.brewflasher.macos', info_plist={ @@ -36,8 +36,8 @@ app = BUNDLE(exe, 'NSAppleScriptEnabled': False, 'LSRequiresIPhoneOS': False, 'LSApplicationCategoryType': 'public.app-category.utilities', - 'CFBundleVersion': '1.5.1', - 'CFBundleShortVersionString': '1.5.1', + 'CFBundleVersion': '1.5.2', + 'CFBundleShortVersionString': '1.5.2', 'CFBundleSignature': 'BFLS', 'LSMinimumSystemVersion': '10.4.0' }, diff --git a/build-on-win.spec b/build-on-win.spec index 76fd34e..fb95f6d 100644 --- a/build-on-win.spec +++ b/build-on-win.spec @@ -26,7 +26,7 @@ exe = EXE(pyz, a.zipfiles, a.datas, [], - name='BrewFlasher-1.5.1', + name='BrewFlasher-1.5.2', debug=False, bootloader_ignore_signals=False, strip=False, diff --git a/build.sh b/build.sh index 188fa5b..2c6cb6c 100755 --- a/build.sh +++ b/build.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash #rm -fr build dist -#VERSION=1.3 +#VERSION=1.5.2 #NAME=BrewFlasher source ./venv/bin/activate -python3 compile_languages.py +python3 compile_languages.py locales # NOTE -- YOU NEED TO RUN THE BELOW COMMAND MANUALLY! ./venv/bin/pyinstaller --log-level=INFO \ --noconfirm \ diff --git a/build-on-mac.spec b/old/build-on-mac.spec similarity index 90% rename from build-on-mac.spec rename to old/build-on-mac.spec index df9e287..84663a1 100644 --- a/build-on-mac.spec +++ b/old/build-on-mac.spec @@ -28,7 +28,7 @@ exe = EXE(pyz, codesign_identity='Developer ID Application: John Beeler (RAS94LVJ7S)', console=False , icon='images/icon-512.icns') app = BUNDLE(exe, - name='BrewFlasher-1.5.1.app', + name='BrewFlasher-1.5.2.app', icon='./images/icon-512.icns', bundle_identifier='com.brewflasher.macos', info_plist={ @@ -36,8 +36,8 @@ app = BUNDLE(exe, 'NSAppleScriptEnabled': False, 'LSRequiresIPhoneOS': False, 'LSApplicationCategoryType': 'public.app-category.utilities', - 'CFBundleVersion': '1.5.1', - 'CFBundleShortVersionString': '1.5.1', + 'CFBundleVersion': '1.5.2', + 'CFBundleShortVersionString': '1.5.2', 'CFBundleSignature': 'BFLS', 'LSMinimumSystemVersion': '10.4.0' },