Skip to content

Commit

Permalink
Merge branch 'dev' into jfltexx
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicLike committed Oct 8, 2023
2 parents 44a6205 + 8a0f35c commit f86a7a7
Show file tree
Hide file tree
Showing 45 changed files with 1,604 additions and 210 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ patreon: # Replace with a single Patreon username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
liberapay: OpenAndroidInstaller
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
labels: 'bug'
assignees: ''

---
Expand Down
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE/device-support-request.md

This file was deleted.

89 changes: 89 additions & 0 deletions .github/ISSUE_TEMPLATE/device-support-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
name: Device support request
description: Request support for a new device
title: Add support for <DEVICE>
labels: ["device"]
body:
- type: markdown
attributes:
value: "Thank you for your interest in OpenAndroidInstaller!"
- type: markdown
attributes:
value: "To get your device supported, please take the time to fill out this form."
- type: markdown
attributes:
value: "---"
- type: checkboxes
attributes:
label: Is your device already requested?
description: Please search to see if an issue for your device already exists.
options:
- label: I have searched the existing issues
required: true
- type: markdown
attributes:
value: "---"
- type: markdown
attributes:
value: "**Please input your device's details below:**"
- type: input
attributes:
label: Brand
description: The brand / manufacturer of your device
placeholder: Google
validations:
required: true
- type: input
attributes:
label: Name
description: The name of your device
placeholder: Pixel 3a
validations:
required: true
- type: input
attributes:
label: Device code
description: The device code OAI gave you in the error message
placeholder: sargo
validations:
required: true
- type: input
attributes:
label: Model
description: The model name of your device (only required, if there are several models)
placeholder: G020F
validations:
required: false
- type: markdown
attributes:
value: "---"
- type: textarea
attributes:
label: Device images
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."
placeholder: |
- Custom ROM: https://wiki.lineageos.org/devices/sargo
- Recovery: https://twrp.me/google/googlepixel3a.html
#value: |
# - Custom ROM:
# - Recovery:
# - Stock firmware (if needed & existing):
render: Markdown
validations:
required: false
- type: markdown
attributes:
value: "---"
- type: checkboxes
attributes:
label: Do you own the device and would be willing to test the installer?
options:
- label: I own the device and am willing to test the installer on it.
required: true
- type: markdown
attributes:
value: "---"
- type: textarea
attributes:
label: Additional context
description: Please provide any additional context or information that might be helpful in adding support for this device.
render: Markdown
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
labels: 'enhancement'
assignees: ''

---
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
matrix:
os: ['ubuntu-20.04', 'ubuntu-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand All @@ -32,8 +32,8 @@ jobs:
matrix:
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand All @@ -48,8 +48,8 @@ jobs:
needs: ci
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand All @@ -66,7 +66,7 @@ jobs:
- build-windows
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v3
- name: Display structure of downloaded files
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Display structure of downloaded files
run: ls -R
- name: Create release
uses: marvinpinto/action-automatic-releases@latest
uses: dciborow/action-github-releases@v1.0.1
if: startsWith(github.ref, 'refs/tags/')
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
os: ['ubuntu-20.04', 'ubuntu-latest', 'macos-latest', 'windows-latest']

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.9
- run: pip install -r requirements.txt
Expand Down
Loading

0 comments on commit f86a7a7

Please sign in to comment.