# Place custom user options here, e.g.: [OptionsClassName] Property1 = "text value" Property2 = 3.14 Property3 = true Property4 = [ 1, 2, 3 ] Property5.SubProperty = "something" # [McuManager.Heaters.powderChamber3] # IsEnabled = false # >>> Inova.ApiPlugin (managed by install.sh) >>> [Application.PluginAssemblies] "Inova.ApiPlugin" = "/home/ppak/SLS4All/Plugins/Inova.ApiPlugin/Inova.ApiPlugin.dll" [Application.PluginServices] "Inova.ApiPlugin" = { Implementation = "Inova.ApiPlugin.InovaApiPlugin, Inova.ApiPlugin", Registration = "AsImplementationAndInterfaces", Lifetime = "Singleton" } # Plugin replacements: # Inova.LoggingCodePlotter: decorates the firmware's closed-source # ImageCodePlotter so every ICodePlotter call is teed into a fan-out + # per-layer ring buffer (exposed via /plotter/commands/stream WS and # /plotter/layer/{n}/commands GET). # Inova.LoggingMovementClient: subclasses McuMovementClient to intercept # MoveXY/SetLaser. The slicer bypasses the DI ICodePlotter for per-command # writes and goes through IMovementClient for MCU access; intercepted # frames here feed the same /plotter/commands/stream fan-out. # See CompactServiceCollectionExtensions.cs:115 for how the replacement # mechanism is applied. [Application.PluginReplacements] "Inova.LoggingCodePlotter" = { Original = "SLS4All.Compact.Slicing.ImageCodePlotter, SLS4All.Compact.Processing", Replacement = "Inova.ApiPlugin.LoggingCodePlotter, Inova.ApiPlugin" } "Inova.LoggingMovementClient" = { Original = "SLS4All.Compact.Movement.McuMovementClient, SLS4All.Compact.McuClient", Replacement = "Inova.ApiPlugin.LoggingMovementClient, Inova.ApiPlugin" } # <<< Inova.ApiPlugin (managed by install.sh) <<<