Skip to content
This repository was archived by the owner on Nov 25, 2023. It is now read-only.

Commit e4a1324

Browse files
authored
Merge pull request #98 from Invvard/release/v1.1.3
Release/v1.1.3
2 parents f43f45e + 803a2de commit e4a1324

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/InvvardDev.EZLayoutDisplay.Desktop/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
// by using the '*' as shown below:
5252
// [assembly: AssemblyVersion("1.0.*")]
5353
[assembly: AssemblyVersion("1.0.1.0")]
54-
[assembly: AssemblyFileVersion("1.1.2")]
54+
[assembly: AssemblyFileVersion("1.1.3")]
5555
[assembly: NeutralResourcesLanguage("en-US")]
5656

src/InvvardDev.EZLayoutDisplay.Desktop/ViewModel/AboutViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ private void SetLabelUi()
198198
var appVersion = GetAppVersion();
199199
WindowTitle = $"About {appTitle}";
200200
AppTitleLabel = appTitle;
201-
AppVersionLabel = $"v.{appVersion}";
201+
AppVersionLabel = $"v{appVersion}";
202202
CreatedTitleLabel = "Created by";
203203
BasedOnTitleLabel = "Based on";
204204
ProjectHomeTitleLabel = "Project home";

src/InvvardDev.EZLayoutDisplay.Tests/ViewModel/AboutViewModelTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void AboutViewModelConstructor()
2121
// Assert
2222
Assert.Equal("About EZ Layout Display", aboutViewModel.WindowTitle);
2323
Assert.Equal("EZ Layout Display", aboutViewModel.AppTitleLabel);
24-
Assert.Equal("v.1.1.2", aboutViewModel.AppVersionLabel);
24+
Assert.Equal("v1.1.3", aboutViewModel.AppVersionLabel);
2525
Assert.Equal("Created by", aboutViewModel.CreatedTitleLabel);
2626
Assert.Equal("Based on", aboutViewModel.BasedOnTitleLabel);
2727
Assert.Equal("Project home", aboutViewModel.ProjectHomeTitleLabel);

0 commit comments

Comments
 (0)