The ModMyTM Family of Sites:
ModMyMotoModMyiModMyGphone




 
 
Register or Connect with Facebook

Discuss AppStore Apps | Browse / Search Cydia | MMi Cydia Stats




  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > Design and Media For the iPhone / iPod Touch > New Skins / Themes Launches
Reply
 
LinkBack Thread Tools Display Modes
  #766  
Old 04-21-2009, 11:43 AM
What's Jailbreak?
 
Join Date: Apr 2009
Posts: 9
Thanks: 3
Thanked 1 Time in 1 Post

*cough*

Something worked out for the 24h-Mode of the Clock on the Homescreen?

When it's like 19:00 it will show 7:00. Germans don't use am and pm, they have 24hours.

Thanks!
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #767  
Old 04-21-2009, 12:41 PM
Green Apple
 
Join Date: Jan 2009
Posts: 34
Thanks: 20
Thanked 9 Times in 8 Posts

Quote:
Originally Posted by Guillane View Post
*cough*

Something worked out for the 24h-Mode of the Clock on the Homescreen?

When it's like 19:00 it will show 7:00. Germans don't use am and pm, they have 24hours.

Thanks!
Change the lines in wallpaper.html to:

function updateClock ( )
{
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );
// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
// Choose either "AM" or "PM" as appropriate
var timeOfDay = ( currentHours < 24 ) ? "AM" : "PM";
// Convert the hours component to 24-hour format if needed
currentHours = ( currentHours > 24 ) ? currentHours - 24 : currentHours;
// Convert an hours component of "0" to "24"
currentHours = ( currentHours == 24 ) ? 0 : currentHours;
// Compose the string for display
var currentTimeString = currentHours + ":" + currentMinutes;
// Update the time display
document.getElementById("clock").firstChild.nodeVa lue = CurrentTimeString;
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to TheIndo For This Useful Post:
barsoverbeats (04-21-2009)
  #768  
Old 04-21-2009, 01:02 PM
What's Jailbreak?
 
Join Date: Apr 2009
Posts: 9
Thanks: 3
Thanked 1 Time in 1 Post

I have some problems..
Well, first i added the "}" at the end, deleted the space between Va and lue in the last line of code.
And i changed the comments from ("0" to "24") to ("24" to "0").
I deleted the AM/PM thing, because i won't need it.
It's not working.

I have the "calendar" working (Tuesday, April 21). But the clock is missing.

Anyone?


function updateClock ( )
{
var currentTime = new Date ( );

var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );

// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;

// Convert the hours component to 24-hour format if needed
currentHours = ( currentHours > 24 ) ? currentHours - 24 : currentHours;

// Convert an hours component of "24" to "0"
currentHours = ( currentHours == 24 ) ? 0 : currentHours;

// Compose the string for display
var currentTimeString = currentHours + ":" + currentMinutes;

// Update the time display
document.getElementById("clock").firstChild.nodeVa lue = CurrentTimeString;
}

Last edited by Guillane; 04-21-2009 at 01:15 PM.. Reason: Automerged Doublepost
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #769  
Old 04-21-2009, 02:50 PM
What's Jailbreak?
 
Join Date: Apr 2009
Posts: 1
Thanks: 1
Thanked 1 Time in 1 Post

I like this Theme very much
I´m a German, so here is the German Wallpaper with:

1.) Montag, Dienstag...etc.
2.) Januar, Februar...etc.
3.) 24 Hours

I hope I have the permission, otherwise i will delete the download

Send big files the easy way. Files too large for email attachments? No problem!

Greetz
Ricola

Edit:
Little Update to the Wallpaper, now it shows correctly for example: " Dienstag, 21. April "

http://www.sendspace.com/file/gimn86

Last edited by Ricola81; 04-21-2009 at 03:33 PM..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to Ricola81 For This Useful Post:
barsoverbeats (04-21-2009)
  #770  
Old 04-21-2009, 03:04 PM
hhm hhm is offline
What's Jailbreak?
 
