Skip to content

Commit

Permalink
update 3rd party deps and switch to xdg-open on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
13xforever committed Dec 13, 2023
1 parent 40ff3d5 commit 4e93270
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Ps3DiscDumper/Dumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Ps3DiscDumper;

public class Dumper: IDisposable
{
public const string Version = "4.0.6";
public const string Version = "4.0.7";

static Dumper() => Log.Info("PS3 Disc Dumper v" + Version);

Expand Down
4 changes: 2 additions & 2 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="nunit" Version="3.14.0" />
<PackageReference Include="nunit" Version="4.0.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NUnit.Analyzers" Version="3.9.0">
<PackageReference Include="NUnit.Analyzers" Version="3.10.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
12 changes: 6 additions & 6 deletions UI.Avalonia/UI.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.5" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.5" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.5" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.5" />
<PackageReference Include="Avalonia" Version="11.0.6" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.6" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.6" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.5" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.5" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.6" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.6" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion UI.Avalonia/ViewModels/SettingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private void OpenFolder(string value)
folder = $"\"{folder}\"";
ProcessStartInfo psi = OperatingSystem.IsWindows()
? new() { Verb = "open", FileName = folder, UseShellExecute = true, }
: new () { FileName = "open", Arguments = folder, };
: new () { FileName = "xdg-open", Arguments = folder, };
try
{
Process.Start(psi);
Expand Down
2 changes: 1 addition & 1 deletion UI.Avalonia/ViewModels/ViewModelBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private static void OpenUrl(string url)
{
ProcessStartInfo psi = OperatingSystem.IsWindows()
? new() { FileName = url, UseShellExecute = true, }
: new() { FileName = "open", Arguments = url, };
: new() { FileName = "xdg-open", Arguments = url, };
psi.CreateNoWindow = true;
try
{
Expand Down

0 comments on commit 4e93270

Please sign in to comment.