-
Notifications
You must be signed in to change notification settings - Fork 17
Customize
The minimun Mac OS X version is 10.5 aka Leopard.
This part is really easy if you just want to use the app in the way it is, meaning for the moment buggy and not that modifiable, you can download the lastest version of the app from here, unarchive it and copy the app in the /Application folder.
But if you want to use the app and to have the weather, tracking, VIP email you have to download the source code and open it with Xcode.
After you open the project with Xcode go into Classes and the click on TextController.m there you can modify the code for your liking.
-
Weather
For the moment this is not working AccuWeather deleted the API`s, so i need to find a new service or way to get the weather, please bear with me until i solve this. -
VIP names and E-mail addresses
This is the part of the code that you need to change for the names, instead of GMail, Yahoo1, etc. you can put the name that you choose,
NSArray * vipNames = [NSArray arrayWithObjects: @"GMail", @"Yahoo1", @"Yahoo", @"Me", nil];
Now to add the email address corresponding to the name that you just added, you need to modify
NSArray * vipAddresses = [NSArray arrayWithObjects: \
[NSArray arrayWithObjects: @"test@gmail.com", nil],\
[NSArray arrayWithObjects: @"test@yahoo.com", nil],\
[NSArray arrayWithObjects: @"test@yahoo.com", nil],\
[NSArray arrayWithObjects: @"test@me.com", nil]\
, nil];
You have to modify the exact same email address for the modified name. If you want to have more than 4 VIP's first you need to add the new vipName like thisNSArray * vipNames = [NSArray arrayWithObjects: @"GMail", @"Yahoo1", @"Yahoo", @"Me", @"New email", nil];and then add a new line[NSArray arrayWithObjects: @"new@email.com", nil]\between the last email and, nil];
More to come.