This commit is contained in:
2026-05-20 19:47:33 +10:00
commit dbb6302bd1
313 changed files with 17869 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
github: [ "rushiiMachine" ]
+20
View File
@@ -0,0 +1,20 @@
name: Blank Template
description: Use this template ONLY IF the other templates do not fit!
labels: []
body:
- type: textarea
id: info-sec
attributes:
label: Tell us all about it.
description: Go nuts, let us know what you're wanting to bring attention to.
placeholder: ...
validations:
required: true
- type: checkboxes
id: agreement-check
attributes:
label: Request Agreement
description: Did you check to make sure this issue you're bringing forward has not already been mentioned?
options:
- label: I did indeed check to make sure the issue is original!
required: true
+81
View File
@@ -0,0 +1,81 @@
name: Bug/Crash Report
description: Report a bug or crash in Radiant Lyrics Manager. For issues with Radiant Lyrics or plugins, please use the plugin's repo or our support server.
labels: [bug]
body:
- type: textarea
id: bug-description
attributes:
label: Whats the issue?
description: Describe what happens, when it happens, and where.
placeholder: |
Example:
When I open the settings page and tap on "Plugins", the app crashes with no warning.
validations:
required: true
- type: textarea
id: expected-behaviour
attributes:
label: What did you expect to happen?
description: Describe the correct or expected behavior.
placeholder: |
Example:
I expected the "Plugins" page to open without crashing.
validations:
required: true
- type: textarea
id: reproduction-steps
attributes:
label: How can we reproduce it?
description: Provide step-by-step instructions.
placeholder: |
Steps:
1. Go to Settings
2. Tap on "Plugins"
3. App crashes immediately
validations:
required: true
- type: input
id: android-version
attributes:
label: Android Version
description: What Android version is this happening on?
placeholder: Android 13, or SDK 33
validations:
required: true
- type: input
id: device-info
attributes:
label: Device & OS Info
description: Device model and ROM/skin (e.g. One UI, LineageOS, Pixel Experience).
placeholder: Samsung Galaxy S21, One UI 5.1
validations:
required: true
- type: textarea
id: install-log
attributes:
label: Installation failure log (if applicable)
description: The log for a failed installation. This can be obtained by going to the Home screen -> Log icon in top right -> most recent log -> save. Paste the log here (between triple backticks ```).
placeholder: |
```
Paste your installation log here
```
validations:
required: false
- type: checkboxes
id: agreement-check
attributes:
label: Before Submitting
description: "Please confirm the following:"
options:
- label: Ive checked that this issue hasnt already been reported.
required: true
- type: markdown
attributes:
value: After creating this issue, please upload a file containing a logcat recording your crash in a separate comment! See [here](https://pastebin.com/pNhXwhrd) on how to accomplish this.
+5
View File
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Radiant Lyrics Support Server
url: https://tidal.gg/EsNDvBaHVU
about: If you need help regarding Radiant Lyrics or plugins for Radiant Lyrics, please join our support server.
+28
View File
@@ -0,0 +1,28 @@
name: Feature Request
description: Create a feature or backport request to be built into Radiant Lyrics Manager.
labels: [enhancement]
body:
- type: textarea
id: feature-basic-description
attributes:
label: What is it that you'd like to see?
description: Also, you'd like to, give us a bit more information on what you'd like this feature to do and/or how you want it to work.
placeholder: I think ... would be a cool feature to add. This would be awesome, thanks!
validations:
required: true
- type: textarea
id: feature-verbose-description
attributes:
label: Go into more detail...
description: If you want to, you can be more descriptive about your request here. Not required.
placeholder: This would be really awesome, but I think if you would do it this way, by doing ..., it'd be cooler.
validations:
required: false
- type: checkboxes
id: agreement-check
attributes:
label: Request Agreement
description: Did you check to make sure your feature has not already been requested?
options:
- label: I did indeed check to make sure my feature request is original!
required: true
Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.
+39
View File
@@ -0,0 +1,39 @@
name: Build Debug App
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: zulu
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: ${{ github.event_name == 'pull_request' }}
- name: Build with Gradle
run: ./gradlew :app:assembleDebug :app:assembleStaging --stacktrace
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: app
if-no-files-found: error
path: |
app/build/outputs/apk/debug/app-debug.apk
app/build/outputs/apk/staging/app-staging.apk
+32
View File
@@ -0,0 +1,32 @@
name: Sync Crowdin
on:
schedule:
- cron: "0 17 * * 6" # "At 17:00 on Saturday."
workflow_dispatch:
permissions:
contents: write
jobs:
sync-crowdin:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Crowdin
uses: crowdin/github-action@v2
with:
config: crowdin.yml
upload_sources: true
upload_translations: true
download_translations: true
push_translations: true
localization_branch_name: main
create_pull_request: false
commit_message: 'chore(l10n): sync translations'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
+64
View File
@@ -0,0 +1,64 @@
name: Build & Publish Release App
on:
push:
tags: [ "v*.*.*" ]
concurrency:
group: "release"
cancel-in-progress: true
permissions:
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: zulu
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-write-only: true
- name: Build with Gradle
env:
SIGNING_KEY_ALIAS: ${{ secrets.keyAlias }}
SIGNING_KEY_PASSWORD: ${{ secrets.keyPassword }}
SIGNING_STORE_PASSWORD: ${{ secrets.keystorePassword }}
SIGNING_STORE_FILE: ${{ github.workspace }}/release.keystore
RELEASE: true
run: |
echo "${{ secrets.keystore }}" | base64 -d > release.keystore
./gradlew :app:packageRelease --stacktrace
rm release.keystore
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: app
if-no-files-found: error
path: app/build/outputs/apk/release/app-release.apk
- name: Publish Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${{ github.ref_name }}"
apk_file="radiant-lyrics-manager-$tag.apk"
mv -T ./app/build/outputs/apk/release/app-release.apk "./$apk_file"
gh release create "$tag" \
--title "$tag" \
--generate-notes \
--verify-tag \
--fail-on-no-commits \
"./$apk_file"
+20
View File
@@ -0,0 +1,20 @@
name: "Validate Gradle Wrapper"
on:
workflow_dispatch:
push:
paths:
- gradle/wrapper/**
- gradlew*
pull_request:
paths:
- gradle/wrapper/**
- gradlew*
jobs:
validation:
name: "Validate Authenticity of Gradle Wrapper"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v4