[REL] Settings Manager v1.6.0 [67342]

Discussion in 'Released Mods' started by Raevn, December 9, 2013.

  1. cptconundrum

    cptconundrum Post Master General

    Messages:
    4,186
    Likes Received:
    4,900
    Same problem for me. For now you can install it manually.

    Attached Files:

  2. DeathByDenim

    DeathByDenim Post Master General

    Messages:
    4,327
    Likes Received:
    2,125
    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.
    Raevn likes this.
  3. thetrophysystem

    thetrophysystem Post Master General

    Messages:
    7,050
    Likes Received:
    2,874
    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.
  4. cptconundrum

    cptconundrum Post Master General

    Messages:
    4,186
    Likes Received:
    4,900
    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.
  5. Raevn

    Raevn Moderator Alumni

    Messages:
    4,226
    Likes Received:
    4,324
    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 :oops:
  6. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    Thanks again for the help on my unit renamer mod! It works really well now.
    Raevn likes this.
  7. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    The settings buttons have issues in gamma:
    upload_2014-3-2_22-28-52.png
    Raevn likes this.
  8. Raevn

    Raevn Moderator Alumni

    Messages:
    4,226
    Likes Received:
    4,324
    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.
  9. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    That's fine. It's still usable but I thought I'd let you know.
  10. reallexx

    reallexx New Member

    Messages:
    19
    Likes Received:
    2
    can you put the file on your first post for users where mod manager does not work (data source domain issue)
  11. Raevn

    Raevn Moderator Alumni

    Messages:
    4,226
    Likes Received:
    4,324
  12. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    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!
  13. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    @raevn I was just wondering if you had gotten around to this yet. Thanks!
  14. Raevn

    Raevn Moderator Alumni

    Messages:
    4,226
    Likes Received:
    4,324
    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.
  15. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    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.
  16. Raevn

    Raevn Moderator Alumni

    Messages:
    4,226
    Likes Received:
    4,324
    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 :p
  17. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    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.
    Raevn likes this.
  18. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    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%;
    }
    trialq likes this.
  19. DeathByDenim

    DeathByDenim Post Master General

    Messages:
    4,327
    Likes Received:
    2,125
    You might also want to make a pull request for his GitHub.
  20. LavaSnake

    LavaSnake Post Master General

    Messages:
    1,620
    Likes Received:
    691
    Good point, I'll just leave it as this though since it's already posted.
    DeathByDenim likes this.

Share This Page