Jump to content

JonDahm

Members
  • Posts

    55
  • Joined

  • Last visited

Reputation

29 Excellent

Contact Methods

Profile Information

  • About me
    Rocketry Enthusiast

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. I had a private conversation with @linuxgurugamer about merging this into TRP-Hire. I gave him permission to do this in that PM, but just for the public record, this is explicit, written consent for @linuxgurugamer to merge my code into TRP-Hire, with or without including my copyright or a copy of the license. I don't maintain this project anymore. Happy KSPing!
  2. EDIT: Nevermind, it turns out I had been using version 1.2, not the latest 1.3. My bad. Is it normal for the compartments to be too small width-wise? The sizes they're supposed to match (and do match in the preview album) are 1.25m and 2.5m, but they look to actually just be 1m and 2m, respectively. I'm a little disappointed. (See this Imgur Album: http://imgur.com/a/Mgluo)
  3. I just want to say that I love this mod. I feel like with some control mods I really have to fight them to get them to work for me, but this just works right out of the box. I haven't tried anything too complicated with it, but for what I have tried it's worked flawlessly. Thank you so much for this mod!
  4. This mod is so incredibly useful to me, so thanks for making it! Unfortunately, after using it a few minutes I've discovered a couple of issues that prevent me from using it in my serious games. First, which folder is actually selected in the Load menu is ambiguous - the highlight tells you which folder you last single-clicked on, but you have to double-click to actually select a folder. This leads to a mismatch between the highlighted folder and the folder whose contents is shown. I think that having single-click select the folder would probably be more intuitive here and would solve the issue without needing to add new labels. Second, the category that the current craft is saved into seems to be determined by the folder last selected in the Load menu, even when closed. I can easily imagine myself opening the load menu to merge in a craft from another category, then forgetting to reset the category before saving again. Perhaps it would be better to add a separate category selector for the currently-edited craft? For reference, I'm running 64-bit Linux (Arch Linux, specifically), and I installed just this mod (+KerboKatzUtilities) on a clean copy of KSP.
  5. Sorry for being away a while -- had some health issues. I'm mostly back in shape again. A progress report on what I've done since the last post: Fixed the drag-n-drop bug Figured out how to save and load bar states on a game-by-game basis. Not fully implemented yet. As you can see, not a whole lot, but I've also been sick, so there's that. Hopefully I'll get back into the swing of this again soon. I'm still working on it, I promise!
  6. It seems that any CLS support for PorkJet's Habitat Pack has been removed (despite the top post saying that support is provided), and CLS now assumes that the parts are impassible. Would it be possible to add these back?
  7. Big news! I've made support for AVC and (when 1.0 is released) CKAN! I've also got all the button and sort bar configurations in ConfigNode files that ModuleManager can modify. That means if you want to add a button, all you have to do is create a ModuleManager/ConfigNode file and compile a small DLL with your comparison function. Next on the agenda: Actually saving the sort state on a per-game basis, fixing the drag-n-drop bug, and seeing if I can actually replace the auto-assigned crew. Things are looking up!
  8. TaranisElsu, I've set up a similar test to yours and not had any problems. Perhaps you need to update your Mini-AVC installation? My local file: { "NAME":"Kerbal Sorter", "URL":"http://pastebin.com/raw.php?i=hMeyn99E", "VERSION": { "MAJOR":0, "MINOR":4, "PATCH":0 }, "KSP_VERSION": { "MAJOR":1, "MINOR":0, "PATCH":2 } } My remote file: { "NAME":"Kerbal Sorter", "GITHUB":{ "USERNAME":"JonDahm", "REPOSITORY":"KerbalSorter" }, "VERSION": { "MAJOR":0, "MINOR":4, "PATCH":0 }, "KSP_VERSION": { "MAJOR":1, "MINOR":0, "PATCH":2 }, "KSP_VERSION_MIN": { "MAJOR":1, "MINOR":0, "PATCH":0 }, "KSP_VERSION_MAX": { "MAJOR":1, "MINOR":0, "PATCH":4 } } MiniAVC.log: Executing: MiniAVC - 1.0.3.0 Assembly: G:\Kerbal Space Program Modding\KSP 1.0.4 Test Install\GameData\Test\MiniAVC.dll [Log 19:27:14.6872803]: Starter was created. [Log 19:27:16.3513755]: Identical remote version found: Using remote version information only. [Log 19:27:16.3513755]: http://pastebin.com/raw.php?i=hMeyn99E NAME: Kerbal Sorter URL: NULL DOWNLOAD: https://github.com/JonDahm/KerbalSorter/releases/tag/v0.4-beta GITHUB: JonDahm/KerbalSorter LatestRelease: 0.4 AllowPreRelease: False VERSION: 0.4 KSP_VERSION: 1.0.2 KSP_VERSION_MIN: 1.0 KSP_VERSION_MAX: 1.0.4 CompatibleKspVersion: False CompatibleKspVersionMin: True CompatibleKspVersionMax: True CompatibleGitHubVersion: True [Log 19:27:16.3563758]: Starter was destroyed. I've also tested with the local's version set to the string "0.4.0" rather than an object, with the same results.
  9. To answer my own question, after some testing: If your latest github release is tagged "v0.4-beta" and your remote .version file has version 0.4, an update notification will, in fact, appear. It seems that AVC will trim that extra text in the tag. However, if your remote .version file has 0.3 or 0.5 instead, an update notification will not appear. Remember to keep your .version file up to date, y'all!
  10. If you want further help, I believe the Plugin Development Help and Support subforum is the place to go. Good luck, and happy modding!
  11. You're the best! I knew that I could name the nodes whatever, but I didn't know how to get the patched version of it from Module Manager. Thank you so much!
  12. Is there any way to make a custom configuration for my mod that ModuleManager can modify? I have some non-part-related GUI elements that I'd like to be as easily extensible as possible.
  13. I need some help with my set-up. I release my mod via GitHub. The tags used for the releases look like "v0.4.1-beta". However, the README says that, when using the GITHUB property, update notifications won't appear if the GitHub version doesn't match the remote .version file's version. Will my tag naming scheme be a problem here, or will things be fine? Here are my releases, and here is my .version file: { "NAME" : "Kerbal Sorter", "URL" : "https://raw.githubusercontent.com/JonDahm/KerbalSorter/master/KerbalSorter.version", "CHANGE_LOG_URL" : "https://raw.githubusercontent.com/JonDahm/KerbalSorter/master/CHANGELOG.md", "VERSION" : { "MAJOR" : 0, "MINOR" : 4, "PATCH" : 1, "BUILD" : 0 }, "GITHUB" : { "USERNAME" : "JonDahm", "REPOSITORY" : "KerbalSorter", "ALLOW_PRE_RELEASE" : false }, "KSP_VERSION" : { "MAJOR" : 1, "MINOR" : 0, "PATCH" : 4 }, "KSP_VERSION_MAX" : { "MAJOR" : 1, "MINOR" : 0, "PATCH" : 4 }, "KSP_VERSION_MIN" : { "MAJOR" : 1, "MINOR" : 0, "PATCH" : 0 } }
  14. Beta v0.4 released! I went with the last icon set I made from game-icons.net for the Sort by Number of Flights button in this release, but I'm definitely still open to feedback. Also, I'm considering making a thread in the Add-on Release subforum to gain a wider audience. Do y'all think the mod is ready for that?
×
×
  • Create New...