Skip to content
This repository was archived by the owner on Nov 25, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.1.2")]
[assembly: AssemblyFileVersion("1.1.3")]
[assembly: NeutralResourcesLanguage("en-US")]

Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ private void SetLabelUi()
var appVersion = GetAppVersion();
WindowTitle = $"About {appTitle}";
AppTitleLabel = appTitle;
AppVersionLabel = $"v.{appVersion}";
AppVersionLabel = $"v{appVersion}";
CreatedTitleLabel = "Created by";
BasedOnTitleLabel = "Based on";
ProjectHomeTitleLabel = "Project home";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void AboutViewModelConstructor()
// Assert
Assert.Equal("About EZ Layout Display", aboutViewModel.WindowTitle);
Assert.Equal("EZ Layout Display", aboutViewModel.AppTitleLabel);
Assert.Equal("v.1.1.2", aboutViewModel.AppVersionLabel);
Assert.Equal("v1.1.3", aboutViewModel.AppVersionLabel);
Assert.Equal("Created by", aboutViewModel.CreatedTitleLabel);
Assert.Equal("Based on", aboutViewModel.BasedOnTitleLabel);
Assert.Equal("Project home", aboutViewModel.ProjectHomeTitleLabel);
Expand Down