Skip to content

Commit

Permalink
fix: Add the Symbolic license to the about screen (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley authored Nov 4, 2022
1 parent d8d06e4 commit 0f44eeb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Symbolic.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
D821B9EA28ACDBF700504AA4 /* String.swift in Sources */ = {isa = PBXBuildFile; fileRef = D821B9E928ACDBF700504AA4 /* String.swift */; };
D821B9EC28ACDC2600504AA4 /* IconCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = D821B9EB28ACDC2600504AA4 /* IconCorners.swift */; };
D821B9EE28ACDC6F00504AA4 /* SymbolPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = D821B9ED28ACDC6F00504AA4 /* SymbolPicker.swift */; };
D82B249B2915D8540093B073 /* symbolic-license in Resources */ = {isa = PBXBuildFile; fileRef = D82B249A2915D8540093B073 /* symbolic-license */; };
D83970E228B0B45300282EE8 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83970E128B0B45300282EE8 /* Color.swift */; };
D83970E528B11F5200282EE8 /* SymbolicError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83970E428B11F5200282EE8 /* SymbolicError.swift */; };
D83970E728B132C700282EE8 /* UnityScaleWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83970E628B132C700282EE8 /* UnityScaleWindow.swift */; };
Expand Down Expand Up @@ -59,6 +60,7 @@
D821B9E928ACDBF700504AA4 /* String.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = String.swift; sourceTree = "<group>"; };
D821B9EB28ACDC2600504AA4 /* IconCorners.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconCorners.swift; sourceTree = "<group>"; };
D821B9ED28ACDC6F00504AA4 /* SymbolPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SymbolPicker.swift; sourceTree = "<group>"; };
D82B249A2915D8540093B073 /* symbolic-license */ = {isa = PBXFileReference; lastKnownFileType = text; path = "symbolic-license"; sourceTree = "<group>"; };
D83970E128B0B45300282EE8 /* Color.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Color.swift; sourceTree = "<group>"; };
D83970E328B0B61700282EE8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
D83970E428B11F5200282EE8 /* SymbolicError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SymbolicError.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -152,6 +154,13 @@
path = Utilities;
sourceTree = "<group>";
};
D82B24992915D8330093B073 /* New Group */ = {
isa = PBXGroup;
children = (
);
path = "New Group";
sourceTree = "<group>";
};
D8CD4A7128AC35C300D57F34 = {
isa = PBXGroup;
children = (
Expand All @@ -177,6 +186,7 @@
D8CD4A7C28AC35C300D57F34 /* Symbolic */ = {
isa = PBXGroup;
children = (
D82B24992915D8330093B073 /* New Group */,
D8CD4A8628AC35C600D57F34 /* Symbolic.entitlements */,
D83970E328B0B61700282EE8 /* Info.plist */,
D8CD4A7D28AC35C300D57F34 /* SymbolicApp.swift */,
Expand Down Expand Up @@ -247,6 +257,7 @@
isa = PBXGroup;
children = (
D8F99EC228B13955007C3868 /* diligence-license */,
D82B249A2915D8540093B073 /* symbolic-license */,
);
path = Licenses;
sourceTree = "<group>";
Expand Down Expand Up @@ -367,6 +378,7 @@
files = (
D8CD4A8528AC35C600D57F34 /* Preview Assets.xcassets in Resources */,
D8F99EC328B13955007C3868 /* diligence-license in Resources */,
D82B249B2915D8540093B073 /* symbolic-license in Resources */,
D8CD4A8228AC35C600D57F34 /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
9 changes: 9 additions & 0 deletions Symbolic/Licenses/symbolic-license
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) 2022 Jason Morley

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions Symbolic/SymbolicApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ struct SymbolicApp: App {
}
} licenses: {
License("Diligence", author: "InSeven Limited", filename: "diligence-license")
License("Symbolic", author: "InSeven Limited", filename: "symbolic-license")
}

}
Expand Down

0 comments on commit 0f44eeb

Please sign in to comment.