Skip to content

Commit 133e13e

Browse files
authored
Release v0.5.5-beta (#695)
This release adds: * nice transparent pictures! * remove recommendations of old drivers New support for * Motorola moto g5s (montana) (Thanks to @SirRGB) * Motorola moto g5 plus (potter) (Thanks to @SirRGB)
2 parents 8cebde7 + 6eeff3f commit 133e13e

Some content is hidden

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

73 files changed

+529
-333
lines changed

.github/workflows/build-release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: ['ubuntu-20.04', 'ubuntu-latest']
15+
os: ['ubuntu-latest']
1616
steps:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.11
2121
- run: pip install -r requirements.txt
22+
- run: pip install --no-cache-dir flet[all]==0.26.0
2223
- run: python scripts/download-tools.py
2324
- run: pip install black ruff pytest pytest-cov pytest-mock pytest-subprocess
2425
- run: black .
@@ -31,13 +32,14 @@ jobs:
3132
strategy:
3233
fail-fast: false
3334
matrix:
34-
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest']
35+
os: ['ubuntu-latest', 'macos-latest']
3536
steps:
3637
- uses: actions/checkout@v4
3738
- uses: actions/setup-python@v4
3839
with:
3940
python-version: 3.11
4041
- run: pip install -r requirements.txt
42+
- run: pip install --no-cache-dir flet[all]==0.26.0
4143
- run: python scripts/download-tools.py
4244
- run: python scripts/build.py
4345
- uses: actions/upload-artifact@v4
@@ -54,6 +56,7 @@ jobs:
5456
with:
5557
python-version: 3.11
5658
- run: pip install -r requirements.txt
59+
- run: pip install --no-cache-dir flet[all]==0.26.0
5760
- run: python scripts/download-tools.py
5861
- run: python scripts/build.py
5962
- uses: actions/upload-artifact@v4
@@ -75,9 +78,6 @@ jobs:
7578
- uses: montudor/action-zip@v1
7679
with:
7780
args: zip -qq -r openandroidinstaller-${{ github.ref_name }}-macos-latest.zip openandroidinstaller-${{ github.ref_name }}-macos-latest
78-
- uses: montudor/action-zip@v1
79-
with:
80-
args: zip -qq -r openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04.zip openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04
8181
- uses: montudor/action-zip@v1
8282
with:
8383
args: zip -qq -r openandroidinstaller-${{ github.ref_name }}-ubuntu-latest.zip openandroidinstaller-${{ github.ref_name }}-ubuntu-latest
@@ -95,6 +95,5 @@ jobs:
9595
title: Release ${{ github.ref_name }}
9696
files: |
9797
openandroidinstaller-${{ github.ref_name }}-macos-latest.zip
98-
openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04.zip
9998
openandroidinstaller-${{ github.ref_name }}-ubuntu-latest.zip
10099
openandroidinstaller-${{ github.ref_name }}-windows-latest.zip

.github/workflows/manual-build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest']
13+
os: ['ubuntu-latest', 'macos-latest']
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-python@v4
1717
with:
1818
python-version: 3.11
1919
- run: pip install -r requirements.txt
20+
- run: pip install --no-cache-dir flet[all]==0.26.0
2021
- run: python scripts/download-tools.py
2122
- run: python scripts/build.py
2223
- uses: actions/upload-artifact@v4
@@ -32,6 +33,7 @@ jobs:
3233
with:
3334
python-version: 3.11
3435
- run: pip install -r requirements.txt
36+
- run: pip install --no-cache-dir flet[all]==0.26.0
3537
- run: python scripts/download-tools.py
3638
- run: python scripts/build.py
3739
- uses: actions/upload-artifact@v4
@@ -53,9 +55,6 @@ jobs:
5355
- uses: montudor/action-zip@v1
5456
with:
5557
args: zip -qq -r openandroidinstaller-${{ github.ref_name }}-macos-latest.zip openandroidinstaller-${{ github.ref_name }}-macos-latest
56-
- uses: montudor/action-zip@v1
57-
with:
58-
args: zip -qq -r openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04.zip openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04
5958
- uses: montudor/action-zip@v1
6059
with:
6160
args: zip -qq -r openandroidinstaller-${{ github.ref_name }}-ubuntu-latest.zip openandroidinstaller-${{ github.ref_name }}-ubuntu-latest
@@ -73,6 +72,5 @@ jobs:
7372
title: Release ${{ github.ref_name }}
7473
files: |
7574
openandroidinstaller-${{ github.ref_name }}-macos-latest.zip
76-
openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04.zip
7775
openandroidinstaller-${{ github.ref_name }}-ubuntu-latest.zip
7876
openandroidinstaller-${{ github.ref_name }}-windows-latest.zip

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ repos:
2727
# Run the formatter.
2828
- id: ruff-format
2929

30-
- repo: https://github.com/python-poetry/poetry
31-
rev: 1.8.4
32-
hooks:
33-
- id: poetry-check
30+
#- repo: https://github.com/python-poetry/poetry
31+
#rev: 1.8.4
32+
#hooks:
33+
#- id: poetry-check
3434
#- id: poetry-lock
35-
- id: poetry-export
35+
#. id: poetry-export
3636
#- id: poetry-install

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ poetry:
1616
curl -sSL https://install.python-poetry.org | python3 -
1717

1818
install:
19-
rm poetry.lock
2019
rm -rf openandroidinstaller/bin
2120
poetry install --with dev
2221
poetry run python scripts/download-tools.py

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ Vendor | Device Name | CodeName | Models | Status
125125
---|---|---|---|---
126126
Motorola | edge | [racer](https://wiki.lineageos.org/devices/racer) | XT2063-2, XT2063-3 | tested
127127
Motorola | moto g5 | [cedric](https://wiki.lineageos.org/devices/cedric) | XT1670, XT1671, XT1672, XT1675, XT1676, XT1677 | tested
128+
Motorola | moto g5s | [montana](https://wiki.lineageos.org/devices/montana) | XT1790, XT1791, XT1792, XT1793, XT1794, XT1795, XT1797, XT1799-2 | untested
129+
Motorola | moto g5 plus | potter | XT1680, XT1681, XT1683, XT1684, XT1685, XT1686, XT1687 | untested
128130
Motorola | moto g6 | ali | XT1925-1, XT1925-3, XT1925-4, XT1925-5, XT1925-6, XT1925-7, XT1925-13 | tested
129131
Motorola | moto g6 plus | [evert](https://wiki.lineageos.org/devices/evert) | XT1926-2, XT1926-3, XT1926-5, XT1926-6, XT1926-7, XT1926-8, XT1926-9 | tested
130132
Motorola | moto g7 power | [ocean](https://wiki.lineageos.org/devices/ocean) | XT1955-1, XT1955-2, XT1955-4, XT1955-5, XT1955-7 | tested
@@ -190,8 +192,7 @@ Samsung | Galaxy Note 10+ | [d2s](https://wiki.lineageos.org/devices/d2s) | | te
190192

191193
</details>
192194

193-
<details>
194-
<summary><b>Sony</b></summary>
195+
<details><summary><b>Sony</b></summary>
195196

196197
Vendor | Device Name | CodeName | Models | Status
197198
---|---|---|---|---

openandroidinstaller/app_state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def toggle_flash_unlock_bootloader(self):
9595
type="confirm_button",
9696
content="If you already flashed TWRP, boot into it by pressing 'Confirm and run'. Otherwise restart the process. Once your phone screen looks like the picture on the left, continue.",
9797
command="adb_reboot_recovery",
98-
img="twrp-start.jpeg",
98+
img="twrp-start.png",
9999
)
100100
]
101101

@@ -117,6 +117,6 @@ def toggle_flash_recovery(self):
117117
type="call_button",
118118
content="If you already flashed TWRP, boot into it by pressing 'Confirm and run'. Otherwise restart the process. Once your phone screen looks like the picture on the left, continue.",
119119
command="adb_reboot_recovery",
120-
img="twrp-start.jpeg",
120+
img="twrp-start.png",
121121
)
122122
]

openandroidinstaller/assets/configs/FP2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ steps:
1616
Make sure your device is turned on and connected to the computer. Boot into the bootloader by pressing 'Confirm and run' here. Then continue.
1717
command: adb_reboot_bootloader
1818
- type: call_button
19-
img: twrp-start.jpeg
19+
img: twrp-start.png
2020
content: >
2121
Boot a custom recovery (temporarily) by pressing 'Confirm and run'. Once it's done continue.
2222
command: fastboot_boot_recovery

openandroidinstaller/assets/configs/FP3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ steps:
5454
Turn on your device. Once the device is fully booted, you need to reboot into the bootloader again by pressing 'Confirm and run' here. Then continue.
5555
command: adb_reboot_bootloader
5656
- type: call_button
57-
img: twrp-start.jpeg
57+
img: twrp-start.png
5858
content: >
5959
Once the device is in fastboot mode, flash the custom recovery (temporarily) by pressing 'Confirm and run'. Once it's done continue.
6060
command: fastboot_boot_recovery

openandroidinstaller/assets/configs/FP4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ steps:
5454
Turn on your device. Once the device is fully booted, you need to reboot into the bootloader again by pressing 'Confirm and run' here. Then continue.
5555
command: adb_reboot_bootloader
5656
- type: call_button
57-
img: twrp-start.jpeg
57+
img: twrp-start.png
5858
content: >
5959
Once the device is in fastboot mode, boot the custom recovery (temporarily) by pressing 'Confirm and run'. Once it's done continue.
6060
command: fastboot_boot_recovery

openandroidinstaller/assets/configs/Mi439.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ steps:
5454
Install the recovery you chosen before by pressing 'Confirm and run'. Once it's done continue.
5555
command: fastboot_flash_recovery
5656
- type: call_button
57-
img: twrp-start.jpeg
57+
img: twrp-start.png
5858
content: >
5959
Reboot to recovery by pressing 'Confirm and run', and hold the Vol+ button of your phone UNTIL you see the recovery.
6060
If MiUI starts, you have to start the process again, since MiUI delete the recovery you just flashed.

0 commit comments

Comments
 (0)