Skip to content

Commit 5478ab3

Browse files
committed
add twrp image to sargo
1 parent 5748ff9 commit 5478ab3

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

openandroidinstaller/assets/configs/sargo.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ steps:
3232
Make sure your device is turned on. You need to reboot into the bootloader again by pressing 'Confirm and run' here. Then continue.
3333
command: adb_reboot_bootloader
3434
- type: call_button
35-
content: Flash a custom recovery (temporarily) by pressing 'Confirm and run'. Once it's done continue.
35+
content: Flash a custom recovery (temporarily) by pressing 'Confirm and run'. Once your phone screen looks like the picture on the left, continue.
3636
command: fastboot_flash_recovery
37+
img: twrp-start.jpeg
3738
install_os:
3839
- type: call_button
3940
content: >
80.9 KB
Loading

openandroidinstaller/openandroidinstaller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
logger.add("openandroidinstaller.log")
4646

4747
# Toggle to True for development purposes
48-
DEVELOPMENT = False
48+
DEVELOPMENT = True
4949
DEVELOPMENT_CONFIG = "sargo" # "a3y17lte" # "sargo"
5050

5151

openandroidinstaller/views/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, state: AppState, image: str = "placeholder.png"):
3333
# left part of the display: used for displaying the images
3434
self.left_view = Column(
3535
width=600,
36-
controls=[Image(src=f"/assets/imgs/{image}")],
36+
controls=[Image(src=f"/assets/imgs/{image}", height=600)],
3737
expand=True,
3838
horizontal_alignment="center",
3939
)

0 commit comments

Comments
 (0)