Skip to content

Commit 9d94a5e

Browse files
authored
Update some stuff (#2)
1 parent 28484ed commit 9d94a5e

File tree

6 files changed

+83
-1
lines changed

6 files changed

+83
-1
lines changed

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Swift.gitignore @ https://github.com/github/gitignore
2+
3+
# Xcode
4+
build/
5+
*.pbxuser
6+
!default.pbxuser
7+
*.mode1v3
8+
!default.mode1v3
9+
*.mode2v3
10+
!default.mode2v3
11+
*.perspectivev3
12+
!default.perspectivev3
13+
xcuserdata
14+
*.xccheckout
15+
*.moved-aside
16+
DerivedData
17+
*.hmap
18+
*.ipa
19+
*.xcuserstate
20+
21+
# Numerous always-ignore extensions
22+
*.diff
23+
*.err
24+
*.orig
25+
*.log
26+
*.rej
27+
*.swo
28+
*.swp
29+
*.zip
30+
*.vi
31+
*~
32+
33+
# OS or Editor folders
34+
.DS_Store
35+
._*
36+
Thumbs.db
37+
.cache
38+
.tmproj
39+
*.esproj
40+
nbproject
41+
*.sublime-project
42+
*.sublime-workspace
43+
/bin

DarwinScripts.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@
4343
/* Begin PBXFileReference section */
4444
9F0380D8295E8266006FE803 /* SystemKitReborn.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemKitReborn.framework; path = "../Derived Data/SystemKitReborn-ayhgjywbqftyriecabdmvlzkrrso/Build/Products/Release/SystemKitReborn.framework"; sourceTree = "<group>"; };
4545
9F0380E2295E847E006FE803 /* SystemKitReborn.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SystemKitReborn.framework; sourceTree = "<group>"; };
46+
9F0380F0295E88EC006FE803 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
47+
9F0380F1295F995D006FE803 /* LICENSE */ = {isa = PBXFileReference; explicitFileType = text; name = LICENSE; path = /Volumes/5TB/Programming/Xcode/DarwinScripts/LICENSE; sourceTree = "<absolute>"; };
48+
9F0380F2295F9D05006FE803 /* README.md */ = {isa = PBXFileReference; explicitFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
4649
9FFBBC1C295D3858009B8FBE /* DarwinScripts */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DarwinScripts; sourceTree = BUILT_PRODUCTS_DIR; };
4750
9FFBBC3C295D3961009B8FBE /* kernel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = kernel.swift; sourceTree = "<group>"; };
4851
9FFBBC3D295D3961009B8FBE /* mem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = mem.swift; sourceTree = "<group>"; };
@@ -75,6 +78,9 @@
7578
9FFBBC13295D3858009B8FBE = {
7679
isa = PBXGroup;
7780
children = (
81+
9F0380F2295F9D05006FE803 /* README.md */,
82+
9F0380F1295F995D006FE803 /* LICENSE */,
83+
9F0380F0295E88EC006FE803 /* .gitignore */,
7884
9F0380E2295E847E006FE803 /* SystemKitReborn.framework */,
7985
9FFBBC3B295D3961009B8FBE /* DarwinScripts */,
8086
9FFBBC1D295D3858009B8FBE /* Products */,

DarwinScripts.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2022, BatemaDevelopment
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the copyright holder nor the names of its
16+
contributors may be used to endorse or promote products derived from
17+
this software without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# DarwinScripts
1+
# DarwinScripts
2+
3+
README is currently a work in progress, please checl back later!

0 commit comments

Comments
 (0)