-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v0.5.3-beta: Easter Edition 🐰🐣 (#424)
This release adds: New devices: * support for Xiaomi Mi A2 / 6X (jasmine_sprout) (thanks to @anon1892) * support for Xiaomi Redmi Note 10 Pro (sweet) (thanks to @BjornW) * support for Samsung Galaxy S5 mini (kminilte) (thanks to @LudovicRousseau) * support more Versions of Samsung Galaxy S5 mini (thanks to @SirRGB) Fixes: * Show proper error messages when bash shell is not found and try other paths. Other: * Update to python 3.11 * Support latest Android Platform Tools 35.0.1 Update build workflow to python 3.11 Install required dev dependencies in build action Add more dev dependencies
- Loading branch information
Showing
55 changed files
with
2,180 additions
and
1,897 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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
fail_fast: true | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.2.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: check-ast | ||
- id: check-merge-conflict | ||
- id: check-yaml | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.10.0 | ||
hooks: | ||
- id: black | ||
language_version: python3.10 | ||
|
||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.2.1 | ||
hooks: | ||
# Run the linter. | ||
- id: ruff | ||
args: [ '--ignore', 'E501', '--fix' ] | ||
# Run the formatter. | ||
- id: ruff-format | ||
|
||
- repo: https://github.com/python-poetry/poetry | ||
rev: 1.6.1 | ||
hooks: | ||
- id: poetry-check | ||
#- id: poetry-lock | ||
- id: poetry-export | ||
#- id: poetry-install |
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
Oops, something went wrong.