diff --git a/docs/2022-10-23.md b/docs/2022-10-23.md new file mode 100644 index 0000000..92df6d6 --- /dev/null +++ b/docs/2022-10-23.md @@ -0,0 +1,15 @@ +--- +permalink: /2022/10/23/ +--- +{% for post in site.posts %} + {% assign currentdate = post.date | date: "%Y %m %d" %} + {% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %} + {% if currentdate != "2022 10 23" %} + {% continue %} + {% endif %} + {% if currentdate != date %} +## {{friendlydate}} + {% assign date = currentdate %} + {% endif %} +* [ {{ post.title }} ]( {{ post.url }} ) +{% endfor %} diff --git a/docs/_posts/2022-10-23-Eventful-0.1.7.md b/docs/_posts/2022-10-23-Eventful-0.1.7.md new file mode 100644 index 0000000..6eca472 --- /dev/null +++ b/docs/_posts/2022-10-23-Eventful-0.1.7.md @@ -0,0 +1,69 @@ +--- + +title: Eventful 0.1.7 +sourceURL: https://github.com/StartAutomating/Eventful/releases/tag/v0.1.7 +tag: release +--- +## 0.1.7 +* Adding On@CommandNotFound event source (Fixes #11) +* Watch-Event now allows eventsources -recursively (Fixes #15) + +--- + +## 0.1.6 +* Adding LocationChanged event source (Fixes #12) + +--- + +## 0.1.5 +* Adding On@Event (#2) +* Send-Event support for piping existing events (#4) +* Adding /docs (#5) + +--- + +## 0.1.4 + +* Module Rebranded to Eventful. +* Get-EventHandler added + +--- + +## 0.1.3 +New Event Source: +* VariableSet + +Receive-Event now returns event most-recent to least-recent. +Receive-Event now has -First and -Skip. + +Bugfix: On@Repeat now actually starts it's timer. + +--- + +## 0.1.2 +New Event Source: +* UDP + +PowerShellAsync Event Source now allows for a -Parameter dictionaries. + +--- + +## 0.1.1 +New Event Sources: +* HTTPResponse +* PowerShellAsync + +--- + +New Event Source Capabilities: + +Event Sources can now return an InitializeEvent property or provide a ComponentModel.InitializationEvent attribute. +This will be called directly after the subscription is created, so as to avoid signalling too soon. + +## 0.1 +Initial Module Release. + +Fun simple event syntax (e.g. on mysignal {"do this"} or on delay "00:00:01" {"do that"}) +Better pipelining support for Sending events. + +---