Skip to content

Commit 1a5c45b

Browse files
committedMar 24, 2024
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
2 parents e7c8c43 + ff88d98 commit 1a5c45b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2180
-1897
lines changed
 

‎.github/ISSUE_TEMPLATE/device-support-request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ body:
8585
- type: textarea
8686
attributes:
8787
label: Additional context
88-
description: Please provide any additional context or information that might be helpful in adding support for this device.
88+
description: Please provide any additional context or information that might be helpful in adding support for this device.
8989
render: Markdown

‎.github/workflows/build-release.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v4
1919
with:
20-
python-version: 3.9
20+
python-version: 3.11
2121
- run: pip install -r requirements.txt
2222
- run: python scripts/download-tools.py
23+
- run: pip install black ruff pytest pytest-cov pytest-mock pytest-subprocess
2324
- run: black .
2425
- run: ruff openandroidinstaller/ --ignore E501
2526
- run: PYTHONPATH=openandroidinstaller:$(PYTHONPATH) pytest --cov=openandroidinstaller tests/
26-
27+
2728
build:
2829
needs: ci
2930
runs-on: ${{ matrix.os }}
@@ -35,31 +36,31 @@ jobs:
3536
- uses: actions/checkout@v4
3637
- uses: actions/setup-python@v4
3738
with:
38-
python-version: 3.9
39+
python-version: 3.11
3940
- run: pip install -r requirements.txt
4041
- run: python scripts/download-tools.py
4142
- run: python scripts/build.py
4243
- uses: actions/upload-artifact@v3
4344
with:
4445
name: openandroidinstaller-${{ github.ref_name }}-${{ matrix.os }}
4546
path: dist/
46-
47+
4748
build-windows:
4849
needs: ci
4950
runs-on: 'windows-latest'
5051
steps:
5152
- uses: actions/checkout@v4
5253
- uses: actions/setup-python@v4
5354
with:
54-
python-version: 3.9
55+
python-version: 3.11
5556
- run: pip install -r requirements.txt
5657
- run: python scripts/download-tools.py
5758
- run: python scripts/build.py
5859
- uses: actions/upload-artifact@v3
5960
with:
6061
name: openandroidinstaller-${{ github.ref_name }}-windows-latest
6162
path: dist/
62-
63+
6364
create-release:
6465
needs:
6566
- build

0 commit comments

Comments
 (0)
Failed to load comments.