Skip to content

Commit

Permalink
release 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mltbnz committed Aug 19, 2023
1 parent 014806a commit 319ef5c
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Changelog for Critical Maps iOS
### Added

- Info view with next update countdown and riders count view
- Replace Twitter with a Mastodon feed to show toots with a tag of "CriticlMass"

### Updated

Expand Down
10 changes: 6 additions & 4 deletions CriticalMaps.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -783,17 +783,18 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 230702;
CURRENT_PROJECT_VERSION = 230819;
DEVELOPMENT_TEAM = 5YLLXUZBZ2;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 5YLLXUZBZ2;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = "$(SRCROOT)/App/iOS App/Info.plist";
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.navigation";
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 4.2.2;
MARKETING_VERSION = 4.3.0;
PRODUCT_BUNDLE_IDENTIFIER = de.pokuslabs.criticalmassberlin;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Critical Maps Prov Profile";
Expand All @@ -811,17 +812,18 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 230702;
CURRENT_PROJECT_VERSION = 230819;
DEVELOPMENT_TEAM = 5YLLXUZBZ2;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 5YLLXUZBZ2;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = "$(SRCROOT)/App/iOS App/Info.plist";
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.navigation";
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 4.2.2;
MARKETING_VERSION = 4.3.0;
PRODUCT_BUNDLE_IDENTIFIER = de.pokuslabs.criticalmassberlin;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Critical Maps Prov Profile";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "SettingsFeature"
BuildableName = "SettingsFeature"
BlueprintName = "SettingsFeature"
ReferencedContainer = "container:">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
shouldAutocreateTestPlan = "YES">
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "SettingsFeature"
BuildableName = "SettingsFeature"
BlueprintName = "SettingsFeature"
ReferencedContainer = "container:">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public struct SettingsFeature: ReducerProtocol {
)
}

var versionNumber: String { "Critical Maps \(Bundle.main.versionNumber)" }
var buildNumber: String { "Build \(Bundle.main.buildNumber)" }
var versionNumber: String { "\(Bundle.main.versionNumber)" }
var buildNumber: String { "\(Bundle.main.buildNumber)" }
var acknowledgementsPlistPath: String? {
guard let path = Bundle.module.path(forResource: "Acknowledgements", ofType: "plist") else {
return nil
Expand Down
4 changes: 2 additions & 2 deletions CriticalMapsKit/Sources/SettingsFeature/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ public struct SettingsView: View {
.accessibilityHidden(true)

VStack(alignment: .leading) {
Text(viewStore.versionNumber)
Text("Critical Maps")
.font(.titleTwo)
.foregroundColor(Color(.textPrimary))
Text(viewStore.buildNumber)
Text("Version: \(viewStore.versionNumber)+\(viewStore.buildNumber)")
.font(.bodyTwo)
.foregroundColor(colorSchemeContrast.isIncreased ? Color(.textPrimary) : Color(.textSilent))
}
Expand Down

0 comments on commit 319ef5c

Please sign in to comment.