-
Posts
1,269 -
Joined
-
Last visited
Reputation
724 ExcellentProfile Information
-
About me
Kethane Developer
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Kethane Pack 0.9.2 - New cinematic trailer! - 1.0 compatibility update
Majiir replied to Majiir's topic in KSP1 Mod Releases
Hi folks, It's been brought to my attention that there's continued interest in Kethane, in particular the part models and textures. The plugin source code is (and has been for some time) open-source under permissive licenses (BSD). (This includes the 'GeodesicGrid' source.) The art assets, however, were licensed differently by the original artists. At least some of the parts were intended by the artists to be used only with Kethane. This has effectively prevented others from publishing Kethane forks, which is not the intention. Therefore, in order to allow for continued work on Kethane while respecting the artists' wishes, I would like to name taniwha the successor of the Kethane project, and in effect to sublicense the rights to all models, textures and other assets to taniwha for distribution and modification as needed to maintain the project. If there are questions or if this statement is insufficient to "unstick" the project, feel free to get in touch with me in #kspmodders on IRC. Cheers, Majiir -
I own the server in question. I don't know exactly what it's doing, since there are a number of services running on that IP. It's possible that a mod (or mod manager) is checking for updates or downloading new versions, since I'm hosting some projects for other folks. It's also possible that you have an old copy of ModStatistics floating around. If that's the case, you can either (a) set "disabled=true" in GameData/ModStatistics/settings.cfg or ( delete all copies of ModStatistics.dll in your GameData directory. That said, I don't touch that server these days, so I wouldn't worry too much in either case.
-
Kethane Pack 0.9.2 - New cinematic trailer! - 1.0 compatibility update
Majiir replied to Majiir's topic in KSP1 Mod Releases
It's perfectly alright for thomson to release the modified DLL. He's correct that Kethane itself is released under a classic BSD 2-Clause license. As for me, I'm preoccupied with other things, so I'm hands-off right now. It seems the community is taking care of things just fine. When I get a moment, I'll be happy to accept a pull request and rebuild for a proper release. -
Kerbal Stuff, an open-source Space Port replacement
Majiir replied to SirCmpwn's topic in KSP1 Mods Discussions
It was down earlier for ~15 minutes before I was notified and brought it back up. The application server crashes occasionally. I've raised the issue before, and it was regarded as a "fluke", but I think it's clearly a more regular thing. There's currently no watchdog process to make sure the application server stays running. As far as I know, the root cause of the crashes is unknown. -
Kerbal Stuff, an open-source Space Port replacement
Majiir replied to SirCmpwn's topic in KSP1 Mods Discussions
Agreed. It's not "packed" into a single download. (That's certainly possible, but probably unnecessary.) "Adapter" mods can usually provide the necessary customizations. Plus, this paradigm encourages modders to create better APIs so that internal modifications aren't necessary. -
Kerbal Stuff, an open-source Space Port replacement
Majiir replied to SirCmpwn's topic in KSP1 Mods Discussions
If you aren't hosting the mod on Kerbal Stuff, then why have an entry at all? Conversely, if you want an entry on Kerbal Stuff, why not host the mod there? -
Kerbal Stuff, an open-source Space Port replacement
Majiir replied to SirCmpwn's topic in KSP1 Mods Discussions
The OS is CentOS 6, but it shouldn't matter much. The server is incorrectly counting requests with Range headers (which result in HTTP 206 responses). The stats will be regenerated after that's fixed. Consider them phantom hits for now. -
Kethane Pack 0.9.2 - New cinematic trailer! - 1.0 compatibility update
Majiir replied to Majiir's topic in KSP1 Mod Releases
Older versions of Internet Explorer don't support the encryption Kerbal Stuff uses. -
Kethane Pack 0.9.2 - New cinematic trailer! - 1.0 compatibility update
Majiir replied to Majiir's topic in KSP1 Mod Releases
Charles Rogers (Umbongo Time) has put together a new official trailer using Kethane 0.9.2! Take a look: -
Kethane Pack 0.9.2 - New cinematic trailer! - 1.0 compatibility update
Majiir replied to Majiir's topic in KSP1 Mod Releases
You'll have to be more specific. The download link is working fine. (It links to Kerbal Stuff.) Which link are you clicking, and what error are you getting? -
Toolbar buttons multiplying like rabbits
Majiir replied to Banbury's topic in KSP1 Technical Support (PC, modded installs)
I've seen a few variations on this: With a lot of mods, the AppLauncher bugs out, but each of those mods individually works just fine. To me, it smells like a bug in AppLauncher itself, and it's aggravated by minor bugs in individual mods. Honestly, the AppLauncher API leaves a lot to be desired, but I doubt a stock rework will ever happen. Perhaps there's interest in a wrapper API? -
Kethane Pack 0.9.2 - New cinematic trailer! - 1.0 compatibility update
Majiir replied to Majiir's topic in KSP1 Mod Releases
Friendly reminder to please use the Kethane issue tracker on Github when reporting issues. Additionally, those with the toolbar issue: please post your output logs on Github. I am reworking some of the toolbar code on this end, but I'm unable to reproduce the issue you're all having. -
Getting all Engine Parts
Majiir replied to pulp_user's topic in KSP1 C# Plugin Development Help and Support
For all engine PartModules: var engineModules = vessel.Parts.SelectMany(p => p.Modules.OfType<ModuleEngines>()); For all parts which have engine PartModules: var partsWithEngines = vessel.Parts.Where(p => p.Modules.OfType<ModuleEngines>().Any()); This is off the top of my head, so capitalization may vary. -
These mods implement CompatibilityChecker (as do many others) but not all of them disable when the compatibility check fails. (Kethane, at least, does not.)