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: e92926d23e9e
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: 8be152daa4bb
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 30, 2018

  1. Copy the full SHA
    93ebb53 View commit details

Commits on Oct 7, 2018

  1. Copy the full SHA
    8be152d View commit details
Showing with 4 additions and 1 deletion.
  1. +3 −0 CHANGELOG.md
  2. +1 −1 Core/Types/Kraken.cs
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -8,6 +8,9 @@ All notable changes to this project will be documented in this file.
- [Netkan] Purge downloads that failed to index from Netkan cache (#2526 by: HebaruSan; reviewed: politas)
- [Multiple] Add download count column to GUI (#2518 by: HebaruSan; reviewed: politas)

### Bugfixes
- [GUI] Show innermost download exceptions (#2528 by: HebaruSan; reviewed: politas)

## v1.25.3 (Woomera)

### Features
2 changes: 1 addition & 1 deletion Core/Types/Kraken.cs
Original file line number Diff line number Diff line change
@@ -294,7 +294,7 @@ public ModuleDownloadErrorsKraken(IList<CkanModule> modules, DownloadErrorsKrake
foreach (var kvp in kraken.exceptions)
{
exceptions.Add(new KeyValuePair<CkanModule, Exception>(
modules[kvp.Key], kvp.Value
modules[kvp.Key], kvp.Value.GetBaseException() ?? kvp.Value
));
}
}