Join Date: Jan 2009
Device + Firmware: Iphone 3G / v2.2
Operating System: Vista
Posts: 22
Thanks: 7
Thanked 6 Times in 5 Posts

Quote:
Originally Posted by Guillane View Post
I have some problems..
Well, first i added the "}" at the end, deleted the space between Va and lue in the last line of code.
And i changed the comments from ("0" to "24") to ("24" to "0").
I deleted the AM/PM thing, because i won't need it.
It's not working.

I have the "calendar" working (Tuesday, April 21). But the clock is missing.

Anyone?
You just have to comment the line in red with //
result will be like this :

Code:
function updateClock ( )
{
  var currentTime = new Date ( );

  var currentHours = currentTime.getHours ( );
  var currentMinutes = currentTime.getMinutes ( );
  var currentSeconds = currentTime.getSeconds ( );

  // Pad the minutes and seconds with leading zeros, if required
  currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
  currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;

  // Convert the hours component to 12-hour format if needed
  // currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

  // Convert an hours component of "0" to "12"
  currentHours = ( currentHours == 0 ) ? 12 : currentHours;

  // Compose the string for display
  var currentTimeString = currentHours + ":" + currentMinutes;

  // Update the time display
  document.getElementById("clock").firstChild.nodeValue = currentTimeString;
}
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following 2 Users Say Thank You to hhm For This Useful Post:
BacE 88 (06-02-2009), barsoverbeats (04-21-2009)
  #771  
Old 04-21-2009, 03:11 PM
barsoverbeats's Avatar
Theme Creator
 
Join Date: Nov 2008
Device + Firmware: 3G 3.0
Operating System: Vista
Location: Pennsylvania
Posts: 1,866
Thanks: 1,011
Thanked 1,604 Times in 732 Posts

Guys I asked poetic to hold off on the update, I have something that needed changed!! I am sorry. I will get the package updated ASAP and resend it for cydia. HOPEFULLY it will still drop tonight!!
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to barsoverbeats For This Useful Post:
Ricola81 (04-21-2009)
  #772  
Old 04-21-2009, 03:24 PM
iPhone? More like MyPhone
 
Join Date: Nov 2008
Device + Firmware: iPhone 3G, iPod Touch (1st Gen)
Posts: 114
Thanks: 41
Thanked 5 Times in 5 Posts

Icon request:

Serengeti (From app store)

Thanks
Attached Images
 

Last edited by Navec245; 04-21-2009 at 04:01 PM..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #773  
Old 04-21-2009, 03:36 PM
barsoverbeats's Avatar
Theme Creator
 
Join Date: Nov 2008
Device + Firmware: 3G 3.0
Operating System: Vista
Location: Pennsylvania
Posts: 1,866
Thanks: 1,011
Thanked 1,604 Times in 732 Posts

Ill be banging out all icons requested tonight....I know someone asked for some SBtoggles too but I couldnt find the request... new package just resubmitted...
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to barsoverbeats For This Useful Post:
bruincanuck (04-21-2009)
  #774  
Old 04-21-2009, 03:39 PM
Green Apple
 
Join Date: Feb 2008
Posts: 86
Thanks: 70
Thanked 14 Times in 14 Posts

Icon for Dictionary.com from app store please. Thanks for the info about the update.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #775  
Old 04-21-2009, 05:07 PM
barsoverbeats's Avatar
Theme Creator
 
Join Date: Nov 2008
Device + Firmware: 3G 3.0
Operating System: Vista
Location: Pennsylvania
Posts: 1,866
Thanks: 1,011
Thanked 1,604 Times in 732 Posts

Quote:
Originally Posted by Kawi2004 View Post
Icon for Dictionary.com from app store please. Thanks for the info about the update.
will do, and your very welcome! I will post screenshots of new slider also...

1.4 posted on repo....

Darn it all!! I need to get some sleep!!! slider NOT in this update!!!!

