Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
thorrak committed Jul 3, 2023
1 parent c5ad63b commit a49bfab
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '''
# <p>This setting depends on your device - but in most cases you will want to use DIO.<p>
# <p>
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions build-on-mac-m1.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ 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={
'NSPrincipalClass': 'NSApplication',
'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'
},
Expand Down
2 changes: 1 addition & 1 deletion build-on-win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
6 changes: 3 additions & 3 deletions build-on-mac.spec → old/build-on-mac.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ 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={
'NSPrincipalClass': 'NSApplication',
'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'
},
Expand Down

0 comments on commit a49bfab

Please sign in to comment.