From 6321d1ae5b4600fb3fdb29666b55be2c71ca2117 Mon Sep 17 00:00:00 2001 From: bbbradsmith Date: Wed, 6 Nov 2024 14:47:22 -0500 Subject: [PATCH] ViewForm InitializeComponent must happen after setting binxelview_form. (InitializeComponent can cause a resize in some cases?) #30 --- Dialogs/ViewForm.cs | 2 +- Properties/AssemblyInfo.cs | 4 ++-- readme.txt | 4 ++++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Dialogs/ViewForm.cs b/Dialogs/ViewForm.cs index 4418905..fb61c51 100644 --- a/Dialogs/ViewForm.cs +++ b/Dialogs/ViewForm.cs @@ -15,8 +15,8 @@ public partial class ViewForm : Form public ViewForm(BinxelviewForm parent_form, ContextMenuStrip context_strip) { - InitializeComponent(); binxelview_form = parent_form; + InitializeComponent(); pixelBox.ContextMenuStrip = context_strip; } diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 0ce26c9..3469d38 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.6.5.0")] -[assembly: AssemblyFileVersion("1.6.5.0")] +[assembly: AssemblyVersion("1.6.6.0")] +[assembly: AssemblyFileVersion("1.6.6.0")] diff --git a/readme.txt b/readme.txt index c7ed403..edd8d19 100644 --- a/readme.txt +++ b/readme.txt @@ -280,6 +280,10 @@ a specific INI setup. Changes ------- +1.6.6.0 (unreleased beta) +- Add PDB to release package to assist debugging. +- Fix initialization crash. #30 + 1.6.5.0 (2024-10-26) - Option persistence, INI file save and load. - Command line arguments for options.