Skip to content

Commit

Permalink
Update app version to 0.1.0 (8)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyiu committed Jan 28, 2025
1 parent 2d0434e commit 5bbdd8b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.1.0 (8) - 2024-01-27

### Fixed
- Removed xcstrings-tool-plugin to improve performance
- Improved memory usage by removing unnecessary fields from what is cached in the tries

## 0.1.0 (7) - 2024-11-18

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Comingle.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CODE_SIGN_ENTITLEMENTS = Comingle/Comingle.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 7;
CURRENT_PROJECT_VERSION = 8;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_ASSET_PATHS = "\"Comingle/Preview Content\"";
DEVELOPMENT_TEAM = S99A5B637C;
Expand Down Expand Up @@ -793,7 +793,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CODE_SIGN_ENTITLEMENTS = Comingle/Comingle.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 7;
CURRENT_PROJECT_VERSION = 8;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_ASSET_PATHS = "\"Comingle/Preview Content\"";
DEVELOPMENT_TEAM = S99A5B637C;
Expand Down
4 changes: 2 additions & 2 deletions Comingle/Assets/Localization/Localizable.xcstrings
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"sourceLanguage" : "en",
"strings" : {
"%@ %@" : {
"%@ (%@)" : {
"comment" : "Text indicating the version of the app that is running. The first argument is the version number, and the second argument is the build number.",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "new",
"value" : "%1$@ %2$@"
"value" : "%1$@ (%2$@)"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Comingle/Views/Settings/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ extension SettingsView {
return String(localized: "Unknown", comment: "Text indicating that the version of the app that is running is unknown.")
}

return String(localized: "\(String(describing: shortVersion)) \(String(describing: bundleVersion))", comment: "Text indicating the version of the app that is running. The first argument is the version number, and the second argument is the build number.")
return String(localized: "\(String(describing: shortVersion)) (\(String(describing: bundleVersion)))", comment: "Text indicating the version of the app that is running. The first argument is the version number, and the second argument is the build number.")
}
}
}
Expand Down

0 comments on commit 5bbdd8b

Please sign in to comment.