-
Posts
24,945 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by linuxgurugamer
-
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. -
The .version file is somewhat wrong, it says both KSP version of 1.3.1, and then a KSP_verion_min of 1.3.0, it also has a trailing comma which fails JSON checks. I've seen some odd behaviour from both CKAN (I know you don't support it) and AVC when there is both a KSP_VERSION and a KSP_VERSION_MIN Can I suggest the following as a fix: { "NAME": "RasterPropMonitor", "URL": "https://raw.githubusercontent.com/Mihara/RasterPropMonitor/master/GameData/JSI/RasterPropMonitor/RasterPropMonitor.version", "DOWNLOAD": "https://github.com/Mihara/RasterPropMonitor/releases", "VERSION": { "MAJOR": 0, "MINOR": 29, "PATCH": 1 }, "KSP_VERSION_MIN": { "MAJOR": 1, "MINOR": 3, "PATCH": 0 }, "KSP_VERSION_MAX": { "MAJOR": 1, "MINOR": 3, "PATCH": 1 } }
- 2,070 replies
-
- iva
- rasterpropmonitor
-
(and 1 more)
Tagged with:
-
You could try the Loading Screen Manager mod. I hope to have it updated for 1.3.1 today
-
Very nice. CKAN anytime soon?
-
[1.12.x] Champagne Bottle Redux
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 0.3.7: KSP 1.3.1 update