Skip to content

Commit

Permalink
Bump authoringTool to version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinHo64 committed Oct 23, 2024
1 parent f344ece commit 606a830
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions AuthoringTool/View/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@using Microsoft.Extensions.Localization
@using System.Diagnostics.CodeAnalysis
@using global::Shared
@using Microsoft.Extensions.Localization
@inherits LayoutComponentBase

<PageTitle>@($"{Localizer["PageTitle"]} v{Constants.ApplicationVersion}")</PageTitle>
<PageTitle>@($"{Localizer["PageTitle"]} {Constants.ApplicationVersion}")</PageTitle>

<MudThemeProvider/>
<MudDialogProvider/>
Expand Down
2 changes: 1 addition & 1 deletion AuthoringTool/electron.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"appId": "com.AuthoringTool.app",
"productName": "AuthoringTool",
"copyright": "Copyright © 2023 Team AdLer",
"buildVersion": "2.1.7",
"buildVersion": "2.2.0",
"compression": "maximum",
"directories": {
"output": "../../../bin/Desktop_Publish"
Expand Down
2 changes: 1 addition & 1 deletion Presentation/View/HeaderBar.razor
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
{
<div class="flex justify-center items-center gap-2 cursor-default">
<img class="w-7 drop-shadow opacity-60" src="/CustomIcons/HeaderBar/autorentool-logo-icon.png" alt="authoringtool-logo"/>
<p class="font-bold text-base 2xl:text-lg opacity-80 text-adlerdarkblue-800">@Localizer["AuthoringTool.Text"] v@(Constants.ApplicationVersion)</p>
<p class="font-bold text-base 2xl:text-lg opacity-80 text-adlerdarkblue-800">@Localizer["AuthoringTool.Text"] @(Constants.ApplicationVersion)</p>
</div>
}
@if (SelectedViewModelsProvider.LearningWorld?.Name != null)
Expand Down
2 changes: 1 addition & 1 deletion PresentationTest/View/HeaderBarUt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void Render_ShowsLocalizedAuthoringToolName()

var element = systemUnderTest.FindAll("div p")[1];
element.MarkupMatches(
@$"<p class=""font-bold text-base 2xl:text-lg opacity-80 text-adlerdarkblue-800"">TestName v{Constants.ApplicationVersion}</h1>");
@$"<p class=""font-bold text-base 2xl:text-lg opacity-80 text-adlerdarkblue-800"">TestName {Constants.ApplicationVersion}</h1>");
}

[Test]
Expand Down
4 changes: 2 additions & 2 deletions Shared/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Shared;

public static class Constants
{
public const string ApplicationVersion = "2.1.7";
public const string AtfVersion = "2.0";
public const string ApplicationVersion = "2.2.0";
public const string AtfVersion = "2.3.0";
public const string PluginReleaseSetVersion = "4.0.0";
}

0 comments on commit 606a830

Please sign in to comment.