Skip to content

Commit 01a7122

Browse files
committed
Initial Commit
0 parents  commit 01a7122

File tree

13 files changed

+1513
-0
lines changed

13 files changed

+1513
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
url.swift
2+
.DS_Store
3+
xcuserdata
4+
DevBar.xcodeproj/xcuserdata

DevBar.xcodeproj/project.pbxproj

+337
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,337 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 50;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
5B6A21D52177559900B777AE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B6A21D42177559900B777AE /* AppDelegate.swift */; };
11+
5B6A21D72177559A00B777AE /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5B6A21D62177559A00B777AE /* Assets.xcassets */; };
12+
5B6A21DA2177559A00B777AE /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5B6A21D82177559A00B777AE /* MainMenu.xib */; };
13+
/* End PBXBuildFile section */
14+
15+
/* Begin PBXFileReference section */
16+
5B6A21D12177559900B777AE /* DevBar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DevBar.app; sourceTree = BUILT_PRODUCTS_DIR; };
17+
5B6A21D42177559900B777AE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
18+
5B6A21D62177559A00B777AE /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
19+
5B6A21D92177559A00B777AE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
20+
5B6A21DB2177559A00B777AE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
21+
5B6A21DC2177559A00B777AE /* DevBar.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DevBar.entitlements; sourceTree = "<group>"; };
22+
/* End PBXFileReference section */
23+
24+
/* Begin PBXFrameworksBuildPhase section */
25+
5B6A21CE2177559900B777AE /* Frameworks */ = {
26+
isa = PBXFrameworksBuildPhase;
27+
buildActionMask = 2147483647;
28+
files = (
29+
);
30+
runOnlyForDeploymentPostprocessing = 0;
31+
};
32+
/* End PBXFrameworksBuildPhase section */
33+
34+
/* Begin PBXGroup section */
35+
5B6A21C82177559900B777AE = {
36+
isa = PBXGroup;
37+
children = (
38+
5B6A21D32177559900B777AE /* DevBar */,
39+
5B6A21D22177559900B777AE /* Products */,
40+
);
41+
sourceTree = "<group>";
42+
};
43+
5B6A21D22177559900B777AE /* Products */ = {
44+
isa = PBXGroup;
45+
children = (
46+
5B6A21D12177559900B777AE /* DevBar.app */,
47+
);
48+
name = Products;
49+
sourceTree = "<group>";
50+
};
51+
5B6A21D32177559900B777AE /* DevBar */ = {
52+
isa = PBXGroup;
53+
children = (
54+
5B6A21D42177559900B777AE /* AppDelegate.swift */,
55+
5B6A21D62177559A00B777AE /* Assets.xcassets */,
56+
5B6A21D82177559A00B777AE /* MainMenu.xib */,
57+
5B6A21DB2177559A00B777AE /* Info.plist */,
58+
5B6A21DC2177559A00B777AE /* DevBar.entitlements */,
59+
);
60+
path = DevBar;
61+
sourceTree = "<group>";
62+
};
63+
/* End PBXGroup section */
64+
65+
/* Begin PBXNativeTarget section */
66+
5B6A21D02177559900B777AE /* DevBar */ = {
67+
isa = PBXNativeTarget;
68+
buildConfigurationList = 5B6A21DF2177559A00B777AE /* Build configuration list for PBXNativeTarget "DevBar" */;
69+
buildPhases = (
70+
5B6A21CD2177559900B777AE /* Sources */,
71+
5B6A21CE2177559900B777AE /* Frameworks */,
72+
5B6A21CF2177559900B777AE /* Resources */,
73+
);
74+
buildRules = (
75+
);
76+
dependencies = (
77+
);
78+
name = DevBar;
79+
productName = DevBar;
80+
productReference = 5B6A21D12177559900B777AE /* DevBar.app */;
81+
productType = "com.apple.product-type.application";
82+
};
83+
/* End PBXNativeTarget section */
84+
85+
/* Begin PBXProject section */
86+
5B6A21C92177559900B777AE /* Project object */ = {
87+
isa = PBXProject;
88+
attributes = {
89+
LastSwiftUpdateCheck = 1000;
90+
LastUpgradeCheck = 1000;
91+
ORGANIZATIONNAME = "Anders Hovmöller";
92+
TargetAttributes = {
93+
5B6A21D02177559900B777AE = {
94+
CreatedOnToolsVersion = 10.0;
95+
SystemCapabilities = {
96+
com.apple.HardenedRuntime = {
97+
enabled = 1;
98+
};
99+
};
100+
};
101+
};
102+
};
103+
buildConfigurationList = 5B6A21CC2177559900B777AE /* Build configuration list for PBXProject "DevBar" */;
104+
compatibilityVersion = "Xcode 9.3";
105+
developmentRegion = en;
106+
hasScannedForEncodings = 0;
107+
knownRegions = (
108+
en,
109+
Base,
110+
);
111+
mainGroup = 5B6A21C82177559900B777AE;
112+
productRefGroup = 5B6A21D22177559900B777AE /* Products */;
113+
projectDirPath = "";
114+
projectRoot = "";
115+
targets = (
116+
5B6A21D02177559900B777AE /* DevBar */,
117+
);
118+
};
119+
/* End PBXProject section */
120+
121+
/* Begin PBXResourcesBuildPhase section */
122+
5B6A21CF2177559900B777AE /* Resources */ = {
123+
isa = PBXResourcesBuildPhase;
124+
buildActionMask = 2147483647;
125+
files = (
126+
5B6A21D72177559A00B777AE /* Assets.xcassets in Resources */,
127+
5B6A21DA2177559A00B777AE /* MainMenu.xib in Resources */,
128+
);
129+
runOnlyForDeploymentPostprocessing = 0;
130+
};
131+
/* End PBXResourcesBuildPhase section */
132+
133+
/* Begin PBXSourcesBuildPhase section */
134+
5B6A21CD2177559900B777AE /* Sources */ = {
135+
isa = PBXSourcesBuildPhase;
136+
buildActionMask = 2147483647;
137+
files = (
138+
5B6A21D52177559900B777AE /* AppDelegate.swift in Sources */,
139+
);
140+
runOnlyForDeploymentPostprocessing = 0;
141+
};
142+
/* End PBXSourcesBuildPhase section */
143+
144+
/* Begin PBXVariantGroup section */
145+
5B6A21D82177559A00B777AE /* MainMenu.xib */ = {
146+
isa = PBXVariantGroup;
147+
children = (
148+
5B6A21D92177559A00B777AE /* Base */,
149+
);
150+
name = MainMenu.xib;
151+
sourceTree = "<group>";
152+
};
153+
/* End PBXVariantGroup section */
154+
155+
/* Begin XCBuildConfiguration section */
156+
5B6A21DD2177559A00B777AE /* Debug */ = {
157+
isa = XCBuildConfiguration;
158+
buildSettings = {
159+
ALWAYS_SEARCH_USER_PATHS = NO;
160+
CLANG_ANALYZER_NONNULL = YES;
161+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
162+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
163+
CLANG_CXX_LIBRARY = "libc++";
164+
CLANG_ENABLE_MODULES = YES;
165+
CLANG_ENABLE_OBJC_ARC = YES;
166+
CLANG_ENABLE_OBJC_WEAK = YES;
167+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
168+
CLANG_WARN_BOOL_CONVERSION = YES;
169+
CLANG_WARN_COMMA = YES;
170+
CLANG_WARN_CONSTANT_CONVERSION = YES;
171+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
172+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
173+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
174+
CLANG_WARN_EMPTY_BODY = YES;
175+
CLANG_WARN_ENUM_CONVERSION = YES;
176+
CLANG_WARN_INFINITE_RECURSION = YES;
177+
CLANG_WARN_INT_CONVERSION = YES;
178+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
179+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
180+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
181+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
182+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
183+
CLANG_WARN_STRICT_PROTOTYPES = YES;
184+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
185+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
186+
CLANG_WARN_UNREACHABLE_CODE = YES;
187+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
188+
CODE_SIGN_IDENTITY = "-";
189+
COPY_PHASE_STRIP = NO;
190+
DEBUG_INFORMATION_FORMAT = dwarf;
191+
ENABLE_STRICT_OBJC_MSGSEND = YES;
192+
ENABLE_TESTABILITY = YES;
193+
GCC_C_LANGUAGE_STANDARD = gnu11;
194+
GCC_DYNAMIC_NO_PIC = NO;
195+
GCC_NO_COMMON_BLOCKS = YES;
196+
GCC_OPTIMIZATION_LEVEL = 0;
197+
GCC_PREPROCESSOR_DEFINITIONS = (
198+
"DEBUG=1",
199+
"$(inherited)",
200+
);
201+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
202+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
203+
GCC_WARN_UNDECLARED_SELECTOR = YES;
204+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
205+
GCC_WARN_UNUSED_FUNCTION = YES;
206+
GCC_WARN_UNUSED_VARIABLE = YES;
207+
MACOSX_DEPLOYMENT_TARGET = 10.14;
208+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
209+
MTL_FAST_MATH = YES;
210+
ONLY_ACTIVE_ARCH = YES;
211+
SDKROOT = macosx;
212+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
213+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
214+
};
215+
name = Debug;
216+
};
217+
5B6A21DE2177559A00B777AE /* Release */ = {
218+
isa = XCBuildConfiguration;
219+
buildSettings = {
220+
ALWAYS_SEARCH_USER_PATHS = NO;
221+
CLANG_ANALYZER_NONNULL = YES;
222+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
223+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
224+
CLANG_CXX_LIBRARY = "libc++";
225+
CLANG_ENABLE_MODULES = YES;
226+
CLANG_ENABLE_OBJC_ARC = YES;
227+
CLANG_ENABLE_OBJC_WEAK = YES;
228+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
229+
CLANG_WARN_BOOL_CONVERSION = YES;
230+
CLANG_WARN_COMMA = YES;
231+
CLANG_WARN_CONSTANT_CONVERSION = YES;
232+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
233+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
234+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
235+
CLANG_WARN_EMPTY_BODY = YES;
236+
CLANG_WARN_ENUM_CONVERSION = YES;
237+
CLANG_WARN_INFINITE_RECURSION = YES;
238+
CLANG_WARN_INT_CONVERSION = YES;
239+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
240+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
241+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
242+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
243+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
244+
CLANG_WARN_STRICT_PROTOTYPES = YES;
245+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
246+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
247+
CLANG_WARN_UNREACHABLE_CODE = YES;
248+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
249+
CODE_SIGN_IDENTITY = "-";
250+
COPY_PHASE_STRIP = NO;
251+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
252+
ENABLE_NS_ASSERTIONS = NO;
253+
ENABLE_STRICT_OBJC_MSGSEND = YES;
254+
GCC_C_LANGUAGE_STANDARD = gnu11;
255+
GCC_NO_COMMON_BLOCKS = YES;
256+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
257+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
258+
GCC_WARN_UNDECLARED_SELECTOR = YES;
259+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
260+
GCC_WARN_UNUSED_FUNCTION = YES;
261+
GCC_WARN_UNUSED_VARIABLE = YES;
262+
MACOSX_DEPLOYMENT_TARGET = 10.14;
263+
MTL_ENABLE_DEBUG_INFO = NO;
264+
MTL_FAST_MATH = YES;
265+
SDKROOT = macosx;
266+
SWIFT_COMPILATION_MODE = wholemodule;
267+
SWIFT_OPTIMIZATION_LEVEL = "-O";
268+
};
269+
name = Release;
270+
};
271+
5B6A21E02177559A00B777AE /* Debug */ = {
272+
isa = XCBuildConfiguration;
273+
buildSettings = {
274+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
275+
CODE_SIGN_IDENTITY = "Mac Developer";
276+
CODE_SIGN_STYLE = Automatic;
277+
COMBINE_HIDPI_IMAGES = YES;
278+
DEVELOPMENT_TEAM = B6FVY827P9;
279+
ENABLE_HARDENED_RUNTIME = YES;
280+
INFOPLIST_FILE = DevBar/Info.plist;
281+
LD_RUNPATH_SEARCH_PATHS = (
282+
"$(inherited)",
283+
"@executable_path/../Frameworks",
284+
);
285+
MACOSX_DEPLOYMENT_TARGET = 10.12;
286+
PRODUCT_BUNDLE_IDENTIFIER = net.kodare.DevBar;
287+
PRODUCT_NAME = "$(TARGET_NAME)";
288+
SWIFT_VERSION = 4.2;
289+
};
290+
name = Debug;
291+
};
292+
5B6A21E12177559A00B777AE /* Release */ = {
293+
isa = XCBuildConfiguration;
294+
buildSettings = {
295+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
296+
CODE_SIGN_IDENTITY = "Mac Developer";
297+
CODE_SIGN_STYLE = Automatic;
298+
COMBINE_HIDPI_IMAGES = YES;
299+
DEVELOPMENT_TEAM = B6FVY827P9;
300+
ENABLE_HARDENED_RUNTIME = YES;
301+
INFOPLIST_FILE = DevBar/Info.plist;
302+
LD_RUNPATH_SEARCH_PATHS = (
303+
"$(inherited)",
304+
"@executable_path/../Frameworks",
305+
);
306+
MACOSX_DEPLOYMENT_TARGET = 10.12;
307+
PRODUCT_BUNDLE_IDENTIFIER = net.kodare.DevBar;
308+
PRODUCT_NAME = "$(TARGET_NAME)";
309+
SWIFT_VERSION = 4.2;
310+
};
311+
name = Release;
312+
};
313+
/* End XCBuildConfiguration section */
314+
315+
/* Begin XCConfigurationList section */
316+
5B6A21CC2177559900B777AE /* Build configuration list for PBXProject "DevBar" */ = {
317+
isa = XCConfigurationList;
318+
buildConfigurations = (
319+
5B6A21DD2177559A00B777AE /* Debug */,
320+
5B6A21DE2177559A00B777AE /* Release */,
321+
);
322+
defaultConfigurationIsVisible = 0;
323+
defaultConfigurationName = Release;
324+
};
325+
5B6A21DF2177559A00B777AE /* Build configuration list for PBXNativeTarget "DevBar" */ = {
326+
isa = XCConfigurationList;
327+
buildConfigurations = (
328+
5B6A21E02177559A00B777AE /* Debug */,
329+
5B6A21E12177559A00B777AE /* Release */,
330+
);
331+
defaultConfigurationIsVisible = 0;
332+
defaultConfigurationName = Release;
333+
};
334+
/* End XCConfigurationList section */
335+
};
336+
rootObject = 5B6A21C92177559900B777AE /* Project object */;
337+
}

DevBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)