Skip to content

Commit 84a2feb

Browse files
Version bump
1 parent 86e9e67 commit 84a2feb

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

Chromatics/Chromatics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>net8.0-windows7.0</TargetFramework>
66
<UseWindowsForms>true</UseWindowsForms>
77
<StartupObject>Chromatics.Program</StartupObject>
8-
<Version>3.1.4.1</Version>
8+
<Version>3.1.4.2</Version>
99
<Authors>Danielle Thompson</Authors>
1010
<ApplicationManifest>app.manifest</ApplicationManifest>
1111
<Copyright>Danielle Thompson 2024</Copyright>

Chromatics/Core/GameController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ private static void GameProcessLayers()
423423
#endif
424424

425425
_layerProcessorFactory.DisposeAll();
426+
GC.Collect();
426427

427428
_onTitle = true;
428429
wasPreviewed = false;

Chromatics/Forms/Uc_Mappings.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,11 @@ protected override void Dispose(bool disposing)
7777
layer.btn_copy.Click -= OnCopyButtonPressed;
7878
}
7979

80-
keyController.KeyDown -= Kh_KeyDown;
81-
keyController.KeyUp -= Kh_KeyUp;
80+
if (keyController != null)
81+
{
82+
keyController.KeyDown -= Kh_KeyDown;
83+
keyController.KeyUp -= Kh_KeyUp;
84+
}
8285

8386
tt_mappings?.Dispose();
8487
}

Chromatics/obj/Chromatics.csproj.nuget.dgspec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"projects": {
77
"D:\\Git Projects\\roxaskeyheart\\Chromatics Workbench\\Chromatics-3.x\\Chromatics\\Chromatics.csproj": {
8-
"version": "3.1.4.1",
8+
"version": "3.1.4.2",
99
"restore": {
1010
"projectUniqueName": "D:\\Git Projects\\roxaskeyheart\\Chromatics Workbench\\Chromatics-3.x\\Chromatics\\Chromatics.csproj",
1111
"projectName": "Chromatics",

Chromatics/obj/project.assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5040,7 +5040,7 @@
50405040
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
50415041
},
50425042
"project": {
5043-
"version": "3.1.4.1",
5043+
"version": "3.1.4.2",
50445044
"restore": {
50455045
"projectUniqueName": "D:\\Git Projects\\roxaskeyheart\\Chromatics Workbench\\Chromatics-3.x\\Chromatics\\Chromatics.csproj",
50465046
"projectName": "Chromatics",

0 commit comments

Comments
 (0)