Skip to content

Commit cb3f9d0

Browse files
The first version
0 parents  commit cb3f9d0

31 files changed

+1351
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
iloveusomuch/originalAssets/*.png
2+
iloveusomuch/originalAssets/*.m4v
3+
xcuserdata
4+
.DS_Store
5+
build

build.sh

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/bin/sh
2+
3+
# Main build command
4+
xcodebuild clean build \
5+
-configuration Release \
6+
CONFIGURATION_BUILD_DIR=./build \
7+
CODE_SIGN_IDENTITY="" \
8+
CODE_SIGNING_REQUIRED=NO
9+
10+
if ! [ $? = 0 ]; then
11+
echo "Failed to compile the app. Are you sure you've injected the original files first?"
12+
exit 1
13+
fi;
14+
15+
# Compress the app into .ipa file if the "ipa" argument is passed
16+
if [ "$1" == "ipa" ]; then
17+
cd ./build
18+
if [ -f "./iloveusomuch.ipa" ]; then
19+
rm ./iloveusomuch.ipa
20+
fi
21+
mkdir -p ./Payload/iloveusomuch.app
22+
mv ./iloveusomuch.app/* ./Payload/iloveusomuch.app
23+
rm -R ./iloveusomuch.app
24+
zip -r iloveusomuch ./Payload
25+
mv ./iloveusomuch.zip ./iloveusomuch.ipa
26+
rm -R ./Payload
27+
echo "\nIPA successfully created"
28+
fi

graphics/font.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Kumbh Sans
2+
by Saurabh Sharma
3+
Open Font License
4+
https://fonts.google.com/specimen/Kumbh+Sans

graphics/graphics.eps

2.72 MB
Binary file not shown.

iloveusomuch.xcodeproj/project.pbxproj

Lines changed: 406 additions & 0 deletions
Large diffs are not rendered by default.

iloveusomuch.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
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>

iloveusomuch/AppDelegate.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#import <UIKit/UIKit.h>
2+
#import "ViewController.h"
3+
4+
@interface AppDelegate : UIResponder <UIApplicationDelegate>
5+
{
6+
UIWindow *window;
7+
ViewController *viewController;
8+
}
9+
@property(retain, nonatomic) ViewController *viewController;
10+
@property(retain, nonatomic) UIWindow *window;
11+
12+
@end
13+

iloveusomuch/AppDelegate.m

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#import "AppDelegate.h"
2+
3+
@implementation AppDelegate
4+
5+
@synthesize viewController;
6+
@synthesize window;
7+
8+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
9+
[self.window addSubview: [self.viewController view]];
10+
[self.window makeKeyAndVisible];
11+
return YES;
12+
}
13+
14+
@end
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"colors" : [
3+
{
4+
"color" : {
5+
"color-space" : "srgb",
6+
"components" : {
7+
"alpha" : "1.000",
8+
"blue" : "0x00",
9+
"green" : "0x01",
10+
"red" : "0xF4"
11+
}
12+
},
13+
"idiom" : "universal"
14+
},
15+
{
16+
"appearances" : [
17+
{
18+
"appearance" : "luminosity",
19+
"value" : "dark"
20+
}
21+
],
22+
"color" : {
23+
"color-space" : "srgb",
24+
"components" : {
25+
"alpha" : "1.000",
26+
"blue" : "0x00",
27+
"green" : "0x01",
28+
"red" : "0xF4"
29+
}
30+
},
31+
"idiom" : "universal"
32+
}
33+
],
34+
"info" : {
35+
"author" : "xcode",
36+
"version" : 1
37+
}
38+
}

0 commit comments

Comments
 (0)