Rearrange themes, rename "Blue" to "Legacy Blue"
This commit is contained in:
parent
ae4dfc9956
commit
069f4e12d8
3 changed files with 7 additions and 7 deletions
|
@ -52,7 +52,7 @@ internal class DownloadNotifier(private val context: Context) {
|
||||||
/**
|
/**
|
||||||
* Updated when error is thrown
|
* Updated when error is thrown
|
||||||
*/
|
*/
|
||||||
var errorThrown = false
|
private var errorThrown = false
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updated when paused
|
* Updated when paused
|
||||||
|
|
|
@ -24,14 +24,14 @@ object PreferenceValues {
|
||||||
enum class AppTheme(val titleResId: Int?) {
|
enum class AppTheme(val titleResId: Int?) {
|
||||||
DEFAULT(R.string.label_default),
|
DEFAULT(R.string.label_default),
|
||||||
MONET(R.string.theme_monet),
|
MONET(R.string.theme_monet),
|
||||||
BLUE(R.string.theme_blue),
|
|
||||||
GREEN_APPLE(R.string.theme_greenapple),
|
|
||||||
MIDNIGHT_DUSK(R.string.theme_midnightdusk),
|
MIDNIGHT_DUSK(R.string.theme_midnightdusk),
|
||||||
STRAWBERRY_DAIQUIRI(R.string.theme_strawberrydaiquiri),
|
STRAWBERRY_DAIQUIRI(R.string.theme_strawberrydaiquiri),
|
||||||
|
YOTSUBA(R.string.theme_yotsuba),
|
||||||
TAKO(R.string.theme_tako),
|
TAKO(R.string.theme_tako),
|
||||||
|
GREEN_APPLE(R.string.theme_greenapple),
|
||||||
TEALTURQUOISE(R.string.theme_tealturquoise),
|
TEALTURQUOISE(R.string.theme_tealturquoise),
|
||||||
YINYANG(R.string.theme_yinyang),
|
YINYANG(R.string.theme_yinyang),
|
||||||
YOTSUBA(R.string.theme_yotsuba),
|
BLUE(R.string.theme_blue),
|
||||||
|
|
||||||
// Deprecated
|
// Deprecated
|
||||||
DARK_BLUE(null),
|
DARK_BLUE(null),
|
||||||
|
@ -49,12 +49,12 @@ object PreferenceValues {
|
||||||
HIGHEST(5),
|
HIGHEST(5),
|
||||||
HIGH(13),
|
HIGH(13),
|
||||||
LOW(31),
|
LOW(31),
|
||||||
LOWEST(47)
|
LOWEST(47),
|
||||||
}
|
}
|
||||||
|
|
||||||
enum class TabletUiMode {
|
enum class TabletUiMode {
|
||||||
ALWAYS,
|
ALWAYS,
|
||||||
LANDSCAPE,
|
LANDSCAPE,
|
||||||
NEVER
|
NEVER,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
<string name="theme_dark">On</string>
|
<string name="theme_dark">On</string>
|
||||||
<string name="pref_app_theme">App theme</string>
|
<string name="pref_app_theme">App theme</string>
|
||||||
<string name="theme_monet">Dynamic</string>
|
<string name="theme_monet">Dynamic</string>
|
||||||
<string name="theme_blue">Blue</string>
|
<string name="theme_blue">Legacy Blue</string>
|
||||||
<string name="theme_greenapple">Green Apple</string>
|
<string name="theme_greenapple">Green Apple</string>
|
||||||
<string name="theme_midnightdusk">Midnight Dusk</string>
|
<string name="theme_midnightdusk">Midnight Dusk</string>
|
||||||
<string name="theme_strawberrydaiquiri">Strawberry Daiquiri</string>
|
<string name="theme_strawberrydaiquiri">Strawberry Daiquiri</string>
|
||||||
|
|
Reference in a new issue