Added code to automatically load in new plugins after they are installed.
Category: Lucid Scribe
Added line width and dash style configuration options to the plugin channel display settings.
Michael blogged about his project with OpenEEG from Olimex, he made dreams recorder http://lsdbase.org/2013/05/24/Open-Electroencephalography/ and he is able to communicate inside his dreams with morse code http://hackaday.com/2012/06/20/communicating-from-inside-your-dreams/ and record his blinks for further data analysis when wake up. How cool is this?
From MSDN:
In the .NET Framework version 3.5 and earlier versions, if you loaded an assembly from a remote location, the assembly would run partially trusted with a grant set that depended on the zone in which it was loaded. […] If you try to run that assembly in the .NET Framework version 4 and later versions, an exception is thrown; you must either explicitly create a sandbox for the assembly, or run it in full trust.
So I added the following to app.config to get it working again:
<configuration>
<runtime>
<loadFromRemoteSources enabled="true" />
</runtime>
</configuration>

