It turns out raevn updated the version on the repository, but forgot to update the download url. I fixed that now, so you just hit "Refresh" in PAMM and it should work.
After it nuked my game... thanks lol. Jkjk, I accept these things do happen, and I am fine with the occasional re-wipe and re-install. Lol, that drives some people mad that they are ever forced to do that even once. Speaking of unrelatedly, Starbound got it's last wipe so thats dandy too! EDIT: Worked. Good job fixing so soon. No probs for bringing it to your attention.
It nuked your game and you had to reinstall? That shouldn't ever happen. There are two update buttons. The one on the installed mods list was unchecking all the mods that required settings manager, but even that shouldn't have caused real problems. There was an issue with my own mod, because it didn't tell PAMM it needed settings manager. If you have my mod installed, it probably broke the system editor, new game, and settings scenes. I don't see how reinstalling PA would even fix that though, because the mods aren't kept in the PA folder anymore.
Yeah just saw that this happened and you that you fixed it, many many thanks . I was in a rush to push that update because I missed something in the previous version. More haste = less speed, it seems
Thanks for letting me know. PAMM has taken up most of my time so far since Gamma was released; I'm just starting to work through the mods now.
can you put the file on your first post for users where mod manager does not work (data source domain issue)
I think I found another error in gamma and this one is quite urgent/bad. When I add this js file to the settings page on one of my mods the debugger reports an error along the lines of "can't call method append of undefended". It seems the function for creating tabs in settings has changed or something. Code: model.addSettingGroup("ProfilePic+", "New group."); Could you fix this ASAP? I can't do anything more on my update to my profile pic mod until it's fixed. Thanks!
This isn't for creating new tabs This is for groups within tabs, so the first parameter of that function needs to be "GRAPHICS", "AUDIO", "CAMERA", "UI" or "SERVERS". Note that you shouldn't need to explicitly call addSettingGroup() in most cases; the other functions for adding settings have a group parameter, and the group will be automatically created if it doesn't already exist.
Oh, oops. Sorry about that. I did have addSettingGroup() in my mod but I was using it for testing this. I guess I'll just look into adding my own tab then. Thanks.
All good! I could make it possible to add more tabs, but I'm worried about tab explosion as every mod decides to add it's own tab
In my original config for that mod I needed a new tab since I had about three different groups but I reworked it and it works fine now.
I got so tried of the messed up buttons that I went in and fixed the css for the settings manager buttons. Here's the edited file, mind if I upload it to PAMM? rSettingsManager.css Code: .div_settings_control_text { width: 110px; height: 20px; padding: 0px !important; padding-left: 4px !important; padding-right: 4px !important; margin-bottom: 20px; } .div_settings_control_number { width: 110px; height: 20px; padding: 0px !important; padding-left: 4px !important; padding-right: 4px !important; margin-bottom: 20px; } input[type="number"] { -webkit-user-select: text; } input[type="number"] { border:1px solid rgba(255,255,255,1); background:black; color:#fff; text-shadow:none; box-shadow:none; padding:4px; } input[type="number"]:disabled { border:1px solid rgba(255,255,255,.1); background:black; color:#666; text-shadow:none; box-shadow:none; } .settings_button { min-width: 120px; font-size:1em; padding-top: 1px; padding-bottom: 1px; margin-bottom: 20px; } .settings_group_label { color: rgb(184, 184, 184); border-bottom: 1px solid rgba(255, 255, 255, 0.2); width: 100%; }