Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Lookin pretty good here!

I cant find how to enable the sections to be unfolded (opened) by default. Anyone know how to fix that?



^^same problem. Anyone got a fix?

You do it in the config.js file. When it lists all of the sections I believe you add a "//" in front of the line if you want to open it by default.

Anyway, Im at work and cant look exactly, but its one of the sections in the config.js file.
 
You do it in the config.js file. When it lists all of the sections I believe you add a "//" in front of the line if you want to open it by default.

Anyway, Im at work and cant look exactly, but its one of the sections in the config.js file.

// EXPAND/COLLAPSE SETTINGS

// Collapse or expand main sections by default; comment-out or set to false to expand...
// To collapse a section by default, remove the "//" at the beginning of the line
var defaultCollapsed = {
"Clock":true,
"Mail":true,
// "Calendar":true,
"Calls":true,
"Voicemail":true,
"SMS":true,
// "Weather":true,
};
 
Has anyone figured out why voicemail doesn't update yet? I deliberately left myself a voicemail on my iPhone, yet LockInfo doesn't show that I have any voicemails.. just the missed call..
 
Has anyone figured out why voicemail doesn't update yet? I deliberately left myself a voicemail on my iPhone, yet LockInfo doesn't show that I have any voicemails.. just the missed call..

Mine does show and update. What theme are you using / extras are installed? I'm running gruppled with iblacklist, and unfold on everything.
 
Mine does show and update. What theme are you using / extras are installed? I'm running gruppled with iblacklist, and unfold on everything.

I'm using Gruppled Lockinfo as well as LockInfo, although I think just Gruppled will work, right? I just replaced iBlacklist with Popup Blocker from ashman's repository. I don't have them set to automatically unfold, nor do I have it set to show empty categories.
 
I'm using Gruppled Lockinfo as well as LockInfo, although I think just Gruppled will work, right? I just replaced iBlacklist with Popup Blocker from ashman's repository. I don't have them set to automatically unfold, nor do I have it set to show empty categories.

Wait, do you have both LockInfo and the Gruppled theme checked on in winterboard. If you do, only check the Gruppled theme.
 
Wait, do you have both LockInfo and the Gruppled theme checked on in winterboard. If you do, only check the Gruppled theme.

Aye, I have unchecked the original LockInfo and now only have Gruppled's checked. Still no voicemail showing up.. arggghhhh!
 
Aye, I have unchecked the original LockInfo and now only have Gruppled's checked. Still no voicemail showing up.. arggghhhh!

Well, hum...Haha. I just got a voicemail in as well and it is not showing up on mine either. Strange. I am gonna have to take a look at the files and see if anything is screwed up. I am using LockInfo Matte theme.
 
Well, hum...Haha. I just got a voicemail in as well and it is not showing up on mine either. Strange. I am gonna have to take a look at the files and see if anything is screwed up. I am using LockInfo Matte theme.

I'm an intermediate coder myself, I've looked through and tried about everything, spell-checked the code and everything, I don't see the issue.. hehe
 
Well, hum...Haha. I just got a voicemail in as well and it is not showing up on mine either. Strange. I am gonna have to take a look at the files and see if anything is screwed up. I am using LockInfo Matte theme.

vm is still working for me with gruppled lockinfo. i haven't touched any of the prefs in the lockinfo pref pane (other than extend to bottom), if that makes a diff. running newest lockinfo 1.0.65
 
Ok, what the heck. Now all of a sudden my voicemail alert showed up and at the same extact time all my email accounts disappeared.

I may just have to uninstall all the LockInfo stuff and reinstall it to see if it goes better.

EDIT: Well now it all seems to be working, but I did not do anything to change it. We will see.
 
Ok, what the heck. Now all of a sudden my voicemail alert showed up and at the same extact time all my email accounts disappeared.

I may just have to uninstall all the LockInfo stuff and reinstall it to see if it goes better.

EDIT: Well now it all seems to be working, but I did not do anything to change it. We will see.

So you just reinstalled the LockInfo themes and it fixed itself?
 
A bug I just noticed:

Custom SMS tones dont play AT ALL I even moved them to the top of winterboard.

Dislike :(.

I renamed my tones and replaced the stock ones in system/audio path IIRC.

Worked for me. Just be sure to backup the stock tones.
 
// EXPAND/COLLAPSE SETTINGS

// Collapse or expand main sections by default; comment-out or set to false to expand...
// To collapse a section by default, remove the "//" at the beginning of the line
var defaultCollapsed = {
"Clock":true,
"Mail":true,
// "Calendar":true,
"Calls":true,
"Voicemail":true,
"SMS":true,
// "Weather":true,
};

Maybe Im retarded, but this part always confused me. What is the difference between putting // and putting "true"?
 
I just installed this and I've never used a more difficult app before. Changing the settings with config.js is giving me a headache.. can someone walk me through it? Let's do this one step at a time.. how do I change the weather to my city? I live in Toronto Ontario and I've tried putting my postal code where the zip code was but it didnt recognize mt postal code. Please someone help me out? Thanks in advanced!
 
Maybe Im retarded, but this part always confused me. What is the difference between putting // and putting "true"?

"//" in this code language means to comment out the line, essentially voiding it from executing. Programmers use "//" to comment their code so that other people can understand what's going on (a lot of commenting is in the config.js file, which makes it much easier to configure to your liking).

So theoretically one could put "Calendar"=false; and it might result in the same thing as putting //"Calendar"=true;.

Basically it's telling the code NOT to collapse the section by default.
 
I just installed this and I've never used a more difficult app before. Changing the settings with config.js is giving me a headache.. can someone walk me through it? Let's do this one step at a time.. how do I change the weather to my city? I live in Toronto Ontario and I've tried putting my postal code where the zip code was but it didnt recognize mt postal code. Please someone help me out? Thanks in advanced!

1. Open the config.js file

2. Scroll down to the Weather section

3. Look for this chunk of comments:

// Locations, following the same format as "locale" above. Add as many as you want, separated by commas.
// The first one in the list will be displayed on the weather header.
// Ex. "OCN|AU|VIC|MELBOURNE", "ASI|PH|MAKATI" e.g. 'Defiance, Ohio'|'Moscow, Russia'|'London, UK'
// Visit http://accuweather.com to find something that works
var locales = [
'Vancouver, Canada'
];

4. Copy and paste the pink part into your config.js, where there is the example location.

5. Save and respring.
 
"//" in this code language means to comment out the line, essentially voiding it from executing. Programmers use "//" to comment their code so that other people can understand what's going on (a lot of commenting is in the config.js file, which makes it much easier to configure to your liking).

So theoretically one could put "Calendar"=false; and it might result in the same thing as putting //"Calendar"=true;.

Basically it's telling the code NOT to collapse the section by default.

That's what i thought. So its basically redundant then, either comment out or put false
 
A bug I just noticed:

Custom SMS tones dont play AT ALL I even moved them to the top of winterboard.

Dislike :(.

Could that be because under 3.0 it's now Messages, not SMS.

Has it been updated for 3.0

Most of the SMS stuff doesn't work under 3.0 since Apple changed the name to Messages.

PS, you can SSH in 6 SMS tones to override the Apple tones. Try Google if you want to do it. Takes some time to convert and rename the tones, but it does work.
 
You do it in the config.js file. When it lists all of the sections I believe you add a "//" in front of the line if you want to open it by default.

Anyway, Im at work and cant look exactly, but its one of the sections in the config.js file.


Is this want you want your sections to look like even if they are empty ?/

3729813433_b04b756603.jpg


If so, this is what you want to change to false.

// Hide empty sections?
var hideEmptySections = false;
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.