Skip to content

Commit f240085

Browse files
committed
update for 1.0.5
1 parent 1656224 commit f240085

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

AvaGui/AvaGui.csproj

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@
88
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
99
<StartupObject>AvaGui.Program</StartupObject>
1010
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
11+
<PackageReadmeFile>README.md</PackageReadmeFile>
12+
<RepositoryUrl>https://github.com/OpenLoco/OpenLocoObjectEditor</RepositoryUrl>
13+
<AssemblyVersion>1.0.5</AssemblyVersion>
14+
<FileVersion>$(AssemblyVersion)</FileVersion>
15+
<AssemblyName>ObjectEditor</AssemblyName>
16+
<Product>$(AssemblyName) $(AssemblyVersion)</Product>
17+
<Version>$(AssemblyVersion)</Version>
18+
<Authors>LeftofZen</Authors>
19+
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
1120
</PropertyGroup>
1221

1322
<ItemGroup>
@@ -22,7 +31,6 @@
2231
<EmbeddedResource Include="version.txt" />
2332
</ItemGroup>
2433

25-
2634
<ItemGroup>
2735
<PackageReference Include="Avalonia" Version="11.0.11" />
2836
<PackageReference Include="Avalonia.Controls.ItemsRepeater" Version="11.0.11" />
@@ -39,13 +47,11 @@
3947
<PackageReference Include="Zenith.Core" Version="1.0.20" />
4048
</ItemGroup>
4149

42-
4350
<ItemGroup>
4451
<ProjectReference Include="..\Core\Core.csproj" />
4552
<ProjectReference Include="..\Shared\Shared.csproj" />
4653
</ItemGroup>
4754

48-
4955
<ItemGroup>
5056
<Compile Update="Views\VehicleView.axaml.cs">
5157
<DependentUpon>VehicleView.axaml</DependentUpon>

AvaGui/ViewModels/MainWindowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class MainWindowViewModel : ViewModelBase
7979

8080
public MainWindowViewModel()
8181
{
82-
var paletteUri = new Uri("avares://AvaGui/Assets/palette.png");
82+
var paletteUri = new Uri("avares://ObjectEditor/Assets/palette.png");
8383
var palette = Image.Load<Rgb24>(AssetLoader.Open(paletteUri));
8484

8585
Model = new()

AvaGui/Views/MainWindow.axaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<StackPanel Orientation="Horizontal">
2626
<Image Width="32" Height="32">
2727
<Image.Source>
28-
<CroppedBitmap Source="avares://AvaGui/Assets/loco_object_types_combined.png" SourceRect="{Binding SourceRect}">
28+
<CroppedBitmap Source="avares://ObjectEditor/Assets/loco_object_types_combined.png" SourceRect="{Binding SourceRect}">
2929
</CroppedBitmap>
3030
</Image.Source>
3131
</Image>
@@ -37,7 +37,7 @@
3737
<StackPanel Orientation="Horizontal">
3838
<Image Width="32" Height="32">
3939
<Image.Source>
40-
<CroppedBitmap Source="avares://AvaGui/Assets/loco_vehicle_types_combined.png" SourceRect="{Binding SourceRect}">
40+
<CroppedBitmap Source="avares://ObjectEditor/Assets/loco_vehicle_types_combined.png" SourceRect="{Binding SourceRect}">
4141
</CroppedBitmap>
4242
</Image.Source>
4343
</Image>
@@ -49,7 +49,7 @@
4949
<StackPanel Orientation="Horizontal">
5050
<Image Width="16" Height="16">
5151
<Image.Source>
52-
<CroppedBitmap Source="avares://AvaGui/Assets/vanilla.png" SourceRect="{Binding SourceRect}">
52+
<CroppedBitmap Source="avares://ObjectEditor/Assets/vanilla.png" SourceRect="{Binding SourceRect}">
5353
</CroppedBitmap>
5454
</Image.Source>
5555
</Image>

AvaGui/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.4
1+
1.0.5

Gui/Gui.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<StartupObject>OpenLoco.ObjectEditor.Gui.Program</StartupObject>
1212
<PackageReadmeFile>README.md</PackageReadmeFile>
1313
<RepositoryUrl>https://github.com/OpenLoco/OpenLocoObjectEditor</RepositoryUrl>
14-
<AssemblyVersion>1.0.4</AssemblyVersion>
14+
<AssemblyVersion>1.0.5</AssemblyVersion>
1515
<FileVersion>$(AssemblyVersion)</FileVersion>
1616
<AssemblyName>ObjectEditor</AssemblyName>
17-
<Authors>LeftofZen</Authors>
1817
<Product>$(AssemblyName) $(AssemblyVersion)</Product>
1918
<Version>$(AssemblyVersion)</Version>
19+
<Authors>LeftofZen</Authors>
2020
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
2121
</PropertyGroup>
2222

Gui/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.4
1+
1.0.5

0 commit comments

Comments
 (0)