Skip to content

Commit

Permalink
Merge #2420 Replace empty max KSP version string with any in GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
politas committed Apr 25, 2018
2 parents e5c92de + 7cba16c commit 17e2ae6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.

## v1.25.1

### Features
- [GUI] Replace empty max KSP version string with "any" #2420

### Bugfixes
- [GUI] Splitter and tabstrip visual improvements (#2413 by: HebaruSan; reviewed: politas)
- [GUI] Fix "Collection was modified" exception for redundant optional dependencies (#2423 by: HebaruSan; reviewed: politas)
Expand Down
2 changes: 1 addition & 1 deletion GUI/GUIMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public GUIMod(CkanModule mod, IRegistryQuerier registry, KspVersionCriteria curr
// KSP.
if (latest_available_for_any_ksp != null)
{
KSPCompatibility = KSPCompatibilityLong = registry.LatestCompatibleKSP(mod.identifier)?.ToString() ?? "";
KSPCompatibility = KSPCompatibilityLong = registry.LatestCompatibleKSP(mod.identifier)?.ToString() ?? "any";

// If the mod we have installed is *not* the mod we have installed, or we don't know
// what we have installed, indicate that an upgrade would be needed.
Expand Down

0 comments on commit 17e2ae6

Please sign in to comment.