Skip to content

Commit e9ea3bc

Browse files
author
Luc Dion
committed
Update copyrights and the benchmark graph
1 parent 33a1f3e commit e9ea3bc

File tree

24 files changed

+93
-101
lines changed

24 files changed

+93
-101
lines changed

Example/PinLayoutSample.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@
492492
attributes = {
493493
LastSwiftUpdateCheck = 0900;
494494
LastUpgradeCheck = 0900;
495-
ORGANIZATIONNAME = Mirego;
495+
ORGANIZATIONNAME = layoutbox;
496496
TargetAttributes = {
497497
249EFE3E1E64FAFE00165E39 = {
498498
CreatedOnToolsVersion = 8.2.1;
@@ -821,7 +821,7 @@
821821
DEVELOPMENT_TEAM = "";
822822
INFOPLIST_FILE = "PinLayoutSample/Supporting Files/Info.plist";
823823
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
824-
PRODUCT_BUNDLE_IDENTIFIER = com.mirego.PinLayoutSample;
824+
PRODUCT_BUNDLE_IDENTIFIER = com.layoutbox.PinLayoutSample;
825825
PRODUCT_NAME = "$(TARGET_NAME)";
826826
SWIFT_OBJC_BRIDGING_HEADER = "PinLayoutSample/UI/Examples/PinLayoutSample-Bridging-Header.h";
827827
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -839,7 +839,7 @@
839839
DEVELOPMENT_TEAM = "";
840840
INFOPLIST_FILE = "PinLayoutSample/Supporting Files/Info.plist";
841841
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
842-
PRODUCT_BUNDLE_IDENTIFIER = com.mirego.PinLayoutSample;
842+
PRODUCT_BUNDLE_IDENTIFIER = com.layoutbox.PinLayoutSample;
843843
PRODUCT_NAME = "$(TARGET_NAME)";
844844
SWIFT_OBJC_BRIDGING_HEADER = "PinLayoutSample/UI/Examples/PinLayoutSample-Bridging-Header.h";
845845
SWIFT_VERSION = 4.0;

Sources/Extensions/CALayer+PinLayout.swift

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1+
// Copyright (c) 2017 Luc Dion
2+
// Permission is hereby granted, free of charge, to any person obtaining a copy
3+
// of this software and associated documentation files (the "Software"), to deal
4+
// in the Software without restriction, including without limitation the rights
5+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6+
// copies of the Software, and to permit persons to whom the Software is
7+
// furnished to do so, subject to the following conditions:
18
//
2-
// CALayer+PinLayout.swift
3-
// PinLayout
4-
//
5-
// Created by Antoine Lamy on 2018-06-20.
6-
// Copyright © 2018 mcswiftlayyout.mirego.com. All rights reserved.
9+
// The above copyright notice and this permission notice shall be included in
10+
// all copies or substantial portions of the Software.
711
//
12+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
18+
// THE SOFTWARE.
819

920
import QuartzCore
1021

Sources/Layoutable+PinLayout.swift

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1+
// Copyright (c) 2017 Luc Dion
2+
// Permission is hereby granted, free of charge, to any person obtaining a copy
3+
// of this software and associated documentation files (the "Software"), to deal
4+
// in the Software without restriction, including without limitation the rights
5+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6+
// copies of the Software, and to permit persons to whom the Software is
7+
// furnished to do so, subject to the following conditions:
18
//
2-
// Layoutable+PinLayout.swift
3-
// PinLayout-iOS
4-
//
5-
// Created by Antoine Lamy on 2018-06-12.
6-
// Copyright © 2018 mcswiftlayyout.mirego.com. All rights reserved.
9+
// The above copyright notice and this permission notice shall be included in
10+
// all copies or substantial portions of the Software.
711
//
12+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
18+
// THE SOFTWARE.
819

920
import Foundation
1021

Sources/Layoutable.swift

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1+
// Copyright (c) 2017 Luc Dion
2+
// Permission is hereby granted, free of charge, to any person obtaining a copy
3+
// of this software and associated documentation files (the "Software"), to deal
4+
// in the Software without restriction, including without limitation the rights
5+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6+
// copies of the Software, and to permit persons to whom the Software is
7+
// furnished to do so, subject to the following conditions:
18
//
2-
// Layoutable.swift
3-
// PinLayout
4-
//
5-
// Created by Antoine Lamy on 2018-06-11.
6-
// Copyright © 2018 mcswiftlayyout.mirego.com. All rights reserved.
9+
// The above copyright notice and this permission notice shall be included in
10+
// all copies or substantial portions of the Software.
711
//
12+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
18+
// THE SOFTWARE.
819

920
#if os(iOS) || os(tvOS)
1021
import UIKit

Sources/SizeCalculable.swift

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1+
// Copyright (c) 2017 Luc Dion
2+
// Permission is hereby granted, free of charge, to any person obtaining a copy
3+
// of this software and associated documentation files (the "Software"), to deal
4+
// in the Software without restriction, including without limitation the rights
5+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6+
// copies of the Software, and to permit persons to whom the Software is
7+
// furnished to do so, subject to the following conditions:
18
//
2-
// Sizable.swift
3-
// PinLayout-iOS
4-
//
5-
// Created by Antoine Lamy on 2018-06-12.
6-
// Copyright © 2018 mcswiftlayyout.mirego.com. All rights reserved.
9+
// The above copyright notice and this permission notice shall be included in
10+
// all copies or substantial portions of the Software.
711
//
12+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
18+
// THE SOFTWARE.
819

920
#if os(iOS) || os(tvOS)
1021
import UIKit

TestProjects/carthage/ios/PinLayout-Carthage-iOS.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
attributes = {
126126
LastSwiftUpdateCheck = 0830;
127127
LastUpgradeCheck = 0830;
128-
ORGANIZATIONNAME = Mirego;
128+
ORGANIZATIONNAME = Layoutbox;
129129
TargetAttributes = {
130130
24C872FA1EE2D113007BFE47 = {
131131
CreatedOnToolsVersion = 8.3.2;
@@ -307,7 +307,7 @@
307307
);
308308
INFOPLIST_FILE = "PinLayout-Carthage-iOS/Info.plist";
309309
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
310-
PRODUCT_BUNDLE_IDENTIFIER = "com.mirego.project.PinLayout-Carthage-iOS";
310+
PRODUCT_BUNDLE_IDENTIFIER = "com.layoutbox.project.PinLayout-Carthage-iOS";
311311
PRODUCT_NAME = "$(TARGET_NAME)";
312312
SWIFT_OBJC_BRIDGING_HEADER = "PinLayout-Carthage-iOS/PinLayout-Carthage-iOS-Bridging-Header.h";
313313
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -327,7 +327,7 @@
327327
);
328328
INFOPLIST_FILE = "PinLayout-Carthage-iOS/Info.plist";
329329
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
330-
PRODUCT_BUNDLE_IDENTIFIER = "com.mirego.project.PinLayout-Carthage-iOS";
330+
PRODUCT_BUNDLE_IDENTIFIER = "com.layoutbox.project.PinLayout-Carthage-iOS";
331331
PRODUCT_NAME = "$(TARGET_NAME)";
332332
SWIFT_OBJC_BRIDGING_HEADER = "PinLayout-Carthage-iOS/PinLayout-Carthage-iOS-Bridging-Header.h";
333333
SWIFT_VERSION = 3.0;

TestProjects/carthage/ios/PinLayout-Carthage-iOS/AppDelegate.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
//
2-
// AppDelegate.swift
3-
// PinLayoutCarthageTest
4-
//
5-
// Created by DION, Luc (MTL) on 2017-06-03.
6-
// Copyright © 2017 Mirego. All rights reserved.
7-
//
81

92
import UIKit
103

TestProjects/carthage/ios/PinLayout-Carthage-iOS/TestObjectiveC.m

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
//
2-
// TestObjectiveC.m
3-
// PinLayoutPodTester
4-
//
5-
// Created by DION, Luc (MTL) on 2017-10-12.
6-
// Copyright © 2017 Mirego. All rights reserved.
7-
//
81

92
#import <Foundation/Foundation.h>
103

TestProjects/carthage/ios/PinLayout-Carthage-iOS/ViewController.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
//
2-
// ViewController.swift
3-
// PinLayoutCarthageTest
4-
//
5-
// Created by DION, Luc (MTL) on 2017-06-03.
6-
// Copyright © 2017 Mirego. All rights reserved.
7-
//
81

92
import UIKit
103
import PinLayout

TestProjects/cocoapods/ios/PinLayout-iOS.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
attributes = {
124124
LastSwiftUpdateCheck = 0830;
125125
LastUpgradeCheck = 0830;
126-
ORGANIZATIONNAME = Mirego;
126+
ORGANIZATIONNAME = LayoutBox;
127127
TargetAttributes = {
128128
24C872DC1EE2CE0B007BFE47 = {
129129
CreatedOnToolsVersion = 8.3.2;
@@ -339,7 +339,7 @@
339339
DEVELOPMENT_TEAM = "";
340340
INFOPLIST_FILE = "PinLayout-iOS/Info.plist";
341341
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
342-
PRODUCT_BUNDLE_IDENTIFIER = "com.mirego.project.PinLayout-iOS";
342+
PRODUCT_BUNDLE_IDENTIFIER = "com.layoutbox.project.PinLayout-iOS";
343343
PRODUCT_NAME = "$(TARGET_NAME)";
344344
SWIFT_OBJC_BRIDGING_HEADER = "PinLayout-iOS/PinLayout-iOS-Bridging-Header.h";
345345
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -356,7 +356,7 @@
356356
DEVELOPMENT_TEAM = "";
357357
INFOPLIST_FILE = "PinLayout-iOS/Info.plist";
358358
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
359-
PRODUCT_BUNDLE_IDENTIFIER = "com.mirego.project.PinLayout-iOS";
359+
PRODUCT_BUNDLE_IDENTIFIER = "com.layoutbox.project.PinLayout-iOS";
360360
PRODUCT_NAME = "$(TARGET_NAME)";
361361
SWIFT_OBJC_BRIDGING_HEADER = "PinLayout-iOS/PinLayout-iOS-Bridging-Header.h";
362362
SWIFT_VERSION = 4.0;

0 commit comments

Comments
 (0)