Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: KSP-CKAN/CKAN
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 681dd7e9ece6
Choose a base ref
...
head repository: KSP-CKAN/CKAN
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e3648d9a6f2a
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Oct 25, 2018

  1. Copy the full SHA
    27bf4f4 View commit details

Commits on Oct 27, 2018

  1. Copy the full SHA
    47155a0 View commit details

Commits on Oct 28, 2018

  1. Copy the full SHA
    93c5372 View commit details
  2. Copy the full SHA
    e3648d9 View commit details
Showing with 11 additions and 4 deletions.
  1. +2 −0 CHANGELOG.md
  2. +6 −2 Core/Versioning/KspVersion.cs
  3. +3 −2 GUI/SettingsDialog.Designer.cs
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -28,6 +28,8 @@ All notable changes to this project will be documented in this file.
- [Core] Use fresh WebClient for fallback URLs (#2539 by: HebaruSan; reviewed: politas)
- [GUI] Clean up popup positioning in GUI (#2544 by: HebaruSan; reviewed: politas)
- [Core] Don't throw exceptions when resetting cache dir (#2547 by: HebaruSan; reviewed: politas)
- [GUI] Fix crash at startup on Windows risen in #2536 (#2557 by: HebaruSan; reviewed: Olympic1)
- [Core] Allow game version of "any" with a vref (#2553 by: HebaruSan; reviewed: Olympic1)

## v1.25.3 (Woomera)

8 changes: 6 additions & 2 deletions Core/Versioning/KspVersion.cs
Original file line number Diff line number Diff line change
@@ -379,6 +379,12 @@ public static bool TryParse(string input, out KspVersion result)
if (ReferenceEquals(input, null))
return false;

if (input == "any")
{
result = KspVersion.Any;
return true;
}

var major = Undefined;
var minor = Undefined;
var patch = Undefined;
@@ -784,8 +790,6 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist
{
case null:
return null;
case "any":
return KspVersion.Any;
default:
KspVersion result;

5 changes: 3 additions & 2 deletions GUI/SettingsDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.