Skip to content

Commit

Permalink
update 3rd party deps, add sanity check
Browse files Browse the repository at this point in the history
  • Loading branch information
13xforever committed Nov 20, 2020
1 parent 75370ef commit 26d2081
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions IrdLibraryClient/IrdLibraryClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

<ItemGroup>
<PackageReference Include="Crc32.NET" Version="1.2.0" />
<PackageReference Include="DiscUtils.OpticalDisk" Version="0.15.1-ci0002" />
<PackageReference Include="DotNetZip" Version="1.14.0" />
<PackageReference Include="DiscUtils.OpticalDisk" Version="0.16.0-alpha0020" />
<PackageReference Include="DotNetZip" Version="1.15.0" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion Ps3DiscDumper/Dumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace Ps3DiscDumper
{
public class Dumper: IDisposable
{
public const string Version = "3.0.8";
public const string Version = "3.0.9";

private static readonly HashSet<char> InvalidChars = new HashSet<char>(Path.GetInvalidFileNameChars());
private static readonly char[] MultilineSplit = {'\r', '\n'};
Expand Down Expand Up @@ -313,6 +313,9 @@ public async Task FindDiscKeyAsync(string discKeyCachePath)
var clusterRange = discReader.PathToClusters(path);
detectionRecord = new FileRecord(path, clusterRange.Min(r => r.Offset), discReader.GetFileLength(path));
expectedBytes = Detectors[path];
if (detectionRecord.Length == 0)
continue;

Log.Debug($"Using {path} for disc key detection");
break;
}
Expand Down
4 changes: 2 additions & 2 deletions UI.WinForms.Msil/UI.WinForms.Msil.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
<Version>1.2.0</Version>
</PackageReference>
<PackageReference Include="DiscUtils.OpticalDisk">
<Version>0.15.1-ci0002</Version>
<Version>0.16.0-alpha0020</Version>
</PackageReference>
<PackageReference Include="DotNetZip">
<Version>1.14.0</Version>
<Version>1.15.0</Version>
</PackageReference>
<PackageReference Include="EndianBitConverter">
<Version>1.1.0</Version>
Expand Down

0 comments on commit 26d2081

Please sign in to comment.