Skip to content

Commit ebc0b3b

Browse files
authored
Merge branch 'openandroidinstaller-dev:main' into readme-fix
2 parents 1cf0603 + 2132de7 commit ebc0b3b

Some content is hidden

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

79 files changed

+310
-226
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. Windows 10]
28+
- Version [e.g. 0.4.2]
29+
30+
**Smartphone (please complete the following information):**
31+
- Device: [e.g. Samsung Galaxy S10]
32+
- OS: [e.g. LineageOS]
33+
- Version [e.g. 0.4.2]
34+
35+
**Additional context**
36+
Add any other context about the problem here.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Device support request
3+
about: Request support for a new device
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Device name**
11+
Please enter the name of the device you would like to request support for.
12+
If you know the device code, please also add it here.
13+
14+
**Device images**
15+
Please provide links to any available images of the device, such as official stock firmware or custom ROMs you would like to install.
16+
17+
**Do you own the device and would be willing to test the installer?**
18+
- [ ]
19+
20+
**Additional context**
21+
Please provide any additional context or information that may be helpful in adding support for this device.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Linux is currently the best supported platform (tested with Ubuntu 20.04/22.04 L
6262

6363
## Officially supported devices
6464

65-
Currently, the **we support 56 devices** by various vendors and working on adding more soon!
65+
Currently, the **we support 57 devices** by various vendors and working on adding more soon!
6666

6767

6868
Support for these devices is provided as best effort, but things might still go wrong.
@@ -200,6 +200,7 @@ A config file consists of two parts. The first part are some metadata about the
200200
Every config file should have metadata with the following fields:
201201
- `maintainer`: str; Maintainer and author of the config file.
202202
- `device_name`: str; Name of the device.
203+
- `is_ab_device`: bool; A boolean to determine if the device is a/b-partitioned or not.
203204
- `device_code`: str; The official device code.
204205
- `supported_device_codes`: List[str]; A list of supported device codes for the config. The config will be loaded based on this field.
205206
- `twrp-link`: [OPTIONAL] str; name of the corresponding twrp page.

openandroidinstaller/app_state.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def __init__(
4343
self.config = None
4444
self.image_path = None
4545
self.recovery_path = None
46-
self.is_ab = None
4746

4847
# store views
4948
self.default_views: List = []

openandroidinstaller/assets/configs/FP2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
metadata:
22
maintainer: Tobias Sterbak (tsterbak)
33
device_name: Fairphone 2
4+
is_ab_device: false
45
device_code: FP2
56
supported_device_codes:
67
- FP2

openandroidinstaller/assets/configs/FP3.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
metadata:
22
maintainer: Tobias Sterbak (tsterbak)
33
device_name: Fairphone 3
4+
is_ab_device: true
45
device_code: FP3
56
supported_device_codes:
67
- FP3

openandroidinstaller/assets/configs/FP4.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
metadata:
22
maintainer: Tobias Sterbak (tsterbak)
33
device_name: Fairphone 4
4+
is_ab_device: true
45
device_code: FP4
56
supported_device_codes:
67
- FP4

openandroidinstaller/assets/configs/a3y17lte.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
metadata:
22
maintainer: Tobias Sterbak (tsterbak)
33
device_name: Samsung Galaxy A3 (2017)
4+
is_ab_device: false
45
device_code: a3y17lte
56
supported_device_codes:
67
- a3y17lte

openandroidinstaller/assets/configs/a5xelte.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
metadata:
22
maintainer: Tobias Sterbak (tsterbak)
33
device_name: Samsung Galaxy A5 (2016)
4+
is_ab_device: false
45
device_code: a5xelte
56
supported_device_codes:
67
- a5xelte

0 commit comments

Comments
 (0)