Skip to content

Commit f86a7a7

Browse files
authored
Merge branch 'dev' into jfltexx
2 parents 44a6205 + 8a0f35c commit f86a7a7

Some content is hidden

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

45 files changed

+1604
-210
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ patreon: # Replace with a single Patreon username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
liberapay: # Replace with a single Liberapay username
9+
liberapay: OpenAndroidInstaller
1010
issuehunt: # Replace with a single IssueHunt username
1111
otechie: # Replace with a single Otechie username
1212
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug report
33
about: Create a report to help us improve
44
title: ''
5-
labels: ''
5+
labels: 'bug'
66
assignees: ''
77

88
---

.github/ISSUE_TEMPLATE/device-support-request.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
name: Device support request
2+
description: Request support for a new device
3+
title: Add support for <DEVICE>
4+
labels: ["device"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thank you for your interest in OpenAndroidInstaller!"
9+
- type: markdown
10+
attributes:
11+
value: "To get your device supported, please take the time to fill out this form."
12+
- type: markdown
13+
attributes:
14+
value: "---"
15+
- type: checkboxes
16+
attributes:
17+
label: Is your device already requested?
18+
description: Please search to see if an issue for your device already exists.
19+
options:
20+
- label: I have searched the existing issues
21+
required: true
22+
- type: markdown
23+
attributes:
24+
value: "---"
25+
- type: markdown
26+
attributes:
27+
value: "**Please input your device's details below:**"
28+
- type: input
29+
attributes:
30+
label: Brand
31+
description: The brand / manufacturer of your device
32+
placeholder: Google
33+
validations:
34+
required: true
35+
- type: input
36+
attributes:
37+
label: Name
38+
description: The name of your device
39+
placeholder: Pixel 3a
40+
validations:
41+
required: true
42+
- type: input
43+
attributes:
44+
label: Device code
45+
description: The device code OAI gave you in the error message
46+
placeholder: sargo
47+
validations:
48+
required: true
49+
- type: input
50+
attributes:
51+
label: Model
52+
description: The model name of your device (only required, if there are several models)
53+
placeholder: G020F
54+
validations:
55+
required: false
56+
- type: markdown
57+
attributes:
58+
value: "---"
59+
- type: textarea
60+
attributes:
61+
label: Device images
62+
description: "Please provide links to any available images for the device, such as official stock firmware, Custom ROMs and Recoveries you would like to install."
63+
placeholder: |
64+
- Custom ROM: https://wiki.lineageos.org/devices/sargo
65+
- Recovery: https://twrp.me/google/googlepixel3a.html
66+
#value: |
67+
# - Custom ROM:
68+
# - Recovery:
69+
# - Stock firmware (if needed & existing):
70+
render: Markdown
71+
validations:
72+
required: false
73+
- type: markdown
74+
attributes:
75+
value: "---"
76+
- type: checkboxes
77+
attributes:
78+
label: Do you own the device and would be willing to test the installer?
79+
options:
80+
- label: I own the device and am willing to test the installer on it.
81+
required: true
82+
- type: markdown
83+
attributes:
84+
value: "---"
85+
- type: textarea
86+
attributes:
87+
label: Additional context
88+
description: Please provide any additional context or information that might be helpful in adding support for this device.
89+
render: Markdown

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Feature request
33
about: Suggest an idea for this project
44
title: ''
5-
labels: ''
5+
labels: 'enhancement'
66
assignees: ''
77

88
---

.github/workflows/build-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
matrix:
1515
os: ['ubuntu-20.04', 'ubuntu-latest']
1616
steps:
17-
- uses: actions/checkout@v2
18-
- uses: actions/setup-python@v2
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.9
2121
- run: pip install -r requirements.txt
@@ -32,8 +32,8 @@ jobs:
3232
matrix:
3333
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest']
3434
steps:
35-
- uses: actions/checkout@v2
36-
- uses: actions/setup-python@v2
35+
- uses: actions/checkout@v4
36+
- uses: actions/setup-python@v4
3737
with:
3838
python-version: 3.9
3939
- run: pip install -r requirements.txt
@@ -48,8 +48,8 @@ jobs:
4848
needs: ci
4949
runs-on: 'windows-latest'
5050
steps:
51-
- uses: actions/checkout@v2
52-
- uses: actions/setup-python@v2
51+
- uses: actions/checkout@v4
52+
- uses: actions/setup-python@v4
5353
with:
5454
python-version: 3.9
5555
- run: pip install -r requirements.txt
@@ -66,7 +66,7 @@ jobs:
6666
- build-windows
6767
runs-on: 'ubuntu-latest'
6868
steps:
69-
- uses: actions/checkout@v2
69+
- uses: actions/checkout@v4
7070
- name: Download artifact
7171
uses: actions/download-artifact@v3
7272
- name: Display structure of downloaded files
@@ -86,7 +86,7 @@ jobs:
8686
- name: Display structure of downloaded files
8787
run: ls -R
8888
- name: Create release
89-
uses: marvinpinto/action-automatic-releases@latest
89+
uses: dciborow/action-github-releases@v1.0.1
9090
if: startsWith(github.ref, 'refs/tags/')
9191
with:
9292
repo_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/manual-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest', 'windows-latest']
1414

1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-python@v2
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.9
2020
- run: pip install -r requirements.txt

0 commit comments

Comments
 (0)