Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/2022-10-23.md
Original file line number Diff line number Diff line change
@@ -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 %}
69 changes: 69 additions & 0 deletions docs/_posts/2022-10-23-Eventful-0.1.7.md
Original file line number Diff line number Diff line change
@@ -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.

---