Skip to content

Commit

Permalink
Update Avalonia and Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamsyntax committed Mar 30, 2024
1 parent ed913ec commit 1c8e3d4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,8 @@ Each model must be placed in its own folder, keeping the original file names (P1
### Converting Extracted Game to ISO (OPTIONAL)
1. Right click the Extracted format game (0 filesize entry) and pick `Convert File...`
2. The Convert window will appear, click "Convert..." and name it `game.iso` for Nintendont, or `ShadowRando.iso` for Dolphin
3. Move/Save the ISO to the Path Dolphin detects your games. A new full-size entry should appear in your Dolphins game list. Use this when playing the game.
3. Move/Save the ISO to the Path Dolphin detects your games. A new full-size entry should appear in your Dolphins game list. Use this when playing the game.

### (Developers Only) How To Build Release Variant
Tweak below with target platform in -r and adjust --self-contained to true if you want to embed .NET 8 Desktop Runtime in the output
`dotnet publish ShadowRando.Desktop -c Release -r win-x64 --self-contained false /p:PublishSingleFile=true`
2 changes: 1 addition & 1 deletion ShadowRando.Desktop/ShadowRando.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions ShadowRando/ShadowRando.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@

<ItemGroup>
<PackageReference Include="AFSLib" Version="1.1.1" />
<PackageReference Include="Avalonia" Version="11.0.9" />
<PackageReference Include="Avalonia" Version="11.0.10" />
<PackageReference Include="Avalonia.Controls.PanAndZoom" Version="11.0.0.3" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.9" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.9" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="ShadowFNT" Version="2.0.1" />
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<!--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.9" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
<PackageReference Include="MessageBox.Avalonia" Version="3.1.5.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion ShadowRando/Views/MainView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public partial class MainView : UserControl

private string selectedFolderPath;
private bool avaloniaPreviewUI;
const string programVersion = "0.5.1-dev";
const string programVersion = "0.6.0";
private bool programInitialized = false;
private bool randomizeProcessing = false;

Expand Down
2 changes: 1 addition & 1 deletion Submodules/ShadowSET

0 comments on commit 1c8e3d4

Please sign in to comment.