-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 'Schedule Shutdown' feature - Pause button will abandon audio focus if it is clicked by user - Other stability fixes
- Loading branch information
Showing
15 changed files
with
227 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
<string-array name="pref_preferAudioQuality_entries"> | ||
<item>极佳(无损) > 600kbps</item> | ||
<item>高 ~ 320kbps</item> | ||
<item>中 ~ 192kbps</item> | ||
<item>低 ~ 128kbps</item> | ||
</string-array> | ||
|
||
<string-array name="schedule_shutdown_entries"> | ||
<item>15分钟后</item> | ||
<item>30分钟后</item> | ||
<item>1小时后</item> | ||
<item>2小时后</item> | ||
<item>不关闭</item> | ||
</string-array> | ||
|
||
<string-array name="schedule_shutdown_hints"> | ||
<item>15分钟</item> | ||
<item>半小时</item> | ||
<item>一小时</item> | ||
<item>2小时</item> | ||
</string-array> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> | ||
<string-array name="pref_preferAudioQuality_values"> | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
<string-array name="pref_preferAudioQuality_values" tools:ignore="MissingTranslation"> | ||
<item>lossless</item> | ||
<item>high</item> | ||
<item>medium</item> | ||
<item>low</item> | ||
</string-array> | ||
|
||
<string-array name="pref_preferAudioQuality_entries"> | ||
<item>Lossless</item> | ||
<item>High</item> | ||
<item>Medium</item> | ||
<item>Low</item> | ||
<item>Lossless > 600kbps</item> | ||
<item>High ~ 320kbps</item> | ||
<item>Medium ~ 192kbps</item> | ||
<item>Low ~ 128kbps</item> | ||
</string-array> | ||
|
||
<string-array name="schedule_shutdown_entries"> | ||
<item>After 15 minutes</item> | ||
<item>After half an hour</item> | ||
<item>After one hour</item> | ||
<item>After two hours</item> | ||
<item>Remove schedule</item> | ||
</string-array> | ||
|
||
<string-array name="schedule_shutdown_hints"> | ||
<item>15 minutes</item> | ||
<item>half an hour</item> | ||
<item>one hour</item> | ||
<item>two hours</item> | ||
</string-array> | ||
|
||
<integer-array name="schedule_shutdown_values" tools:ignore="MissingTranslation"> | ||
<item>900000</item> | ||
<item>1800000</item> | ||
<item>3600000</item> | ||
<item>7200000</item> | ||
<item>0</item> | ||
</integer-array> | ||
</resources> |
Oops, something went wrong.