Skip to content

Commit

Permalink
Quality changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BitMavrick committed Aug 6, 2024
1 parent 66fdc7c commit 9553c2b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ fun AppearanceScreen(

item {
SettingsItem(
title = "OLED dark",
subTitle = "Enable pure black background",
title = context.getString(R.string.oled_dark_title),
subTitle = context.getString(R.string.oled_dark_description),
leadingIcon = Icons.Outlined.SettingsBrightness,
showSwitch = true,
switchChecked = settingUiState.oledTheme,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package com.bitmavrick.lumolight.util
class AppConstants{
companion object {
val APP_PRODUCTION_MODE = ProductionMode.DEBUG // Change to Release before release
val APP_PRODUCTION_MODE = ProductionMode.RELEASE // Change to Release before release
const val APP_NAME = "Lumolight"
const val DEVELOPER = "BitMavrick"
const val REPOSITORY = "https://github.com/BitMavrick/Lumolight"
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
<string name="dynamic_color_title">Dynamic color</string>
<string name="dynamic_color_description">Color based on your wallpaper accent</string>

<string name="oled_dark_title">OLED dark</string>
<string name="oled_dark_description">Enable pure dark background when dark mode enabled</string>

<string name="app_name_title">App name</string>
<string name="version_title">Version</string>
<string name="package_type_title">Package type</string>
Expand Down

0 comments on commit 9553c2b

Please sign in to comment.