PPCGeeks

PPCGeeks (http://forum.ppcgeeks.com/index.php)
-   Windows Mobile Software (http://forum.ppcgeeks.com/forumdisplay.php?f=23)
-   -   iPhoneToday 0.3 (iPhone Clone Today) 5-1-09 (http://forum.ppcgeeks.com/showthread.php?t=67211)

santod 05-02-2009 12:29 AM

iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
3 Attachment(s)
http://forum.xda-developers.com/images/icons/icon1.gif [01/05/2009] iPhoneToday 0.3 (iPhone Clone Today)

iPhoneToday : Project By, MiToNiOeS at XDA

Original Thread here: http://forum.xda-developers.com/showthread.php?t=508429


It is a iPhone clone more, a mix of iFonz and iDiamond Project that, united to S2U2, will be a good alternative to the actual interfaces
Now is in development, but i think that i can release a good version in 2 weeks!

Features (When i finish...):
- Multiples screens (With animates transactions)
- Notification on icons for calls, sms, etc
- Is a Today (No problems when we push the home button, no problems with incoming calls, ...)
- Compatibility with others todays (By example: Date Today and iPhoneToday after), today height configurable
- QVGA, VGA, WVGA... (The user define the icon size and height screen)
- Icons configuration in xml (you can to do copy & paste to other device)
- Write on C++
- For now, only 62Kb + Icons in memory

Change log (01/05/2009):
- Paint icons a bit more fast
- Fixed problem with icon calendar in QVGA (Only test in emulator...)
- Fixed error when it load days translation
- Added option for set font size (By default is 7 and normal, add in settings.xml <fontSize>6</fontSize> and <fontBold>1</fontBold> for change it)
- Fix various...

Change log (29/04/2009):
- Better notifications on icons for missed calls, unread sms, etc
- Load transparents images (only test with png files)
- Load images with differents sizes
- Optimizations on paint
- Calendar icon with day of week and day of month
- Circles for indicate the active screen
- Diferent action on push icon if we have notifications
- Load settings from xml file
- Fix various...

Change log (26/04/2009):
- Notifications on icons for missed calls, unread sms, etc
- Optimizations on paint
- Changed algorithm "go to destine position", more fast
- Fix various...

To do: (Arranged in order of development)
- To clean of code (Now is a big ball of code xD)
- Accesible configuration (Actually we have that edit the xml manually)
- Digital clock icon???
- Notification for active alarm???
- Animations on launch icons (Stop for now...)???

Know issues:
- The first animation have strange movements
- Some times crash, i am investigating to find a solution
- On softreset not init correctly, go to Today settings -> disable iPhoneToday -> Close settings -> active iPhoneToday

Install:
1º Install *.cab (I recommend on internal memory)
2º Copy iPhoneToday folder to root of internal memory
3º Go to Settings/Today/Elements and disable the iPhoneToday element
4º Go to Settings/Today/Elements and active the iPhoneToday element

Configuration: http://forum.xda-developers.com/show...0&postcount=18

Evolution:

Part 1: Concept Proof
http://www.youtube.com/watch?v=TAgIeyZWMcU

Part 2: Good road...
http://www.youtube.com/watch?v=4Wi5w0IJmlo

Part 3: Completly funtional
http://www.youtube.com/watch?v=I_KBLXAy0fM

http://i546.photobucket.com/albums/h...010/iClone.jpg

savior02 05-02-2009 01:48 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
does this work on 6.5?

santod 05-02-2009 02:09 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
No, I don't believe it currently can support it, as the Today screen is handled differently.

Here is a sample of the .xml settings and a brief dscription of each below for those who want to configure their own shortcuts or change the settings to their own preference.


Icons Settings: (icons.xml)
Example:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<root>
<screen>
<icon name="Phone" image="phone.png" exec="program1.exe" parameters="" type="0" execAlt="program2.exe" parametersAlt=""/>
</screen>
<screen>
<icon name="SMS" image="sms.png" exec="\Windows\calendar.exe" parameters="tasks" type="5"/>
</screen>
</root>
name: The icon name or text
image: image file (the image will be in \iPhoneToday\icons folder)
exec: Main executable
parameters: Parameters for main executable
execAlt: Alternative executable, run when we have notifications
parametersAlt: Parameters for alternative executable
Type: Type of icon (0:Normal, 1: Missed Calls, 2: Unread SMS, 3: Unread MMS, 4: Unread Email, 5: Nexts Appointments, 6: Incompleted Tasks)

Options: (settings.xml)
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
Example for VGA:
<root>
<iconWidth>90</iconWidth>
<numIcons>4</numIcons>
<moveThreshold>15</moveThreshold>
<maxVelocitiy>240</maxVelocitiy>
<minVelocitiy>10</minVelocitiy>
<refreshTime>15</refreshTime>
<screenHeigth>460</screenHeigth>
<Sunday>Sun</Sunday>
<Monday>Mon</Monday>
<Tuesday>Tue</Tuesday>
<Wednesday>Wed</Wednesday>
<Thursday>Thu</Thursday>
<Friday>Fri</Friday>
<Saturday>Sat</Saturday>
</root>
iconWidth: Width of icons in pixels
numIcons: Num icons for row
moveThreshold: Mix movement in pixels for init movement
maxVelocitiy: Range of velocity for animations
minVelocitiy: Range of velocity for animations
refreshTime: Refresh time for repaint in millisecons
screenHeigth: Heigth of screen for combine with other todays, 0 for all heigth screen
Sunday: Texts for days of week (For translations)
Monday: Texts for days of week (For translations)
Tuesday: Texts for days of week (For translations)
Wednesday: Texts for days of week (For translations)
Thursday: Texts for days of week (For translations)
Friday: Texts for days of week (For translations)
Saturday: Texts for days of week (For translations)

Astrak 05-02-2009 02:17 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
Hmm can't get it to install correctly just locks up the phone.

santod 05-02-2009 02:23 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
Did you follow these steps, and disable TouchFlo3D first?



Install:
1º Install *.cab (I recommend on internal memory)
2º Copy iPhoneToday folder to root of internal memory
3º Go to Settings/Today/Elements and disable the iPhoneToday element
4º Go to Settings/Today/Elements and active the iPhoneToday element

freeza 05-02-2009 03:28 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
ehh that doesn't look too attractive.

Astrak 05-02-2009 11:53 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
Quote:

Originally Posted by santod (Post 890567)
Did you follow these steps, and disable TouchFlo3D first?



Install:
1º Install *.cab (I recommend on internal memory)
2º Copy iPhoneToday folder to root of internal memory
3º Go to Settings/Today/Elements and disable the iPhoneToday element
4º Go to Settings/Today/Elements and active the iPhoneToday element

I think I did, just to make it clear internal memory is not the 4gb storage right. Installing to the root of the internal memory would be the "my device" in file explorer correct? I need to put the extracted Iphone tools and icons in the installed Iphone folder correct? I can see the three circles but they are to the far left of the screen with a scroll bar on the far right but I have no interaction with the screen, it's just frozen.

x10guy 08-24-2009 03:21 AM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
iphonetoday has been updated recently. The new version is 1.2 (maybe the OP can update the title)

The new version is really slick. You can actually run it as an executable so you can set it up to work side-by-side with Manilla or SPB3.

One of the coolest add-ons that I've put on my phone.

jmorton10 08-24-2009 12:30 PM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
Yea, the new version is awesome.

I can get this screen instantly from one click in my start menu while running TF3D2 Rhodium (energy ROM)

http://i361.photobucket.com/albums/o...Screen02-8.png

~John

sprintnerd 08-24-2009 12:45 PM

Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
 
Quote:

Originally Posted by jmorton10 (Post 1119198)
Yea, the new version is awesome.

I can get this screen instantly from one click in my start menu while running TF3D2 Rhodium (energy ROM)

http://i361.photobucket.com/albums/o...Screen02-8.png

~John

Dude you rock


All times are GMT -4. The time now is 01:38 PM.

Powered by vBulletin® ©2000 - 2025, Jelsoft Enterprises Ltd.
©2012 - PPCGeeks.com


Content Relevant URLs by vBSEO 3.6.0