Skip to content

Commit

Permalink
Release V4.11.0 #1615
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Feb 4, 2023
1 parent bf49636 commit 88947c5
Show file tree
Hide file tree
Showing 6 changed files with 339 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Analogy/Analogy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<OutputType>WinExe</OutputType>
<NeutralLanguage>en-US</NeutralLanguage>
<TargetFrameworks>net48;net471;net7.0-windows;net6.0-windows</TargetFrameworks>
<Version>4.10.2</Version>
<Version>4.11.0</Version>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
22 changes: 16 additions & 6 deletions Analogy/Forms/WhatsNewForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 13 additions & 1 deletion Analogy/Forms/WhatsNewForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ private void WhatsNewForm_Load(object sender, EventArgs e)
return;
}
Icon = UserSettingsManager.UserSettings.GetIcon();
WhatIsNew4_10_2 uc = new WhatIsNew4_10_2 { Name = "V4.10.2" };
WhatIsNew4_11_0 uc = new WhatIsNew4_11_0 { Name = "V4.11.0" };
fluentDesignFormContainer1.Controls.Add(uc);
uc.Dock = DockStyle.Fill;
uc.BringToFront();
Expand Down Expand Up @@ -307,5 +307,17 @@ private void e4102_Click(object sender, EventArgs e)
}
SetActive("V4.10.2");
}

private void e4110_Click(object sender, EventArgs e)
{
if (!fluentDesignFormContainer1.Controls.ContainsKey("V4.11.0"))
{
WhatIsNew4_11_0 uc = new WhatIsNew4_11_0 { Name = "V4.11.0" };
fluentDesignFormContainer1.Controls.Add(uc);
uc.Dock = DockStyle.Fill;
uc.BringToFront();
}
SetActive("V4.11.0");
}
}
}
171 changes: 171 additions & 0 deletions Analogy/WhatIsNew/WhatIsNew4_11_0.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions Analogy/WhatIsNew/WhatIsNew4_11_0.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using DevExpress.XtraEditors;

namespace Analogy.WhatIsNew
{
public partial class WhatIsNew4_11_0 : DevExpress.XtraEditors.XtraUserControl
{
public WhatIsNew4_11_0()
{
InitializeComponent();
}
private void OpenGithubIssue(object sender, DevExpress.Utils.HyperlinkClickEventArgs e)
{
((HyperlinkLabelControl)sender).LinkVisited = true;
Utils.OpenLink(e.Link);
}

}
}
Loading

0 comments on commit 88947c5

Please sign in to comment.