Last edited by barsoverbeats; 04-21-2009 at 06:24 PM.. Reason: Automerged Doublepost
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following 5 Users Say Thank You to barsoverbeats For This Useful Post:
Da Wil-Man (04-21-2009), hhm (04-21-2009), HisNameIsAngel (04-21-2009), Kawi2004 (04-21-2009), Silverado87 (04-21-2009)
  #776  
Old 04-21-2009, 08:59 PM
danburnsred's Avatar
Green Apple
 
Join Date: Oct 2008
Posts: 79
Thanks: 15
Thanked 9 Times in 8 Posts

MLBAtBat
ToneFXs
BaseballSuperstars 2009 (BS09)

please and thank you!
great theme, really works well with 5 rows and 5 columns

Click the image to open in full size.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #777  
Old 04-21-2009, 10:17 PM
barsoverbeats's Avatar
Theme Creator
 
Join Date: Nov 2008
Device + Firmware: 3G 3.0
Operating System: Vista
Location: Pennsylvania
Posts: 1,866
Thanks: 1,011
Thanked 1,604 Times in 732 Posts

here are a few, I will knock out that 40 icon request tommorow, I fell asleep when putting my son to sleep...
Attached Images
    
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #778  
Old 04-22-2009, 12:56 AM
Rcooley617's Avatar
Green Apple
 
Join Date: Sep 2008
Device + Firmware: iPhone 3G 8GB & iPod Touch 16GB(2.2Firmware) & 5th Gen. Ipod 60GB
Operating System: Windows (Always)
Location: Boston, MA
Posts: 96
Thanks: 61
Thanked 9 Times in 8 Posts
Send a message via AIM to Rcooley617 Send a message via Yahoo to Rcooley617

icon request: match.com--thanks in advance...The theme is great, I'm not in no rush for the icon, unlike others I know you have a life so whenever you can get around to it, I'd appreciate it..Thanks
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #779  
Old 04-22-2009, 01:49 AM
What's Jailbreak?
 
Join Date: Apr 2009
Device + Firmware: iphone 3g
Posts: 15
Thanks: 3
Thanked 1 Time in 1 Post

First post, I am so glad that I found this website.
Bars, thank you so much for the beautiful theme. Love the theme. I do have a few icons request. I am in no hurry, just when you have time. I am already enjoying this theme so much. Thanks again.

SplashID
bookz reader + dictionary
VNC
To-Do Lists
The Human Body
Lexi-COMPLETE
iFile
Ace Tennis Online
Units
iEmoji
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #780  
Old 04-22-2009, 02:35 AM
Livin the iPhone Life
 
Join Date: Apr 2009
Device + Firmware: iphone 3G, Firmware 3.0
Operating System: pc xp+vista
Posts: 1,058
Thanks: 159
Thanked 931 Times in 682 Posts

Quote:
Originally Posted by barsoverbeats View Post
It has to be dragged above ielegance theme in winterboard

Guys I implemented a slider in version 1.4, it has been a nightmare with different languages. It has been the second MOST requested thing via email. If this doesn't suit anyone we can get a custom theme for you.

latest package submitted here: Send big files the easy way. Files too large for email attachments? No problem!
Hi Bars,
Thanks again for this great theme and all the hard work you are doing.
is it possible to get a custom german springboard.strings??
Without the slider it looks so great.
i already sent you my german file, if needed i will send again.

P.S. Download of 1.4 via cydia md5sum mismatch error?
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
Reply

  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > Design and Media For the iPhone / iPod Touch > New Skins / Themes Launches

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Go to Top
ModMyI

All times are GMT -6. The time now is 01:08 PM. Powered by vBulletin® Version 3.8.4
If you need Dedicated Server Hosting, you should check out SingleHop. | Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.0 Copyright © 2007-09 by ModMy, LLC. All rights reserved.

iPhone News / iPhone Forums / Apple News / Apple Forums / RSS / Contact Us / / Top