diff --git a/build/Version.props b/build/Version.props
index 61ce004864..def75d17ca 100644
--- a/build/Version.props
+++ b/build/Version.props
@@ -3,7 +3,7 @@
- 6.0.1
+ 6.1.0
5.0.0
10.0.0
7.0.0
diff --git a/build/WebpanelVersion.props b/build/WebpanelVersion.props
index 8b9090a805..5b674b1734 100644
--- a/build/WebpanelVersion.props
+++ b/build/WebpanelVersion.props
@@ -1,6 +1,6 @@
- 5.3.0
+ 5.4.2
diff --git a/src/Tgstation.Server.Host/Components/Engine/EngineManager.cs b/src/Tgstation.Server.Host/Components/Engine/EngineManager.cs
index 529eec0fb8..00290840f0 100644
--- a/src/Tgstation.Server.Host/Components/Engine/EngineManager.cs
+++ b/src/Tgstation.Server.Host/Components/Engine/EngineManager.cs
@@ -476,6 +476,8 @@ namespace Tgstation.Server.Host.Components.Engine
await InstallVersionFiles(progressReporter, version, customVersionStream, cancellationToken);
ourTcs.SetResult();
+
+ await eventConsumer.HandleEvent(EventType.EngineInstallComplete, new List { versionString }, false, cancellationToken);
}
catch (Exception ex)
{
diff --git a/src/Tgstation.Server.Host/Components/Events/EventType.cs b/src/Tgstation.Server.Host/Components/Events/EventType.cs
index fa8321c7e0..4872998c61 100644
--- a/src/Tgstation.Server.Host/Components/Events/EventType.cs
+++ b/src/Tgstation.Server.Host/Components/Events/EventType.cs
@@ -167,5 +167,11 @@
///
[EventScript("DeploymentActivation")]
DeploymentActivation,
+
+ ///
+ /// Parameters: Version being installed.
+ ///
+ [EventScript("EngineInstallComplete")]
+ EngineInstallComplete,
}
}
diff --git a/src/Tgstation.Server.Host/Properties/launchSettings.json b/src/Tgstation.Server.Host/Properties/launchSettings.json
index b93f29050d..9f38c2657e 100644
--- a/src/Tgstation.Server.Host/Properties/launchSettings.json
+++ b/src/Tgstation.Server.Host/Properties/launchSettings.json
@@ -13,7 +13,6 @@
"environmentVariables": {
"DOTNET_ENVIRONMENT": "Development",
"ASPNETCORE_ENVIRONMENT": "Development",
- "Database__ConnectionString": "Data Source=192.168.2.16,1433;Initial Catalog=TGS_Linux;User Id=tgs_debug;Password=asdf;Encrypt=False;Application Name=tgstation-server",
"General__ValidInstancePaths__0": "/home/dominion/tgs_debug_pen"
}
}