Skip to content

Commit 9e115d9

Browse files
authored
Merge pull request #61 from nativeapptemplate/clarify-shop-list-card-tag-labels
Clarify Shop list card tag labels as item tags
2 parents e65811e + c84c670 commit 9e115d9

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.2.1] - 2026-05-02
11+
12+
### Changed
13+
- Clarify Shop list card tag labels as "completed item tags" / "all item tags"
14+
1015
## [3.2.0] - 2026-05-02
1116

1217
### Removed

NativeAppTemplate.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@
12051205
CODE_SIGN_ENTITLEMENTS = "";
12061206
CODE_SIGN_IDENTITY = "Apple Development";
12071207
CODE_SIGN_STYLE = Automatic;
1208-
CURRENT_PROJECT_VERSION = 10;
1208+
CURRENT_PROJECT_VERSION = 11;
12091209
DEVELOPMENT_ASSET_PATHS = "\"NativeAppTemplate/Preview Content\"";
12101210
ENABLE_PREVIEWS = YES;
12111211
ENABLE_USER_SCRIPT_SANDBOXING = NO;
@@ -1217,7 +1217,7 @@
12171217
"$(inherited)",
12181218
"@executable_path/Frameworks",
12191219
);
1220-
MARKETING_VERSION = 3.2.0;
1220+
MARKETING_VERSION = 3.2.1;
12211221
PRODUCT_BUNDLE_IDENTIFIER = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}";
12221222
"PRODUCT_BUNDLE_IDENTIFIER[sdk=iphoneos*]" = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}";
12231223
PRODUCT_NAME = NativeAppTemplate;
@@ -1241,7 +1241,7 @@
12411241
CODE_SIGN_ENTITLEMENTS = "";
12421242
CODE_SIGN_IDENTITY = "Apple Development";
12431243
CODE_SIGN_STYLE = Automatic;
1244-
CURRENT_PROJECT_VERSION = 10;
1244+
CURRENT_PROJECT_VERSION = 11;
12451245
DEVELOPMENT_ASSET_PATHS = "\"NativeAppTemplate/Preview Content\"";
12461246
ENABLE_PREVIEWS = YES;
12471247
ENABLE_USER_SCRIPT_SANDBOXING = NO;
@@ -1253,7 +1253,7 @@
12531253
"$(inherited)",
12541254
"@executable_path/Frameworks",
12551255
);
1256-
MARKETING_VERSION = 3.2.0;
1256+
MARKETING_VERSION = 3.2.1;
12571257
PRODUCT_BUNDLE_IDENTIFIER = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}";
12581258
"PRODUCT_BUNDLE_IDENTIFIER[sdk=iphoneos*]" = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}";
12591259
PRODUCT_NAME = NativeAppTemplate;

NativeAppTemplate/UI/Shop List/ShopListCardView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct ShopListCardView: View {
2727
.foregroundStyle(.secondaryText)
2828
Text(String(shop.completedItemTagsCount))
2929
.font(.uiLabelBold)
30-
Text(verbatim: "completed tags")
30+
Text(verbatim: "completed item tags")
3131
.font(.uiFootnote)
3232
.foregroundStyle(.contentText)
3333
}
@@ -38,7 +38,7 @@ struct ShopListCardView: View {
3838
.foregroundStyle(.secondaryText)
3939
Text(String(shop.itemTagsCount))
4040
.font(.uiLabelBold)
41-
Text(verbatim: "all tags")
41+
Text(verbatim: "all item tags")
4242
.font(.uiFootnote)
4343
.foregroundStyle(.contentText)
4444
}

0 commit comments

Comments
 (0)