-
Posts
24,928 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by linuxgurugamer
-
Has anyone gotten IFILS (Life Support) Working in 1.3?
linuxgurugamer replied to Synthesis's topic in KSP1 Mods Discussions
@Synthesis I spent a few minutes, try this out, it's compiled for 1.3.1: https://www.dropbox.com/s/xpjmt7hajg10fxb/IFILS.zip?dl=0 -
Very minor update, 0.0.2.1: Fixed version file
-
[1.12.x] Image Viewer Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
Minor update, 0.0.4.1: Updated version file -
Very nice. Ok, I just looked at your download, you have a couple of small problems Could you remove the space from the path name (ie: change the name to : LCA_Project), makes things easier Please add a .version file, that way CKAN and AVC can know about updates Move the VAB folder out of the GameData folder, it needs to be in Ships/VAB Here is a simple .version file, just save it in the LCA folder in a file called: LCA.version All you will need to do is update the version numbers every time you release an update. { "NAME": "LCA_Project", "VERSION": { "MAJOR": 0, "MINOR": 1, "PATCH": 0, "BUILD": 0 }, "KSP_VERSION": { "MAJOR": 1, "MINOR": 3, "PATCH": 1 } }
-
[1.12.x] Image Viewer Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 0.0.4: Updated for KSP 1.3.1 -
[1.11.1] Hullcam VDS Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 0.1.8: Updated for KSP 1.3.1 -
No problem, I can do it for you, if you like. I just need your permission
-
New release, 0.1.10: KSP 1.3.1 update
-
Ok, from what I see in the code, KSP_VERSION is not required for the min or max to work. It's optional from what I can tell, essentially you need at least one of them set. Here is the important code, it's duplicated in both the full AVC and Mini-AVC: public bool IsCompatible { get { return IsCompatibleKspVersion || ((kspVersionMin != null || kspVersionMax != null) && IsCompatibleKspVersionMin && IsCompatibleKspVersionMax); } } public bool IsCompatibleKspVersion { get { return Equals(KspVersion, actualKspVersion); } } public bool IsCompatibleKspVersionMax { get { return KspVersionMax >= actualKspVersion; } } public bool IsCompatibleKspVersionMin { get { return KspVersionMin <= actualKspVersion; } } I found the following: public bool IsUpdateAvailable { get { return this.IsProcessingComplete && this.LocalInfo.Version != null && this.RemoteInfo.Version != null && this.RemoteInfo.Version > this.LocalInfo.Version && this.RemoteInfo.IsCompatibleKspVersion && this.RemoteInfo.IsCompatibleGitHubVersion; } } which seems to indicate that the KSP_VERSION actually IS necessary. But I'm wondering if this is a bug. I'd say for now, put it back, but I'm going to contact @cybutek about it
- 2,070 replies
-
- 2
-
- iva
- rasterpropmonitor
-
(and 1 more)
Tagged with:
-
It shouldn't, but I'll look at it now. Thanks
- 2,070 replies
-
- iva
- rasterpropmonitor
-
(and 1 more)
Tagged with:
-
[1.12.x] FlagRotate - Adjust flag orientation
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
new release, 1.1.5: Updated for KSP 1.3.1 -
[1.9.x] EVA Enhancements Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 0.1.11: Updated for KSP 1.3.1 -
I know what it says, but I've seen cases where, when KSP_VERSION is specified, the MIN and MAX are ignored. I suppose it's possible that if the KSP_VERSION doesn't equal one of the other two, that it gets ignored. I'll have to take a dive into the code later
- 2,070 replies
-
- 1
-
- iva
- rasterpropmonitor
-
(and 1 more)
Tagged with:
-
New release, 0.7.15: updated for KSP 1.3.1
-
[1.12.x] Danger Alerts Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.4.3: Updated for KSP 1.3.1 -
[1.12.x] Crew R&R - Crew Rest & Rotation
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.1.5: updated for KSP 1.3.1 -
New release, 0.0.2: Updated for KSP 1.3.1 I'll add this as an enhancement request. May be a little bit, I'm busy with updates right now Next time, ping me so I see the message
-
[1.12.x] Kerbal CCTV with WiFi camera
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.1.2: Updated for KSP 1.3.1 It WAS dead. Now it's alive. I really have no idea, but it does need RPM to work, so probably it is.