Skip to content

Commit

Permalink
0.7.1.397 Release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Finwickle committed Jan 3, 2022
1 parent 2544eb1 commit 12d6c89
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion Change notes.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Compatibility Report

### Version 0.7.1
* Minor textual changes
* Improved logging
* Bugfix: Catalog download might hang in rare cases

### Version 0.7
* No longer in beta

### Version 0.6.5 beta
* Logging of path/filenames when saving fails
* Bugfix: report no longer saved on MacOS (and possibly Linux) in version 0.6.4.
* Bugfix: report no longer saved on MacOS (and possibly Linux) in version 0.6.4

### Version 0.6.4 beta
* Ignore Map Themes, which are technically mods, in the report
Expand Down
10 changes: 5 additions & 5 deletions CompatibilityReport/Updater/DataDumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -431,16 +431,16 @@ private static void DumpFakeMapThemes(Catalog catalog, StringBuilder DataDump)
/// <summary>Dumps data that is interesting for now. This will be skipped when not needed.</summary>
private static void DumpInterestingForNow(Catalog catalog, StringBuilder DataDump)
{
return;

DataDump.AppendLine(Title("Non-reviewed mods that need the Ambient Sound Tuner or (Extra) Vehicle Effects:"));
DataDump.AppendLine(Title("Mods that need Ambient Sound Tuner or (Extra) Vehicle Effects, and are not Stable, have no SourceBundled or are Abandoned:"));

foreach (Mod catalogMod in catalog.Mods)
{
if (catalogMod.Stability <= Enums.Stability.NotReviewed &&
if ((catalogMod.Stability != Enums.Stability.Stable || !catalogMod.Statuses.Contains(Enums.Status.SourceBundled) ||
catalogMod.Statuses.Contains(Enums.Status.Abandoned)) &&
(catalogMod.RequiredMods.Contains(818641631) || catalogMod.RequiredMods.Contains(815103125) || catalogMod.RequiredMods.Contains(780720853)))
{
DataDump.AppendLine($"{ WorkshopUrl(catalogMod.SteamID) } : { catalogMod.Name }");
DataDump.AppendLine($"{ WorkshopUrl(catalogMod.SteamID) } : [{ catalogMod.Stability }" +
$"{ (catalogMod.Statuses.Contains(Enums.Status.Abandoned) ? ", Abandoned" : "") }] { catalogMod.Name }");
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion CompatibilityReport/Util/ModSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static class ModSettings
{
// Mod properties.
public const string Version = "0.7.1";
public const string Build = "396";
public const string Build = "397";
public const string ReleaseType = "";
public const int CurrentCatalogStructureVersion = 3;

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Compatibility Report version 0.7
# Compatibility Report version 0.7.1

Compatibility Report mod for [Cities: Skylines](https://steamcommunity.com/app/255710/workshop/). This reports compatibility issues and missing dependencies for your subscribed mods.

Expand Down

0 comments on commit 12d6c89

Please sign in to comment.