-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from thorrak/m1
Refresh, Cleanup, and M1 Mac Support
- Loading branch information
Showing
19 changed files
with
2,734 additions
and
628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,3 +110,6 @@ package-lock.json | |
notarize.sh | ||
staple.sh | ||
|
||
# Exclude the pyinstaller directory (if it's here) | ||
pyinstaller/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<installer-gui-script minSpecVersion="1"> | ||
<pkg-ref id="com.brewflasher.macos.pkg"/> | ||
<options customize="never" require-scripts="false" hostArchitectures="arm64"/> | ||
<choices-outline> | ||
<line choice="default"> | ||
<line choice="com.brewflasher.macos.pkg"/> | ||
</line> | ||
</choices-outline> | ||
<choice id="default"/> | ||
<choice id="com.brewflasher.macos.pkg" visible="false"> | ||
<pkg-ref id="com.brewflasher.macos.pkg"/> | ||
</choice> | ||
<pkg-ref id="com.brewflasher.macos.pkg" version="1.2.0" onConclusion="none">brewflasher.pkg</pkg-ref> | ||
</installer-gui-script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
## Privacy Policy | ||
|
||
BrewFlasher does not explicitly collect or transmit any user information or usage statistics. | ||
BrewFlasher does not explicitly collect or transmit any user information. | ||
|
||
BrewFlasher accesses [fermentrack.com](http://www.fermentrack.com) to download a list of | ||
BrewFlasher accesses [brewflasher.com](http://www.brewflasher.com) to download a list of | ||
available firmware, as well as other websites to download the firmware itself. These | ||
websites - like all websites - may keep logs of access history which could include | ||
(amongst other things) the IP address from which the request was made. | ||
(amongst other things) the IP address from which the request was made. BrewFlasher.com | ||
does anonymously log when a specific firmware item is selected to be flashed for the | ||
purposes of tracking the popularity of various projects. | ||
|
||
Although the author of BrewFlasher does not use this access information for any marketing | ||
purposes, it is possible that the websites serving individual firmware files might. Using | ||
BrewFlasher requires that you understand and accept this risk. | ||
Although BrewFlasher.com provides BrewFlasher with links to the firmware to be flashed, | ||
neither BrewFlasher or BrewFlasher.com actually provide the firmware itself. Firmware is | ||
downloaded directly from the sites on which it is hosted. The privacy policies of these | ||
websites may - and likely do - differ from this privacy policy, and may log additional | ||
information beyond what this policy specifies. This is outside BrewFlasher's control. | ||
Using BrewFlasher requires that you understand and accept this risk. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<array> | ||
<dict> | ||
<key>BundleHasStrictIdentifier</key> | ||
<true/> | ||
<key>BundleIsRelocatable</key> | ||
<false/> | ||
<key>BundleIsVersionChecked</key> | ||
<true/> | ||
<key>BundleOverwriteAction</key> | ||
<string>upgrade</string> | ||
<key>RootRelativeBundlePath</key> | ||
<string>BrewFlasher.app</string> | ||
</dict> | ||
</array> | ||
</plist> |
Oops, something went wrong.