diff --git a/docs/2022-10-31.md b/docs/2022-10-31.md new file mode 100644 index 0000000..a7cca73 --- /dev/null +++ b/docs/2022-10-31.md @@ -0,0 +1,15 @@ +--- +permalink: /2022/10/31/ +--- +{% 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 31" %} + {% continue %} + {% endif %} + {% if currentdate != date %} +## {{friendlydate}} + {% assign date = currentdate %} + {% endif %} +* [ {{ post.title }} ]( {{ post.url }} ) +{% endfor %} diff --git a/docs/2022-11-01.md b/docs/2022-11-01.md new file mode 100644 index 0000000..40d6ebe --- /dev/null +++ b/docs/2022-11-01.md @@ -0,0 +1,15 @@ +--- +permalink: /2022/11/01/ +--- +{% for post in site.posts %} + {% assign currentdate = post.date | date: "%Y %m %d" %} + {% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %} + {% if currentdate != "2022 11 01" %} + {% continue %} + {% endif %} + {% if currentdate != date %} +## {{friendlydate}} + {% assign date = currentdate %} + {% endif %} +* [ {{ post.title }} ]( {{ post.url }} ) +{% endfor %} diff --git a/docs/2022-11.md b/docs/2022-11.md new file mode 100644 index 0000000..d1c9920 --- /dev/null +++ b/docs/2022-11.md @@ -0,0 +1,17 @@ +--- +permalink: /2022/11/ +--- +{% assign currentYearMonth = "2022 11" %} +{% for post in site.posts %} + {% assign postYear = post.date | date: "%Y" %} + {% assign postYearMonth = post.date | date: "%B [%Y](..)" %} + {% assign postYM = post.date | date: "%Y %m" %} + {% if postYM != currentYearMonth %} + {% continue %} + {% endif %} + {% if hasDisplayedYearMonth != postYearMonth %} +## {{postYearMonth}} + {% endif %} + {% assign hasDisplayedYearMonth = postYearMonth %} +* [ {{ post.title }} ]( {{ post.url }} ) +{% endfor %} diff --git a/docs/_posts/2022-11-01-LightScript-0.2.8.md b/docs/_posts/2022-11-01-LightScript-0.2.8.md new file mode 100644 index 0000000..3b8bed9 --- /dev/null +++ b/docs/_posts/2022-11-01-LightScript-0.2.8.md @@ -0,0 +1,98 @@ +--- + +title: LightScript 0.2.8 +sourceURL: https://github.com/StartAutomating/LightScript/releases/tag/v0.2.8 +tag: release +--- +## 0.2.8: + +* Watch-HueSensor! (Fixes [#58](https://github.com/StartAutomating/LightScript/issues/58)) +* Pixoo Improvements: + * Set-Pixoo -Beep (Fixes [#57](https://github.com/StartAutomating/LightScript/issues/57)) + * Set-Pixoo -Mirror (Fixes [#49](https://github.com/StartAutomating/LightScript/issues/49)) + * Set-Pixoo -Hue/-Saturation/-Luminance Fix (Fixes [#56](https://github.com/StartAutomating/LightScript/issues/56)) + * Connect-Pixoo saves less information for better pipelining (Fixes [#56](https://github.com/StartAutomating/LightScript/issues/56)) + * Adding Formatting for Pixoo.Weather (Fixes [#59](https://github.com/StartAutomating/LightScript/issues/59)) +* LightScript.Color now supports daisy chaining (Fixes [#54](https://github.com/StartAutomating/LightScript/issues/54)) + +--- + +## 0.2.7: + +* Pixoo Improvements: + * Adding Find-Pixoo (Fixes [#46](https://github.com/StartAutomating/LightScript/issues/46)) + * Connect-Pixoo: Carrying on DeviceID (Fixes [#50](https://github.com/StartAutomating/LightScript/issues/50)) + * Get-Pixoo: Adding -Weather (Fixes [#51](https://github.com/StartAutomating/LightScript/issues/51)) + * Set-Pixoo: -Rotation (Fixes [#47](https://github.com/StartAutomating/LightScript/issues/47)) + * Set-Pixoo: Adding -Latitutde and -Longitude (Fixes [#48](https://github.com/StartAutomating/LightScript/issues/48)) + +--- + + +## 0.2.6: +* Set-NanoLeaf: + * Fixing -SaturationIncrement ([#35](https://github.com/StartAutomating/LightScript/issues/35)) + * Adding -BrightnessIncrement ([#34](https://github.com/StartAutomating/LightScript/issues/34)) + * Fixing -Hue/-Saturation/-Brightness behavior to allow increment parameters to work. ([#36](https://github.com/StartAutomating/LightScript/issues/36)) + * Making Parameter Aliases consistent with Set-HueLight ([#38](https://github.com/StartAutomating/LightScript/issues/38)) +* Now using [GitPub](https://github.com/StartAutomating/GitPub) to blog ([#37](https://github.com/StartAutomating/LightScript/issues/37)). + +--- + +## 0.2.5: +* Set-HueRule: Easier conditions (Fixes [#28](https://github.com/StartAutomating/LightScript/issues/28)) and plural aliases (Fixes [#31](https://github.com/StartAutomating/LightScript/issues/31)) +* Adding Rename-HueSensor (Fixes [#26](https://github.com/StartAutomating/LightScript/issues/26)). +* Rename-HueLight: Adding [Alias('ID')] to -OldName (Fixes [#27](https://github.com/StartAutomating/LightScript/issues/27)) +* Get-HueBridge: SupportShouldProcess (Fixes [#30](https://github.com/StartAutomating/LightScript/issues/30)) +* Set-HueLight: Fixing -Brightness/SaturationIncrement (Fixes [#29](https://github.com/StartAutomating/LightScript/issues/29)) +* Add-HueSensor: Adding -New (Fixes [#25](https://github.com/StartAutomating/LightScript/issues/25)) +* Improved Repository Organization (Fixes [#32](https://github.com/StartAutomating/LightScript/issues/32)) + +--- + +## 0.2.4.1: +* Adding help for Add-HueLight ([#23](https://github.com/StartAutomating/LightScript/issues/23)) +* Fixing other markdown documentation layout issues + +--- + +## 0.2.4: +* Adding Add-HueLight ([#18](https://github.com/StartAutomating/LightScript/issues/18)) +* Adding Get-HueLight -New ([#21](https://github.com/StartAutomating/LightScript/issues/21)) +* Fixing Rename-HueLight ([#19](https://github.com/StartAutomating/LightScript/issues/19)) +* Building LightScript with PipeScript ([#20](https://github.com/StartAutomating/LightScript/issues/20)) + +--- + +## 0.2.3: +* Set-NanoLeaf: Fixing [#17](https://github.com/StartAutomating/LightScript/issues/17) +* Send-HueBridge: Adding logging +* Automatically documentating module ([#13](https://github.com/StartAutomating/LightScript/issues/13)) +* Set-HueLight: + * Fixing Transition Time ([#12](https://github.com/StartAutomating/LightScript/issues/12)) + * Adding examples + * Fixing -Hue/-HueIncrement ([#15](https://github.com/StartAutomating/LightScript/issues/15)) + +--- + +## 0.2.2: +Adding KeyLight: Connect-KeyLight, Get-KeyLight, Set-KeyLight, Disconnect-KeyLight + +--- + +## 0.2.1: +* Set-NanoLeaf: Adding -EffectOption parameter help ([#9](https://github.com/StartAutomating/LightScript/issues/9)). Adding examples. +* Set-NanoLeaf: Fixing Brightness ([#7](https://github.com/StartAutomating/LightScript/issues/7)). Adding Tab Completion ([#8](https://github.com/StartAutomating/LightScript/issues/8)). Adding Examples + +--- + +## 0.2: +Adding: Disconnect-HueBridge, Disconnect-NanoLeaf, Disconnect-Twinkly ([#2](https://github.com/StartAutomating/LightScript/issues/2)) +Adding Pixoo commands: Connect/Disconnect/Get/Set-Pixoo ([#4](https://github.com/StartAutomating/LightScript/issues/4)) + +--- + +## 0.1: +Initial Release of LightScript: Smarter Lighting with PowerShell + +Script your Hue Bridge, NanoLeaf, or Twinkly lights. diff --git a/docs/rss.xml b/docs/rss.xml new file mode 100644 index 0000000..230c871 --- /dev/null +++ b/docs/rss.xml @@ -0,0 +1,32 @@ +--- +layout: null +--- + + + + {{ site.title | xml_escape }} + {{ site.description | xml_escape }} + {{ site.url }}{{ site.baseurl }}/ + + {{ site.time | date_to_rfc822 }} + {{ site.time | date_to_rfc822 }} + Jekyll v{{ jekyll.version }} + {% for post in site.posts limit:1000 %} + {% if post.sitemap != false %} + + {{ post.title | xml_escape }} + {{ post.content | xml_escape }} + {{ post.date | date_to_rfc822 }} + {{ post.url | prepend: site.baseurl | prepend: site.url }} + {{ post.url | prepend: site.baseurl | prepend: site.url }} + {% for tag in post.tags %} + {{ tag | xml_escape }} + {% endfor %} + {% for cat in post.categories %} + {{ cat | xml_escape }} + {% endfor %} + + {% endif %} + {% endfor %} + +