From e618d9b0280140bd494a354c78f08f7f018db0a3 Mon Sep 17 00:00:00 2001 From: manuroe Date: Wed, 28 Sep 2022 11:15:25 +0200 Subject: [PATCH] Update some copyright headers --- .../SwiftUI/Animation/ElementAnimations.swift | 16 ++++++++++++---- ElementX/Sources/Other/Tests.swift | 16 ++++++++++++---- IntegrationTests/Sources/Application.swift | 16 ++++++++++++---- .../Sources/ApplicationTests.swift | 16 ++++++++++++---- IntegrationTests/Sources/LoginTests.swift | 16 ++++++++++++---- .../Sources/TestMeasurementParser.swift | 16 ++++++++++++---- IntegrationTests/Sources/XCUIElement.swift | 16 ++++++++++++---- fastlane/changelog.rb | 18 +++++++++++++++--- 8 files changed, 99 insertions(+), 31 deletions(-) diff --git a/ElementX/Sources/Other/SwiftUI/Animation/ElementAnimations.swift b/ElementX/Sources/Other/SwiftUI/Animation/ElementAnimations.swift index 628442f97..d9e7437fe 100644 --- a/ElementX/Sources/Other/SwiftUI/Animation/ElementAnimations.swift +++ b/ElementX/Sources/Other/SwiftUI/Animation/ElementAnimations.swift @@ -1,9 +1,17 @@ // -// ElementAnimations.swift -// ElementX +// Copyright 2022 New Vector Ltd // -// Created by Ismail on 8.07.2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import Foundation diff --git a/ElementX/Sources/Other/Tests.swift b/ElementX/Sources/Other/Tests.swift index 1a0c320ae..2a65a9b6e 100644 --- a/ElementX/Sources/Other/Tests.swift +++ b/ElementX/Sources/Other/Tests.swift @@ -1,9 +1,17 @@ // -// Tests.swift -// ElementX +// Copyright 2022 New Vector Ltd // -// Created by Ismail on 29.07.2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import Foundation diff --git a/IntegrationTests/Sources/Application.swift b/IntegrationTests/Sources/Application.swift index 034581e1e..5158815ee 100644 --- a/IntegrationTests/Sources/Application.swift +++ b/IntegrationTests/Sources/Application.swift @@ -1,9 +1,17 @@ // -// Application.swift -// IntegrationTests +// Copyright 2022 New Vector Ltd // -// Created by Stefan Ceriu on 26/07/2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import XCTest diff --git a/IntegrationTests/Sources/ApplicationTests.swift b/IntegrationTests/Sources/ApplicationTests.swift index 04e8aa82d..430c66ced 100644 --- a/IntegrationTests/Sources/ApplicationTests.swift +++ b/IntegrationTests/Sources/ApplicationTests.swift @@ -1,9 +1,17 @@ // -// ApplicationTests.swift -// IntegrationTests +// Copyright 2022 New Vector Ltd // -// Created by Stefan Ceriu on 27/07/2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import XCTest diff --git a/IntegrationTests/Sources/LoginTests.swift b/IntegrationTests/Sources/LoginTests.swift index d17a6297a..582b8aaaf 100644 --- a/IntegrationTests/Sources/LoginTests.swift +++ b/IntegrationTests/Sources/LoginTests.swift @@ -1,9 +1,17 @@ // -// LoginTest.swift -// IntegrationTests +// Copyright 2022 New Vector Ltd // -// Created by Stefan Ceriu on 25/07/2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import XCTest diff --git a/IntegrationTests/Sources/TestMeasurementParser.swift b/IntegrationTests/Sources/TestMeasurementParser.swift index f1321de47..a649e0b3c 100644 --- a/IntegrationTests/Sources/TestMeasurementParser.swift +++ b/IntegrationTests/Sources/TestMeasurementParser.swift @@ -1,9 +1,17 @@ // -// TestMeasurementParser.swift -// IntegrationTests +// Copyright 2022 New Vector Ltd // -// Created by Stefan Ceriu on 28/07/2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import Foundation diff --git a/IntegrationTests/Sources/XCUIElement.swift b/IntegrationTests/Sources/XCUIElement.swift index e4942cf30..ef588662f 100644 --- a/IntegrationTests/Sources/XCUIElement.swift +++ b/IntegrationTests/Sources/XCUIElement.swift @@ -1,9 +1,17 @@ // -// XCUElement.swift -// ElementX +// Copyright 2022 New Vector Ltd // -// Created by Stefan Ceriu on 27/07/2022. -// Copyright © 2022 Element. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // import XCTest diff --git a/fastlane/changelog.rb b/fastlane/changelog.rb index 93b73bf05..a8cad42ff 100644 --- a/fastlane/changelog.rb +++ b/fastlane/changelog.rb @@ -1,6 +1,18 @@ -# Copyright 2020 New Vector Ltd - All Rights Reserved -# Unauthorized copying of this file, via any medium is strictly prohibited -# Proprietary and confidential +# +# Copyright 2020 New Vector Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# # frozen_string_literal: true