Skip to content

Commit 1e40be9

Browse files
committed
1.7.0
1 parent 2d26806 commit 1e40be9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ publish:
7070
@echo -e "Retrieved Version: ${VERSION}\n\n Hit enter if you have\n 1. Incremented the version\n 2. Updated the release notes\n\n Otherwise cancel target now."
7171
@read
7272

73-
@echo "Check"
74-
@./gradlew check
73+
# @echo "Check"
74+
# @./gradlew check
7575

76+
@$(MAKE) baseline-profile
7677
@$(MAKE) clean # Required as 'publishBundle' publishes all .aab's in archive dir
77-
@#$(MAKE) baseline-profile
7878

7979
@echo "Pushing latest changes";git add .;git commit -m "${VERSION}";git push
8080

app/src/main/kotlin/com/w2sv/wifiwidget/ui/navigation/NavGraph.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import slimber.log.i
2121

2222
@Composable
2323
fun NavGraph(initialScreen: Screen) {
24-
val backStack = rememberNavBackStack(initialScreen)
24+
val backStack = rememberNavBackStack(Screen.WidgetConfiguration)
2525
val navigator = remember(backStack) { NavigatorImpl(backStack) }
2626

2727
OnChange(backStack.size) { i { "BackStack=${backStack.map { screen -> screen::class.java.simpleName }}" } }
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- Show 'location access missing' snackbar upon in-app widget pinning with access requiring properties active, but no access
2-
- Fix background location access grant initially not being recognized
3-
- Fix widget property copy-to-clipboard functionality on click
4-
- Improve in-app and widget refreshing performance
1+
- Target Android 16
2+
- Smoother screen transitions
3+
- More refined and user-friendly UI
4+
- Performance improvements and bug fixes

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ android.nonTransitiveRClass=true
1515
android.uniquePackageNames=true
1616
android.nonFinalResIds=false
1717
# ======= Version =======
18-
version=1.6.4
19-
versionCode=66
18+
version=1.7.0
19+
versionCode=67

0 commit comments

Comments
 (0)