diff --git a/CHANGELOG.md b/CHANGELOG.md index a7e13172..c6973138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,17 @@ # Changelog - ## Next version -[Full Changelog](https://github.com/dennis/slipstream/compare/v0.8.0...main) +[Full Changelog](https://github.com/dennis/slipstream/compare/v0.9.0...main) + +## [0.9.0](https://github.com/dennis/slipstream/releases/tag/v0.9.0) (2021-08-21) +[Full Changelog](https://github.com/dennis/slipstream/compare/v0.8.0...v0.9.0) - WinFormUI: Reworked UI. Now allows you to see scripts and which instances they use. And many other small tweaks - Removed empty menu "Plugins" - Lua: Added some lua code to make it possible to pick up events with the following code: ```lua - addEventHandler("InternalDependencyAdded", function(event) - -- Example event: {"EventType":"InternalDependencyAdded","Envelope":{"Sender":"Scripts\\simple.lua","Recipients":null,"Uptime":25020},"LuaLibrary":"api/lua","InstanceId":"Scripts\\simple.lua","DependsOn":"winformui"} - ui:print(util:event_to_json(event)) +addEventHandler("InternalDependencyAdded", function(event) + -- Example event: {"EventType":"InternalDependencyAdded", ... + ui:print(util:event_to_json(event)) end) ``` It will setup a `handle()` function for you that wires it up. diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 68f07d37..4633471c 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // 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("0.8.0")] -[assembly: AssemblyFileVersion("0.8.0")] +[assembly: AssemblyVersion("0.9.0")] +[assembly: AssemblyFileVersion("0.9.0")] [assembly: InternalsVisibleTo("Slipstream.UnitTests")] \ No newline at end of file