Skip to content

Commit

Permalink
bump version v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis committed Aug 20, 2021
1 parent b6eb04e commit a2bdaf2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit a2bdaf2

Please sign in to comment.