Skip to content

Commit

Permalink
Fix lint issue | Update release notes | Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed Aug 4, 2023
1 parent d13a019 commit 34e096d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions app/src/main/kotlin/com/w2sv/wifiwidget/ui/theme/Theme.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.w2sv.wifiwidget.ui.theme

import android.annotation.SuppressLint
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.darkColorScheme
import androidx.compose.material3.dynamicDarkColorScheme
Expand All @@ -11,6 +12,7 @@ import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.colorResource
import com.w2sv.wifiwidget.R

@SuppressLint("NewApi")
@Composable
fun AppTheme(
useDynamicTheme: Boolean = false,
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/play/release-notes/en-US/production.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
- Added "Go to WiFi settings" widget button
- Made widget buttons configurable
- Fix bssid-retrieval based crashes
2 changes: 1 addition & 1 deletion data/src/main/kotlin/com/w2sv/data/model/WifiProperty.kt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ enum class WifiProperty(
Frequency(
ViewData(
R.string.frequency,
R.string.frequency,
R.string.frequency_description,
"https://en.wikipedia.org/wiki/List_of_WLAN_channels"
),
{ wifiManager, _ -> "${wifiManager.connectionInfo.frequency} MHz" },
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=true
android.uniquePackageNames=true
android.nonFinalResIds=false
version=1.2.72
versionCode=36
version=1.2.73
versionCode=37

0 comments on commit 34e096d

Please sign in to comment.