diff --git a/CHANGELOG.md b/CHANGELOG.md index e841052..d560443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Comingle.xcodeproj/project.pbxproj b/Comingle.xcodeproj/project.pbxproj index 7c7fb84..ca38db7 100644 --- a/Comingle.xcodeproj/project.pbxproj +++ b/Comingle.xcodeproj/project.pbxproj @@ -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; @@ -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; diff --git a/Comingle/Assets/Localization/Localizable.xcstrings b/Comingle/Assets/Localization/Localizable.xcstrings index 0e46f03..55c551c 100644 --- a/Comingle/Assets/Localization/Localizable.xcstrings +++ b/Comingle/Assets/Localization/Localizable.xcstrings @@ -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$@)" } } } diff --git a/Comingle/Views/Settings/SettingsView.swift b/Comingle/Views/Settings/SettingsView.swift index 0b9ce54..8a396a0 100644 --- a/Comingle/Views/Settings/SettingsView.swift +++ b/Comingle/Views/Settings/SettingsView.swift @@ -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.") } } }