Skip to content

Commit

Permalink
Update Whats is new in version 4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Nov 13, 2021
1 parent 732e71c commit dfb6400
Show file tree
Hide file tree
Showing 6 changed files with 451 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Analogy/CommonChangeLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static IEnumerable<AnalogyChangeLog> GetChangeLog()
new AnalogyChangeLog("V4.8.0 - Add NET6 compilation #1142",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,11,09)),
new AnalogyChangeLog("V4.8.0 - [User Settings] Set default for remember last saved search to off #1148",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,11,06)),
new AnalogyChangeLog("V4.8.0 - File Pooling - Add option to set minimum pooling interval (instead/addition to each file changes) #1150",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,11,06)),
new AnalogyChangeLog("V4.8.0 - V5 - fluent design form #1149",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,11,06)),
new AnalogyChangeLog("V4.8.0 - V5 - Fluent design form #1149",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,11,06)),
new AnalogyChangeLog("V4.8.0 - Remove nugets",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,10,01)),
new AnalogyChangeLog("V4.8.0 - Keep panel size when switching between float and dock modes #1136",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2021,09,25)),
new AnalogyChangeLog("V4.7.6 - Update Analogy.LogViewer.gRPC - remove hard-coded port 6000",AnalogChangeLogType.Bug,"Lior Banai",new DateTime(2021,09,01)),
Expand Down
32 changes: 21 additions & 11 deletions Analogy/Forms/WhatsNewForm.Designer.cs

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

15 changes: 14 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_7_5 uc = new WhatIsNew4_7_5 { Name = "V4.7.5" };
WhatIsNew4_8_0 uc = new WhatIsNew4_8_0 { Name = "V4.8.0" };
fluentDesignFormContainer1.Controls.Add(uc);
uc.Dock = DockStyle.Fill;
uc.BringToFront();
Expand Down Expand Up @@ -216,5 +216,18 @@ private void e475_Click(object sender, EventArgs e)
}
SetActive("V4.7.5");
}

private void e480_Click(object sender, EventArgs e)
{
if (!fluentDesignFormContainer1.Controls.ContainsKey("V4.8.0"))
{
WhatIsNew4_8_0 uc = new WhatIsNew4_8_0();
uc.Name = "V4.8.0";
fluentDesignFormContainer1.Controls.Add(uc);
uc.Dock = DockStyle.Fill;
uc.BringToFront();
}
SetActive("V4.8.0");
}
}
}
Loading

0 comments on commit dfb6400

Please sign in to comment.