Skip to content

Commit

Permalink
1.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed Apr 15, 2024
1 parent 8062772 commit 2ac9460
Show file tree
Hide file tree
Showing 7 changed files with 167 additions and 173 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ build-and-publish:
@$(MAKE) build-apk

@echo "Publish Bundle"
@./gradlew publishBundle --track production --console verbose --no-configuration-cache # usage of configuration cache throws error for task
@./gradlew publishBundle --track production --console verbose

@$(MAKE) create-gh-release

Expand Down
1 change: 1 addition & 0 deletions app/lint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
<issue id="ComposeCompositionLocalUsage" severity="ignore" />
<issue id="NotificationPermission" severity="warning" />
<issue id="LintError" severity="warning" />
<issue id="MonochromeLauncherIcon" severity="ignore" />
</lint>
12 changes: 0 additions & 12 deletions app/src/main/kotlin/com/w2sv/wifiwidget/ui/utils/Saving.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@ package com.w2sv.wifiwidget.ui.utils
import androidx.compose.runtime.saveable.Saver
import androidx.compose.runtime.saveable.SaverScope
import androidx.compose.runtime.saveable.listSaver
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.toArgb

val colorSaver = Saver<Color, Int>(save = { it.toArgb() }, restore = { Color(it) })
val nullableColorSaver = nullableListSaver<Color, Float>(
saveNonNull = {
listOf(it.red, it.green, it.blue, it.alpha)
},
restoreNonNull = {
Color(red = it[0], green = it[1], blue = it[2], alpha = it[3])
}
)

fun <Original, Saveable> nullableListSaver(
saveNonNull: SaverScope.(value: Original) -> List<Saveable>,
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 @@
- Retain scroll states and custom color picker dialog state across configuration changes
- Small UI adjustments
- Performance improvements
159 changes: 81 additions & 78 deletions app/src/release/generated/baselineProfiles/baseline-prof.txt

Large diffs are not rendered by default.

159 changes: 81 additions & 78 deletions app/src/release/generated/baselineProfiles/startup-prof.txt

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ android.useAndroidX=true
android.nonTransitiveRClass=true
android.uniquePackageNames=true
android.nonFinalResIds=false
version=1.4.11
versionCode=52
version=1.4.12
versionCode=53

0 comments on commit 2ac9460

Please sign in to comment.