From 8547b117fdf1d624b628eaf382c1552b208b3a68 Mon Sep 17 00:00:00 2001 From: Paul Schmiedmayer Date: Fri, 12 May 2023 02:07:56 -0700 Subject: [PATCH] Updates the Project to be Part of the Spezi Organization (#4) --- .github/workflows/build-and-test.yml | 14 ++++----- .github/workflows/pull_request.yml | 6 ++-- .gitignore | 2 +- .spi.yml | 4 +-- .swiftlint.yml | 2 +- CITATION.cff | 6 ++-- CONTRIBUTORS.md | 18 +++++------ Package.swift | 20 ++++++------- README.md | 28 ++++++++--------- .../Account.swift | 6 ++-- .../AccountService.swift | 2 +- .../AccountServicesView.swift | 4 +-- .../EmailPasswordAccountService.swift | 6 ++-- .../Login.swift | 4 +-- .../Resources/de.lproj/Localizable.strings | 2 +- .../Resources/en.lproj/Localizable.strings | 2 +- .../SignUp.swift | 4 +-- .../CreateAnAccountService.md | 2 +- .../SpeziAccount.docc/SpeziAccount.md} | 12 ++++---- .../ConfigurableLocalization.swift | 2 +- .../Localization/Localization+Login.swift | 6 ++-- .../Localization+ResetPassword.swift | 6 ++-- .../Localization/Localization+SignUp.swift | 6 ++-- .../Localization/Localization.swift | 6 ++-- .../String+ModuleLocalization.swift | 2 +- .../Login/UsernamePasswordLoginView.swift | 2 +- .../UsernamePasswordResetPasswordView.swift | 4 +-- .../Shared/AccountInputFields.swift | 2 +- .../Shared/DataEntryAccountView.swift | 4 +-- .../Shared/UsernamePasswordFields.swift | 4 +-- .../Shared/ValidationRule.swift | 2 +- .../Sign Up/DateOfBirthPicker.swift | 2 +- .../Sign Up/GenderIdentity.swift | 2 +- .../Sign Up/GenderIdentityPicker.swift | 2 +- .../Sign Up/NameTextFields.swift | 6 ++-- .../Sign Up/SignUpOptions.swift | 2 +- .../Sign Up/SignUpValues.swift | 2 +- .../Sign Up/UsernamePasswordSignUpView.swift | 4 +-- .../UsernamePasswordAccountService.swift | 4 +-- .../Views/AccountServiceButton.swift | 2 +- .../Views/VerifiableTextGridRow.swift | 4 +-- .../CardinalKitAccountTests.swift | 17 ----------- .../SpeziAccountTests/SpeziAccountTests.swift | 17 +++++++++++ Tests/UITests/TestApp.xctestplan.license | 2 +- .../AccountTests/AccountTestsView.swift | 8 ++--- .../MockAccountServiceError.swift | 2 +- .../MockEmailPasswordAccountService.swift | 4 +-- .../MockUsernamePasswordAccountService.swift | 4 +-- .../TestAccountConfiguration.swift | 6 ++-- Tests/UITests/TestApp/AccountTests/User.swift | 4 +-- .../Contents.json.license | 2 +- .../AppIcon.appiconset/Contents.json.license | 2 +- .../Assets.xcassets/Contents.json.license | 2 +- Tests/UITests/TestApp/TestApp.swift | 8 ++--- Tests/UITests/TestApp/TestAppDelegate.swift | 6 ++-- Tests/UITests/TestApp/TestAppStandard.swift | 4 +-- .../TestAppUITests/AccountLoginTests.swift | 2 +- .../AccountResetPasswordTests.swift | 2 +- .../TestAppUITests/AccountSignUpTests.swift | 2 +- .../XCUIApplication+TestPrimaryButton.swift | 2 +- .../UITests/UITests.xcodeproj/project.pbxproj | 30 +++++++++---------- .../UITests.xcodeproj/project.pbxproj.license | 2 +- .../contents.xcworkspacedata.license | 2 +- .../IDEWorkspaceChecks.plist.license | 2 +- .../xcshareddata/xcschemes/TestApp.xcscheme | 6 ++-- .../xcschemes/TestApp.xcscheme.license | 2 +- 66 files changed, 179 insertions(+), 181 deletions(-) rename Sources/{CardinalKitAccount => SpeziAccount}/Account.swift (86%) rename Sources/{CardinalKitAccount => SpeziAccount}/AccountService.swift (95%) rename Sources/{CardinalKitAccount => SpeziAccount}/AccountServicesView.swift (95%) rename Sources/{CardinalKitAccount => SpeziAccount}/Email and Password/EmailPasswordAccountService.swift (96%) rename Sources/{CardinalKitAccount => SpeziAccount}/Login.swift (94%) rename Sources/{CardinalKitAccount => SpeziAccount}/Resources/de.lproj/Localizable.strings (97%) rename Sources/{CardinalKitAccount => SpeziAccount}/Resources/en.lproj/Localizable.strings (97%) rename Sources/{CardinalKitAccount => SpeziAccount}/SignUp.swift (94%) rename Sources/{CardinalKitAccount/CardinalKitAccount.docc => SpeziAccount/SpeziAccount.docc}/CreateAnAccountService.md (98%) rename Sources/{CardinalKitAccount/CardinalKitAccount.docc/CardinalKitAccount.md => SpeziAccount/SpeziAccount.docc/SpeziAccount.md} (90%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Localization/ConfigurableLocalization.swift (92%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Localization/Localization+Login.swift (96%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Localization/Localization+ResetPassword.swift (96%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Localization/Localization+SignUp.swift (98%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Localization/Localization.swift (94%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Localization/String+ModuleLocalization.swift (81%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Login/UsernamePasswordLoginView.swift (99%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/ResetPassword/UsernamePasswordResetPasswordView.swift (98%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Shared/AccountInputFields.swift (83%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Shared/DataEntryAccountView.swift (97%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Shared/UsernamePasswordFields.swift (99%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Shared/ValidationRule.swift (97%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/DateOfBirthPicker.swift (96%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/GenderIdentity.swift (95%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/GenderIdentityPicker.swift (97%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/NameTextFields.swift (95%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/SignUpOptions.swift (94%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/SignUpValues.swift (95%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/Sign Up/UsernamePasswordSignUpView.swift (99%) rename Sources/{CardinalKitAccount => SpeziAccount}/Username and Password/UsernamePasswordAccountService.swift (98%) rename Sources/{CardinalKitAccount => SpeziAccount}/Views/AccountServiceButton.swift (94%) rename Sources/{CardinalKitAccount => SpeziAccount}/Views/VerifiableTextGridRow.swift (98%) delete mode 100644 Tests/CardinalKitAccountTests/CardinalKitAccountTests.swift create mode 100644 Tests/SpeziAccountTests/SpeziAccountTests.swift diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 778cdd53..365e9889 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -1,5 +1,5 @@ # -# This source file is part of the CardinalKit open source project +# This source file is part of the Spezi open source project # # SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) # @@ -18,14 +18,14 @@ on: jobs: buildandtest: name: Build and Test Swift Package - uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 + uses: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 with: - artifactname: CardinalKitAccount.xcresult + artifactname: SpeziAccount.xcresult runsonlabels: '["macOS", "self-hosted"]' - scheme: CardinalKitAccount + scheme: SpeziAccount buildandtestuitests: name: Build and Test UI Tests - uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 + uses: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 with: artifactname: TestApp.xcresult runsonlabels: '["macOS", "self-hosted"]' @@ -34,6 +34,6 @@ jobs: uploadcoveragereport: name: Upload Coverage Report needs: [buildandtest, buildandtestuitests] - uses: StanfordBDHG/.github/.github/workflows/create-and-upload-coverage-report.yml@v2 + uses: StanfordSpezi/.github/.github/workflows/create-and-upload-coverage-report.yml@v2 with: - coveragereports: CardinalKitAccount.xcresult TestApp.xcresult + coveragereports: SpeziAccount.xcresult TestApp.xcresult diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 9386a122..d01b8881 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,5 +1,5 @@ # -# This source file is part of the CardinalKit open source project +# This source file is part of the Spezi open source project # # SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) # @@ -15,7 +15,7 @@ on: jobs: reuse_action: name: REUSE Compliance Check - uses: StanfordBDHG/.github/.github/workflows/reuse.yml@v2 + uses: StanfordSpezi/.github/.github/workflows/reuse.yml@v2 swiftlint: name: SwiftLint - uses: StanfordBDHG/.github/.github/workflows/swiftlint.yml@v2 + uses: StanfordSpezi/.github/.github/workflows/swiftlint.yml@v2 diff --git a/.gitignore b/.gitignore index 96f9e72c..bcbd16f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # -# This source file is part of the CardinalKit open source project +# This source file is part of the Spezi open source project # # SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) # diff --git a/.spi.yml b/.spi.yml index 2779f1d1..8a4d9254 100644 --- a/.spi.yml +++ b/.spi.yml @@ -1,5 +1,5 @@ # -# This source file is part of the CardinalKit open source project +# This source file is part of the Spezi open source project # # SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) # @@ -11,4 +11,4 @@ builder: configs: - platform: ios documentation_targets: - - CardinalKitAccount + - SpeziAccount diff --git a/.swiftlint.yml b/.swiftlint.yml index 4e9c9fe9..a1390695 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -1,5 +1,5 @@ # -# This source file is part of the CardinalKit open source project +# This source file is part of the Spezi open source project # # SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) # diff --git a/CITATION.cff b/CITATION.cff index 942ee929..3243802f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,5 +1,5 @@ # -# This source file is part of the CardinalKit open source project +# This source file is part of the Spezi open source project # # SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) # @@ -18,6 +18,6 @@ authors: - family-names: "Aalami" given-names: "Oliver" orcid: "https://orcid.org/0000-0002-7799-2429" -title: "CardinalKitAccount" +title: "SpeziAccount" doi: 10.5281/zenodo.7796499 -url: "https://github.com/StanfordBDHG/CardinalKitAccount" +url: "https://github.com/StanfordSpezi/SpeziAccount" diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 3421c52e..2718cd56 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,16 +1,14 @@ -CardinalKit Account Contributors +Spezi Account Contributors ==================== * [Paul Schmiedmayer](https://github.com/PSchmiedmayer) diff --git a/Package.swift b/Package.swift index 95dc2e7a..a71207db 100644 --- a/Package.swift +++ b/Package.swift @@ -1,7 +1,7 @@ // swift-tools-version:5.7 // -// This source file is part of the CardinalKit open source project +// This source file is part of the Spezi open source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // @@ -12,30 +12,30 @@ import PackageDescription let package = Package( - name: "CardinalKitAccount", + name: "SpeziAccount", defaultLocalization: "en", platforms: [ .iOS(.v16) ], products: [ - .library(name: "CardinalKitAccount", targets: ["CardinalKitAccount"]) + .library(name: "SpeziAccount", targets: ["SpeziAccount"]) ], dependencies: [ - .package(url: "https://github.com/StanfordBDHG/CardinalKit", .upToNextMinor(from: "0.4.1")), - .package(url: "https://github.com/StanfordBDHG/CardinalKitViews", .upToNextMinor(from: "0.2.1")) + .package(url: "https://github.com/StanfordSpezi/Spezi", .upToNextMinor(from: "0.5.0")), + .package(url: "https://github.com/StanfordSpezi/SpeziViews", .upToNextMinor(from: "0.3.0")) ], targets: [ .target( - name: "CardinalKitAccount", + name: "SpeziAccount", dependencies: [ - .product(name: "CardinalKit", package: "CardinalKit"), - .product(name: "CardinalKitViews", package: "CardinalKitViews") + .product(name: "Spezi", package: "Spezi"), + .product(name: "SpeziViews", package: "SpeziViews") ] ), .testTarget( - name: "CardinalKitAccountTests", + name: "SpeziAccountTests", dependencies: [ - .target(name: "CardinalKitAccount") + .target(name: "SpeziAccount") ] ) ] diff --git a/README.md b/README.md index f3bb2d55..4b743cbb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# CardinalKit Account +# Spezi Account -[![Build and Test](https://github.com/StanfordBDHG/CardinalKitAccount/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/StanfordBDHG/CardinalKitAccount/actions/workflows/build-and-test.yml) -[![codecov](https://codecov.io/gh/StanfordBDHG/CardinalKitAccount/branch/main/graph/badge.svg?token=IAfXOmGenQ)](https://codecov.io/gh/StanfordBDHG/CardinalKitAccount) +[![Build and Test](https://github.com/StanfordSpezi/SpeziAccount/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/StanfordSpezi/SpeziAccount/actions/workflows/build-and-test.yml) +[![codecov](https://codecov.io/gh/StanfordSpezi/SpeziAccount/branch/main/graph/badge.svg?token=IAfXOmGenQ)](https://codecov.io/gh/StanfordSpezi/SpeziAccount) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7796499.svg)](https://doi.org/10.5281/zenodo.7796499) -[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FStanfordBDHG%2FCardinalKitAccount%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/StanfordBDHG/CardinalKitAccount) -[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FStanfordBDHG%2FCardinalKitAccount%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/StanfordBDHG/CardinalKitAccount) +[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FStanfordSpezi%2FSpeziAccount%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/StanfordSpezi/SpeziAccount) +[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FStanfordSpezi%2FSpeziAccount%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/StanfordSpezi/SpeziAccount) -The Account module allows users to incorporate account-related functionality for CardinalKit-based applications. +The Account module allows users to incorporate account-related functionality for Spezi-based applications. -For more information, please refer to the [API documentation](https://swiftpackageindex.com/StanfordBDHG/CardinalKitAccount/documentation). +For more information, please refer to the [API documentation](https://swiftpackageindex.com/StanfordSpezi/SpeziAccount/documentation). -## The CardinalKit Template Application +## The Spezi Template Application -The [CardinalKit Template Application](https://github.com/StanfordBDHG/CardinalKitTemplateApplication) provides a great starting point and example using the CardinalKit Account module. +The [Spezi Template Application](https://github.com/StanfordSpezi/SpeziTemplateApplication) provides a great starting point and example using the Spezi Account module. ## Contributing -Contributions to this project are welcome. Please make sure to read the [contribution guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md) and the [contributor covenant code of conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) first. +Contributions to this project are welcome. Please make sure to read the [contribution guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md) and the [contributor covenant code of conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md) first. ## License -This project is licensed under the MIT License. See [Licenses](https://github.com/StanfordBDHG/CardinalKitAccount/tree/main/LICENSES) for more information. +This project is licensed under the MIT License. See [Licenses](https://github.com/StanfordSpezi/SpeziAccount/tree/main/LICENSES) for more information. -![Stanford Byers Center for Biodesign Logo](https://raw.githubusercontent.com/StanfordBDHG/.github/main/assets/biodesign-footer-light.png#gh-light-mode-only) -![Stanford Byers Center for Biodesign Logo](https://raw.githubusercontent.com/StanfordBDHG/.github/main/assets/biodesign-footer-dark.png#gh-dark-mode-only) +![Spezi Footer](https://raw.githubusercontent.com/StanfordSpezi/.github/main/assets/FooterLight.png#gh-light-mode-only) +![Spezi Footer](https://raw.githubusercontent.com/StanfordSpezi/.github/main/assets/FooterDark.png#gh-dark-mode-only) diff --git a/Sources/CardinalKitAccount/Account.swift b/Sources/SpeziAccount/Account.swift similarity index 86% rename from Sources/CardinalKitAccount/Account.swift rename to Sources/SpeziAccount/Account.swift index d28e4c9f..3c141d72 100644 --- a/Sources/CardinalKitAccount/Account.swift +++ b/Sources/SpeziAccount/Account.swift @@ -1,16 +1,16 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // // SPDX-License-Identifier: MIT // -import CardinalKit +import Spezi import SwiftUI -/// Account-related CardinalKit module managing a collection of ``AccountService``s. +/// Account-related Spezi module managing a collection of ``AccountService``s. /// /// The ``Account/Account`` type also enables interaction with the ``AccountService``s from anywhere in the view hierachy. public actor Account: ObservableObject { diff --git a/Sources/CardinalKitAccount/AccountService.swift b/Sources/SpeziAccount/AccountService.swift similarity index 95% rename from Sources/CardinalKitAccount/AccountService.swift rename to Sources/SpeziAccount/AccountService.swift index 39018418..233ee840 100644 --- a/Sources/CardinalKitAccount/AccountService.swift +++ b/Sources/SpeziAccount/AccountService.swift @@ -1,5 +1,5 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // diff --git a/Sources/CardinalKitAccount/AccountServicesView.swift b/Sources/SpeziAccount/AccountServicesView.swift similarity index 95% rename from Sources/CardinalKitAccount/AccountServicesView.swift rename to Sources/SpeziAccount/AccountServicesView.swift index 5cc6ee76..19c4687e 100644 --- a/Sources/CardinalKitAccount/AccountServicesView.swift +++ b/Sources/SpeziAccount/AccountServicesView.swift @@ -1,12 +1,12 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // // SPDX-License-Identifier: MIT // -import CardinalKit +import Spezi import SwiftUI diff --git a/Sources/CardinalKitAccount/Email and Password/EmailPasswordAccountService.swift b/Sources/SpeziAccount/Email and Password/EmailPasswordAccountService.swift similarity index 96% rename from Sources/CardinalKitAccount/Email and Password/EmailPasswordAccountService.swift rename to Sources/SpeziAccount/Email and Password/EmailPasswordAccountService.swift index 7eaeccf9..e72f2bfd 100644 --- a/Sources/CardinalKitAccount/Email and Password/EmailPasswordAccountService.swift +++ b/Sources/SpeziAccount/Email and Password/EmailPasswordAccountService.swift @@ -1,14 +1,14 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // // SPDX-License-Identifier: MIT // -import CardinalKit -import CardinalKitViews import RegexBuilder +import Spezi +import SpeziViews import SwiftUI diff --git a/Sources/CardinalKitAccount/Login.swift b/Sources/SpeziAccount/Login.swift similarity index 94% rename from Sources/CardinalKitAccount/Login.swift rename to Sources/SpeziAccount/Login.swift index d7e4ed1a..fce96c4b 100644 --- a/Sources/CardinalKitAccount/Login.swift +++ b/Sources/SpeziAccount/Login.swift @@ -1,12 +1,12 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // // SPDX-License-Identifier: MIT // -import CardinalKit +import Spezi import SwiftUI diff --git a/Sources/CardinalKitAccount/Resources/de.lproj/Localizable.strings b/Sources/SpeziAccount/Resources/de.lproj/Localizable.strings similarity index 97% rename from Sources/CardinalKitAccount/Resources/de.lproj/Localizable.strings rename to Sources/SpeziAccount/Resources/de.lproj/Localizable.strings index a6e5bee0..fdbdd046 100644 --- a/Sources/CardinalKitAccount/Resources/de.lproj/Localizable.strings +++ b/Sources/SpeziAccount/Resources/de.lproj/Localizable.strings @@ -1,5 +1,5 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // diff --git a/Sources/CardinalKitAccount/Resources/en.lproj/Localizable.strings b/Sources/SpeziAccount/Resources/en.lproj/Localizable.strings similarity index 97% rename from Sources/CardinalKitAccount/Resources/en.lproj/Localizable.strings rename to Sources/SpeziAccount/Resources/en.lproj/Localizable.strings index 3cd89544..afb89155 100644 --- a/Sources/CardinalKitAccount/Resources/en.lproj/Localizable.strings +++ b/Sources/SpeziAccount/Resources/en.lproj/Localizable.strings @@ -1,5 +1,5 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // diff --git a/Sources/CardinalKitAccount/SignUp.swift b/Sources/SpeziAccount/SignUp.swift similarity index 94% rename from Sources/CardinalKitAccount/SignUp.swift rename to Sources/SpeziAccount/SignUp.swift index 4a3282ae..5fc55294 100644 --- a/Sources/CardinalKitAccount/SignUp.swift +++ b/Sources/SpeziAccount/SignUp.swift @@ -1,12 +1,12 @@ // -// This source file is part of the CardinalKit open-source project +// This source file is part of the Spezi open-source project // // SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) // // SPDX-License-Identifier: MIT // -import CardinalKit +import Spezi import SwiftUI diff --git a/Sources/CardinalKitAccount/CardinalKitAccount.docc/CreateAnAccountService.md b/Sources/SpeziAccount/SpeziAccount.docc/CreateAnAccountService.md similarity index 98% rename from Sources/CardinalKitAccount/CardinalKitAccount.docc/CreateAnAccountService.md rename to Sources/SpeziAccount/SpeziAccount.docc/CreateAnAccountService.md index 3a6b3ed3..8808ea20 100644 --- a/Sources/CardinalKitAccount/CardinalKitAccount.docc/CreateAnAccountService.md +++ b/Sources/SpeziAccount/SpeziAccount.docc/CreateAnAccountService.md @@ -2,7 +2,7 @@