diff --git a/CHANGELOG.md b/CHANGELOG.md index a0fac16..8b28236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [3.2.1] - 2026-05-02 + +### Changed +- Shop list card stat labels now read "completed item tags" / "all item tags" to align with the Number Tag → Item Tag terminology + ## [3.2.0] - 2026-05-02 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 99b8b00..cc7cf1c 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -14,8 +14,8 @@ android { applicationId = "com.nativeapptemplate.nativeapptemplatefree" targetSdk = 36 minSdk = 26 - versionCode = 5 - versionName = "3.2.0" + versionCode = 6 + versionName = "3.2.1" vectorDrawables { useSupportLibrary = true diff --git a/app/src/main/kotlin/com/nativeapptemplate/nativeapptemplatefree/ui/shops/ShopListCardView.kt b/app/src/main/kotlin/com/nativeapptemplate/nativeapptemplatefree/ui/shops/ShopListCardView.kt index a330088..9ffc3a1 100644 --- a/app/src/main/kotlin/com/nativeapptemplate/nativeapptemplatefree/ui/shops/ShopListCardView.kt +++ b/app/src/main/kotlin/com/nativeapptemplate/nativeapptemplatefree/ui/shops/ShopListCardView.kt @@ -47,8 +47,8 @@ fun ShopListCardView( modifier = Modifier .padding(top = 16.dp), ) { - CountRow(icon = Icons.Outlined.Flag, count = data.getCompletedItemTagsCount(), countLabel = "completed tags") - CountRow(icon = Icons.Outlined.Rectangle, count = data.getItemTagsCount(), countLabel = "all tags") + CountRow(icon = Icons.Outlined.Flag, count = data.getCompletedItemTagsCount(), countLabel = "completed item tags") + CountRow(icon = Icons.Outlined.Rectangle, count = data.getItemTagsCount(), countLabel = "all item tags") } Text(