Skip to content

Commit be0fac4

Browse files
committed
Change version number/about box.
1 parent 8951752 commit be0fac4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CodeLab.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class PluginSupportInfo : IPluginSupportInfo
5151

5252
public abstract class CodeLab : BitmapEffect<CodeLabConfigToken>
5353
{
54-
internal const string Version = "6.7";
54+
internal const string Version = "6.8";
5555

5656
// Includes the Build and Revision fields that are generated by the compiler
5757
internal static string VersionFull => typeof(CodeLab).Assembly.GetName().Version.ToString();

CodeLabConfigDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1761,7 +1761,7 @@ private void settingsToolStripMenuItem_Click(object sender, EventArgs e)
17611761

17621762
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
17631763
{
1764-
FlexibleMessageBox.Show(WindowTitle + "\nCopyright ©2006-2022, All Rights Reserved.\n\nTom Jackson:\tConcept, Initial Code, Compile to DLL\n\nDavid Issel:\tEffect UI Creation, Effect Icons, Effect Help\n\t\tSystem, File New Complex Pixel Flow Code\n\t\tGeneration, CodeLab Updater, Settings\n\t\tScreen, Bug Fixes), Tutorials and Installer.\n\nJason Wendt:\tMigration to ScintillaNET editor control,\n\t\t.NET 6.0, and the C# 9.0 \"Roslyn\" Compiler.\n\t\tIntelligent Assistance (including code\n\t\tcompletion, tips, snippets, and variable\n\t\tname suggestions), Debug Output, Dark\n\t\tTheme, HiDPI icons, Live Effect Preview,\n\t\tSpellcheck, Filetype plugin creation, and\n\t\tShape editing.\n\nJörg Reichert:\tFlexibleMessageBox", "About CodeLab", MessageBoxButtons.OK, MessageBoxIcon.Information);
1764+
FlexibleMessageBox.Show(WindowTitle + "\nCopyright ©2006-2023, All Rights Reserved.\n\nTom Jackson:\tConcept, Initial Code, Compile to DLL\n\nDavid Issel:\tEffect UI Creation, Effect Icons, Effect Help\n\t\tSystem, File New Complex Pixel Flow Code\n\t\tGeneration, CodeLab Updater, Settings\n\t\tScreen, Bug Fixes), Tutorials and Installer.\n\nJason Wendt:\tMigration to ScintillaNET editor control,\n\t\t.NET 6.0, and the C# 9.0 \"Roslyn\" Compiler.\n\t\tIntelligent Assistance (including code\n\t\tcompletion, tips, snippets, and variable\n\t\tname suggestions), Debug Output, Dark\n\t\tTheme, HiDPI icons, Live Effect Preview,\n\t\tSpellcheck, Filetype plugin creation, and\n\t\tShape editing.\n\nJörg Reichert:\tFlexibleMessageBox", "About CodeLab", MessageBoxButtons.OK, MessageBoxIcon.Information);
17651765
txtCode.Focus();
17661766
}
17671767
#endregion

0 commit comments

Comments
 (0)