Skip to content

Commit 1da4f88

Browse files
dadachiclaude
andauthored
Clarify Shop list card tag labels as item tags (#46)
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) <noreply@anthropic.com>
1 parent 1297676 commit 1da4f88

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [3.2.1] - 2026-05-02
8+
9+
### Changed
10+
- Shop list card stat labels now read "completed item tags" / "all item tags" to align with the Number Tag → Item Tag terminology
11+
712
## [3.2.0] - 2026-05-02
813

914
### Added

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "com.nativeapptemplate.nativeapptemplatefree"
1515
targetSdk = 36
1616
minSdk = 26
17-
versionCode = 5
18-
versionName = "3.2.0"
17+
versionCode = 6
18+
versionName = "3.2.1"
1919

2020
vectorDrawables {
2121
useSupportLibrary = true

app/src/main/kotlin/com/nativeapptemplate/nativeapptemplatefree/ui/shops/ShopListCardView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ fun ShopListCardView(
4747
modifier = Modifier
4848
.padding(top = 16.dp),
4949
) {
50-
CountRow(icon = Icons.Outlined.Flag, count = data.getCompletedItemTagsCount(), countLabel = "completed tags")
51-
CountRow(icon = Icons.Outlined.Rectangle, count = data.getItemTagsCount(), countLabel = "all tags")
50+
CountRow(icon = Icons.Outlined.Flag, count = data.getCompletedItemTagsCount(), countLabel = "completed item tags")
51+
CountRow(icon = Icons.Outlined.Rectangle, count = data.getItemTagsCount(), countLabel = "all item tags")
5252
}
5353

5454
Text(

0 commit comments

Comments
 (0)