Skip to content

Commit 1c8e3d4

Browse files
committed
Update Avalonia and Release 0.6.0
1 parent ed913ec commit 1c8e3d4

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,8 @@ Each model must be placed in its own folder, keeping the original file names (P1
130130
### Converting Extracted Game to ISO (OPTIONAL)
131131
1. Right click the Extracted format game (0 filesize entry) and pick `Convert File...`
132132
2. The Convert window will appear, click "Convert..." and name it `game.iso` for Nintendont, or `ShadowRando.iso` for Dolphin
133-
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.
133+
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.
134+
135+
### (Developers Only) How To Build Release Variant
136+
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
137+
`dotnet publish ShadowRando.Desktop -c Release -r win-x64 --self-contained false /p:PublishSingleFile=true`

ShadowRando.Desktop/ShadowRando.Desktop.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
18+
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

ShadowRando/ShadowRando.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
<ItemGroup>
1414
<PackageReference Include="AFSLib" Version="1.1.1" />
15-
<PackageReference Include="Avalonia" Version="11.0.9" />
15+
<PackageReference Include="Avalonia" Version="11.0.10" />
1616
<PackageReference Include="Avalonia.Controls.PanAndZoom" Version="11.0.0.3" />
17-
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.9" />
18-
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.9" />
17+
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
18+
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" />
1919
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
2020
<PackageReference Include="ShadowFNT" Version="2.0.1" />
2121
<PackageReference Include="SkiaSharp" Version="2.88.7" />
2222
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
23-
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.9" />
23+
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
2424
<PackageReference Include="MessageBox.Avalonia" Version="3.1.5.1" />
2525
</ItemGroup>
2626

ShadowRando/Views/MainView.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public partial class MainView : UserControl
269269

270270
private string selectedFolderPath;
271271
private bool avaloniaPreviewUI;
272-
const string programVersion = "0.5.1-dev";
272+
const string programVersion = "0.6.0";
273273
private bool programInitialized = false;
274274
private bool randomizeProcessing = false;
275275

0 commit comments

Comments
 (0)