Skip to content

Commit

Permalink
Prepare release 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
johankool committed Sep 4, 2024
1 parent 8b57b4e commit 2c08713
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Config/appconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ settings:

# Enable when the API is undergoing maintenance
maintenance: false

# A feature flag to ignore failed server certificate import
ignoreServerCertificateImportFailure: true

# A feature flag to ignore missing server certificate name
ignoreMissingServerCertificateName: false

# Keep track of keys that are no longer in use.
deprecatedKeys: []
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ A: Run these commands:
curl --silent --compressed 'https://discovery.eduroam.app/v2/discovery.json' > geteduroam/discovery.json
curl --silent --compressed 'https://getgovroam.nl/v2/discovery.json' > getgovroam/discovery.json

care prepare Config/appconfig.yaml geteduroam/appconfig.json
care prepare Config/appconfig.yaml getgovroam/appconfig.json

## License

See [license](LICENSE.md).
Expand Down
8 changes: 4 additions & 4 deletions geteduroam.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 2.4;
MARKETING_VERSION = 2.3.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -676,7 +676,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 2.4;
MARKETING_VERSION = 2.3.2;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -807,7 +807,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 2.4;
MARKETING_VERSION = 2.3.2;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -943,7 +943,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 2.4;
MARKETING_VERSION = 2.3.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class Values {
public fileprivate(set) var maintenance: Bool = false

/// A feature flag to ignore failed server certificate import
fileprivate var ignoreServerCertificateImportFailure: Bool = false
fileprivate var ignoreServerCertificateImportFailure: Bool = true
public var ignoreServerCertificateImportFailureEnabled: IgnoreServerCertificateImportFailureEnabled? { ignoreServerCertificateImportFailure ? IgnoreServerCertificateImportFailureEnabled() : nil }

/// A feature flag to ignore missing server certificate name
Expand Down
2 changes: 1 addition & 1 deletion geteduroam/appconfig.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"deprecatedKeys":[],"settings":{"appState":"active","maintenance":false}}
{"deprecatedKeys":[],"settings":{"appState":"active","ignoreMissingServerCertificateName":false,"ignoreServerCertificateImportFailure":true,"maintenance":false}}
2 changes: 1 addition & 1 deletion getgovroam/appconfig.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"deprecatedKeys":[],"settings":{"appState":"active","maintenance":false}}
{"deprecatedKeys":[],"settings":{"appState":"active","ignoreMissingServerCertificateName":false,"ignoreServerCertificateImportFailure":true,"maintenance":false}}

0 comments on commit 2c08713

Please sign in to comment.