ed
Member
Registered: 10th Sep 03
User status: Offline
|
Cheers for the guide - just followed it myself and I'm all done
http://yfrog.com/odgc6mpj
|
philrussell81
Member
Registered: 27th Dec 04
Location: Sheffield
User status: Offline
|
anyone struggled to get winscp to access the phone? all i get is connection refused
|
ed
Member
Registered: 10th Sep 03
User status: Offline
|
Yup, I ended up re-jailbreaking because I don't think it worked correctly first time round. OpenSSH didn't seem to do anything useful and I couldn't install anything from anywhere.
|
philrussell81
Member
Registered: 27th Dec 04
Location: Sheffield
User status: Offline
|
figured it now... file protocol needs to be scp
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
quote: Originally posted by ed
Cheers for the guide - just followed it myself and I'm all done
http://yfrog.com/odgc6mpj
Hundreds of top quality themes/wallpapers/icons/status bar icons/SMS themes etc in here:
http://macthemes.net/forum/viewforum.php?id=24
(The iOS5 theme for Whatsapp is one of my fav)
Good thread for inspiration:
http://forums.macrumors.com/showthread.php?t=1114377
[Edited on 28-12-2011 by A2H GO]
|
ed
Member
Registered: 10th Sep 03
User status: Offline
|
Brilliant
|
Voyto
Member
Registered: 9th Feb 03
Location: Stafford
User status: Offline
|
Is there any way of getting the SB widget to display in Celsius?
|
ed
Member
Registered: 10th Sep 03
User status: Offline
|
Find the part in Weather.html that says:
url="http://weather.yahooapis.com/forecastrss?u=f&p=" //u=Farenheit, because accuWeather sucks
and change u=f to u=c - no idea if this actually works though, the comment after it seems a bit weird but I guess it's worth a shot.
|
Voyto
Member
Registered: 9th Feb 03
Location: Stafford
User status: Offline
|
Never mind, figured it out. There's a variable 'isCelcius' you just need to set to true
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
quote: Originally posted by Voyto
Never mind, figured it out. There's a variable 'isCelcius' you just need to set to true
Beat me to it.
|
Chrissy
Premium Member
Registered: 28th Jan 06
Location: Sunny Glasgow Drives: Astra J
User status: Offline
|
Is there any way to change the date so the day is before the month?
>>>> Chris <<<<
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
Not sure, someone might know, this is the code for the Calendar Part:
code:
function calendarDate ( )
{
var this_date_name_array = new Array("00.","01.","02.","03.","04.","05.","06.","07.","08.","09.","10.","11.","12.","13.","14.","15.","16.","17.","18.","19.","20.","21.","22.","23.","24.","25.","26.","27.","28.","29.","30.","31.")
var this_weekday_name_array = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var this_month_name_array = new Array("01.","02.","03.","04.","0.5","06.","07.","08.","09.","10.","11.","12.") //predefine month names
var this_date_timestamp = new Date()
var this_weekday = this_date_timestamp.getDay()
var this_date = this_date_timestamp.getDate()
var this_month = this_date_timestamp.getMonth()
var this_year = this_date_timestamp.getYear()
if (this_year < 1000)
this_year+= 1900;
if (this_year==101)
this_year=2001;
var month = this_date_timestamp.getMonth();
document.getElementById("weekday").firstChild.nodeValue = this_weekday_name_array[this_weekday] //concat long date string
document.getElementById("date").firstChild.nodeValue = this_date_name_array[this_date] //concat long date string
document.getElementById("month").firstChild.nodeValue = this_month_name_array[this_month] //concat long date string
document.getElementById("year").firstChild.nodeValue = this_year //concat long date stringdocument.getElementById("year").firstChild.nodeValue = this_year //concat long date stringdocument.getElementById("year").firstChild.nodeValue = this_year //concat long date stringdocument.getElementById("year").firstChild.nodeValue = this_year //concat long date string
[Edited on 29-12-2011 by A2H GO]
|
Chrissy
Premium Member
Registered: 28th Jan 06
Location: Sunny Glasgow Drives: Astra J
User status: Offline
|
Yeah if anyone could help me out with that I'd appreciate it!
I've started to skin all my app icons to suit the theme.. Kinda enjoying it! If anyone needs any done give me a shout.
>>>> Chris <<<<
|
Chrissy
Premium Member
Registered: 28th Jan 06
Location: Sunny Glasgow Drives: Astra J
User status: Offline
|
Also.. Any idea if there's a PSD of the wallpaper? Fancy mucking about with the shelves on some different backgrounds.
>>>> Chris <<<<
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
Not sure about the wallpaper to be fair I pinched it off someone else, but if you go thought the threads on macrumours there are loads of examples with shelves.
I like mix and matching the icons too, I've about 10 themes each with 100's of icons in my Dropbox I've been meaning to go through.
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
quote: Originally posted by A2H GO
Not sure, someone might know, this is the code for the Calendar Part:
code:
.......
Ideally you need to move the position of the 'weekday' and 'month' elements (div probably), so where ever those are stored. Although you might be able to bodge it and set the 'weekday' element to the month and 'month' element to the week day.
ie:
code:
...
document.getElementById("weekday").firstChild.nodeValue = this_month_name_array[this_month]
.....
document.getElementById("month").firstChild.nodeValue = this_weekday_name_array[this_weekday]
Might work.
|
Chrissy
Premium Member
Registered: 28th Jan 06
Location: Sunny Glasgow Drives: Astra J
User status: Offline
|
quote: Originally posted by A2H GO
Not sure about the wallpaper to be fair I pinched it off someone else, but if you go thought the threads on macrumours there are loads of examples with shelves.
I like mix and matching the icons too, I've about 10 themes each with 100's of icons in my Dropbox I've been meaning to go through.
I presume it's not as simple as taking a app bundle from another theme and putting it in the Quab folder is it? Are they not all different sizes with different shading and so on? I've been using the icon psd file and just sort of making my own for Spotify and Score Centre etc..
>>>> Chris <<<<
|
ed
Member
Registered: 10th Sep 03
User status: Offline
|
I like the way the person who wrote that file has made it impossible to be read by humans with millions of line breaks
Ideally I want to re-write it so that it can use navigator.location to tell the weather widget where you are...
[Edited on 30-12-2011 by ed]
|
Chrissy
Premium Member
Registered: 28th Jan 06
Location: Sunny Glasgow Drives: Astra J
User status: Offline
|
Okay I managed to switch the date and month around.. It was just a div positioning change. Also fixed what looked like a typo in the month numbers which would have made May look like "0.5".
http://dl.dropbox.com/u/3501659/Wallpaper.html
You'll need to change the weather location again if you use that file as it'll be set to Glasgow.
There's my effort with my own Spotify, Clock, Shazam and Score Center icons.
Cheers for the guide chief!
[Edited on 30-12-2011 by Chrissy]
>>>> Chris <<<<
|
LeeM
Member
Registered: 26th Sep 05
Location: Liverpool
User status: Offline
|
Just gridlock for me
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
quote: Originally posted by Chrissy
Okay I managed to switch the date and month around.. It was just a div positioning change. Also fixed what looked like a typo in the month numbers which would have made May look like "0.5".
http://dl.dropbox.com/u/3501659/Wallpaper.html
You'll need to change the weather location again if you use that file as it'll be set to Glasgow.
There's my effort with my own Spotify, Clock, Shazam and Score Center icons.
Cheers for the guide chief!
[Edited on 30-12-2011 by Chrissy]
Nice, I like the clock icon!
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
quote: Originally posted by Chrissy
quote: Originally posted by A2H GO
Not sure about the wallpaper to be fair I pinched it off someone else, but if you go thought the threads on macrumours there are loads of examples with shelves.
I like mix and matching the icons too, I've about 10 themes each with 100's of icons in my Dropbox I've been meaning to go through.
I presume it's not as simple as taking a app bundle from another theme and putting it in the Quab folder is it? Are they not all different sizes with different shading and so on? I've been using the icon psd file and just sort of making my own for Spotify and Score Centre etc..
I usually just find the icon in the theme I like and just copy and past it into the right folder in the QuabHD theme and rename the existing one to icon_alt so its still there if I want to go back.
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
quote:
ie:
code:
...
document.getElementById("weekday").firstChild.nodeValue = this_month_name_array[this_month]
.....
document.getElementById("month").firstChild.nodeValue = this_weekday_name_array[this_weekday]
Might work.
Done only it was the "date" line that needed swopping as the "Weekday" one is the actual day underneath, ie. Monday.
Also, fixed May as Chrissy pointed out.
[Edited on 02-01-2012 by A2H GO]
|
BOSTON702
Member
Registered: 5th Jan 12
User status: Offline
|
Beautiful theme! Thank you for the tutorial.
Care to share that battery you have?
|
A2H GO
Member
Registered: 14th Sep 04
Location: Stoke
User status: Offline
|
Battery:
http://dl.dropbox.com/u/26826853/Battery.theme.rar
iOS5/iMessage Theme for Whatsapp:
Copy the files found in the .rar file using Wnscp to the following folder (you numbers might be different):
//var/mobile/Applications/6AE31CFB-7596-4C05-BC6E-98101145C974/WhatsApp.app
After that open up WhatsApp and go to settings -> chat settings -> Chat Wallpaper and choose the first one in the wallpaper gallery.
Files: http://cl.ly/B5Jt
|