From 410d3e47e7e7b558ed92804471ab0ac850a32c6b Mon Sep 17 00:00:00 2001 From: dadachi Date: Sat, 2 May 2026 17:28:21 +0900 Subject: [PATCH] Clarify Shop list card tag labels as item tags Rename the Shop list card stat labels from "completed tags" / "all tags" to "completed item tags" / "all item tags" so the visible text matches the Number Tag -> Item Tag terminology rename. Co-Authored-By: Claude Opus 4.7 (1M context) --- CHANGELOG.md | 5 +++++ app/build.gradle.kts | 4 ++-- .../nativeapptemplatefree/ui/shops/ShopListCardView.kt | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) 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(