Version 1.0.0

The initial release of Auxio, a sensible and customizable music player for android.
This commit is contained in:
OxygenCobalt 2020-12-20 08:52:51 -07:00
parent 5deea0c11e
commit 79756f36c7
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
8 changed files with 9 additions and 58 deletions

View file

@ -1,33 +0,0 @@
---
name: Bug/Crash Report
about: Report an issue with Auxio
title:
labels: bug
assignees: ''
---
**Describe the bug/crash**
<!-- A clear and concise description of what the bug or crash is. -->
**To Reproduce**
<!--
Steps to reproduce the bug/crash:
1. Go to X
2. Click on Y
3. Scroll down to Z
4. See error
-->
**Logs/Stack Traces**
<!-- If possible, provide a stack trace or a Logcat. This can help identify the issue. -->
**Screenshots**
<!-- If applicable, add screenshots to help explain your problem. -->
**Phone Information**
<!-- Please provide information about your phone's android version/model. -->
**Due Diligence**
- [ ] I have read the [Contribution Guidelines](../CONTRIBUTING.md).

View file

@ -1,21 +0,0 @@
---
name: Bug/Crash Report
about: Propose an idea for Auxio
title:
labels: enhancement
assignees: ''
---
**Describe the feature you want to implement**
<!-- A clear and concise description of what you want to be added. -->
**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
**Why do you think this will improve everyone's usage of Auxio?**
<!-- Provide a rationale here -->
**Due Diligence**
- [ ] I have read the [Accepted Additions and Requests](../../info/ADDITIONS.md), and the [Contribution Guidelines](../CONTRIBUTING.md).

View file

@ -17,7 +17,7 @@
- -
**Any additional information** **Any additional information**
<!-- Also add any information relevant to this PR --> <!-- Also add any information relevant to this PR. -->
**APK testing** **APK testing**
<!-- Please create a debug APK for your changes. --> <!-- Please create a debug APK for your changes. -->
@ -25,4 +25,4 @@ debug.zip
**Due Diligence** **Due Diligence**
- [ ] I have read the [Contribution Guidelines](CONTRIBUTING.md) and [Accepted additions & Requests](../info/ADDITIONS.md). - [ ] I have read the [Contribution Guidelines](https://github.com/OxygenCobalt/Auxio/blob/dev/.github/CONTRIBUTING.md) and [Accepted additions & Requests](https://github.com/OxygenCobalt/Auxio/blob/dev/info/ADDITIONS.md).

View file

@ -12,7 +12,7 @@ android {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 30 targetSdkVersion 30
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0.0"
buildFeatures { buildFeatures {
dataBinding true dataBinding true

View file

@ -53,6 +53,11 @@ class LoadingFragment : Fragment(R.layout.fragment_loading) {
returnToLoading(binding) returnToLoading(binding)
loadingModel.reload() loadingModel.reload()
} else {
showError(binding)
binding.loadingGrantButton.visibility = View.VISIBLE
binding.loadingErrorText.text = getString(R.string.error_no_perms)
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 389 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 389 KiB

After

Width:  |  Height:  |  Size: 429 KiB

View file

@ -6,7 +6,7 @@ Since I want to keep this app from suffering the same fate as those others, Any
All guidelines from the [Contribution Guidelines](../.github/CONTRIBUTING.md) still apply. All guidelines from the [Contribution Guidelines](../.github/CONTRIBUTING.md) still apply.
## Bug Fixes, Optimizations, Library Updates, Formatting, etc. ## Bug Fixes, Optimizations, Library Updates, Formatting, Architecture Improvements, etc.
These will likely be accepted as long as they do not cause too much harm to the app's architecture or UX. These will likely be accepted as long as they do not cause too much harm to the app's architecture or UX.