Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre-Yves Lapersonne <[email protected]>
  • Loading branch information
pylapp authored Mar 8, 2024
2 parents c9bbf12 + 23f1882 commit a13e333
Show file tree
Hide file tree
Showing 14 changed files with 917 additions and 32 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0](https://github.com/Orange-OpenSource/ods-ios/compare/1.0.0...1.1.0) - 2024-03-08

### Changed

- [DemoApp/SDK] Small fixes in the release documentation
- [DemoApp] Add accessibility statement in online resources and point to it from app ([#786](https://github.com/Orange-OpenSource/ods-ios/issues/786))

## [1.0.0](https://github.com/Orange-OpenSource/ods-ios/compare/0.17.0...1.0.0) - 2024-03-06

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1590,7 +1590,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "soft.cocoa.ods-ios-demo.dev";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -1627,7 +1627,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "soft.cocoa.ods-ios-demo.dev";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "ods-demo-app-appstore-qualif";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[
{
"version": "1.1.0",
"date": "2024-03-08",
"news": "Redirect user from accessibility statement view to online HTML version"
},
{
"version": "1.0.0",
"date": "2024-03-06",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ struct AboutScreen: View {
accessibilityStatement = ODSAboutAccessibilityStatement(
conformityStatus: "Accessibility: partially conform",
fileName: "AccessibilityStatement",
reportDetail: URL(string: "https://la-va11ydette.orange.com/")!)
reportDetail: URL(string: "https://orange-opensource.github.io/ods-ios/accessibilityStatement/orange-design-system.html")!)

customItems = [
AboutDesignGuidelinesItemConfig(priority: 202),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ struct AboutModuleDemo: View {
let acessibilityStatement = ODSAboutAccessibilityStatement(
conformityStatus: "Accessibility: partially conform",
fileName: "AccessibilityStatement",
reportDetail: URL(string: "https://la-va11ydette.orange.com/")!)
reportDetail: URL(string: "https://orange-opensource.github.io/ods-ios/accessibilityStatement/orange-design-system.html")!)

var privacyPolicy: ODSPrivacyPolicy {
model.privacyPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ final class ODSAboutListItemPriorityTests: XCTestCase {
// Given
let privacyPoliceItem = AboutPrivacyPolicyItem(policy: ODSPrivacyPolicy.webview(.url(Bundle.main.url(forResource: "PrivacyNotice", withExtension: "html")!)))
let termOfServiceItem = AboutTermOfServiceItem(termsOfService: fakeView)
let accessiblityStatementItem = AboutAccessibilityStatementItemConfig(statementConfig: ODSAboutAccessibilityStatement(conformityStatus: "Accessibility: partially conform", fileName: "AccessibilityStatement", reportDetail: URL(string: "https://la-va11ydette.orange.com/")!))
let accessiblityStatementItem = AboutAccessibilityStatementItemConfig(statementConfig: ODSAboutAccessibilityStatement(conformityStatus: "Accessibility: partially conform", fileName: "AccessibilityStatement", reportDetail: URL(string: "https://orange-opensource.github.io/ods-ios/accessibilityStatement/orange-design-system.html")!))
let appNewsItem = ODSAboutAppNewsItemConfig(path: "")
let legalInformationItem = ODSAboutLegalInformationItemConfig(legalInformation: fakeView)
let moreAppsItem = ODSRecirculationItemConfig(dataSource: .remote(url: URL(string: "https://opensource.orange.com/")!))
Expand Down
12 changes: 12 additions & 0 deletions docs/accessibilityStatement/boosted-grid.min.css

Large diffs are not rendered by default.

Binary file added docs/accessibilityStatement/favicon.ico
Binary file not shown.
Loading

0 comments on commit a13e333

Please sign in to comment.