Skip to content

Fix to Issue #12 #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions LICENSE

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014, Lucas Mendes Menge

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.
Empty file modified LaunchServicesApis/LMApp.h
100644 → 100755
Empty file.
155 changes: 152 additions & 3 deletions LaunchServicesApis/LMApp.m
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,168 @@ @implementation LMApp

- (NSString*)name
{
return _applicationProxy.localizedName ?: _applicationProxy.localizedShortName;
return _applicationProxy.localizedName ?: _applicationProxy.localizedShortName;
}

- (NSString*)bundleIdentifier
{
return [_applicationProxy bundleIdentifier];
return [_applicationProxy bundleIdentifier];
}

- (UIImage*)icon
{
if(nil == _icon)
{
_icon = [UIImage _applicationIconImageForBundleIdentifier:self.bundleIdentifier format:10 scale:2.0];
_icon = [UIImage _applicationIconImageForBundleIdentifier:self.bundleIdentifier format:10 scale:2.0];

if([self.bundleIdentifier isEqual: @"com.apple.Preferences"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.MobileStore"])

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
else if([self.bundleIdentifier isEqual: @"com.apple.MobileStore"])
Debug else if([self.bundleIdentifier isEqual: @"com.apple.MobileStore"])

{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobilesafari"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.podcasts"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.stocks"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.compass"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.weather"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.gamecenter"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.reminders"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.MobileAddressBook"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.Passbook"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.VoiceMemos"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.facetime"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.calculator"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.iCloudDriveApp"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobileme.fmip1"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobileme.fmf1"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.Maps"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobilesslideshow"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobilenotes"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobilecal"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.iBooks"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.MobileStore"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.videos"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.appleseed.FeedbackAssistant"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobilephone"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobiletimer"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.MobileSMS"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.AppStore"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.camera"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.Music"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.Health"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.tips"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.mobilemail"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.Bridge"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.Fitness"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
else if([self.bundleIdentifier isEqual: @"com.apple.News"])
{
_icon = [UIImage imageNamed:@"[email protected]"];
}
}

return _icon;
Expand Down
Empty file modified LaunchServicesApis/LMAppController.h
100644 → 100755
Empty file.
Empty file modified LaunchServicesApis/LMAppController.m
100644 → 100755
Empty file.
5 changes: 0 additions & 5 deletions README.TXT

This file was deleted.

29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
WatchBoard-Prototype
====================

A GUI interface for iOS devices that looks and feels like WatchOS.

History
-------

On October 22nd, @MichaelSteeber wrote an [article] for @9to5mac in which he theorized an Apple Watch-like home screen for the iPhone. I thought the designs shown looked pretty, and the GIF he posted showing interaction with the real Apple Watch home screen made me notice a lot of tiny little details on it, so I decided to give a try at programming it over the past couple of days in my free time. This is the result. I hope you guys like it!

Example
-------

For a video of this in action, go [here].

Version
-------

Unkown.
Guess: 1.7

License
-------

[Lucas Mendes Menge]

[article]:http://9to5mac.com/2014/10/22/apple-watch-home-screen-design-iphone/
[here]:https://www.youtube.com/watch?v=UggYGThmFEo&list=UU7C761Fn9aih_W6kMvkm24w
[Lucas Mendes Menge]:https://github.com/odonckers/WatchBoard-Prototype/blob/master/LICENSE.md
Loading