Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
toggledbits committed Sep 19, 2020
1 parent 18a97bc commit 9218a1a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ NOTE TO OPENLUUP USERS: All current versions of Reactor REQUIRE openLuup 2020.04

**DEPRECATION NOTICE:** The expression functions `arraypush()`, `arraypop()`, `arrayunshift()` and `arrayshift()` have been made first-class functions in the LuaXP module under the names `push()`, `pop()`, `unshift()` and `shift()` respectively. The `array...()` versions are now deprecated, and will be removed from a future release. Please convert to the new functions, which for all practical purposes are identical (so you just need to change the names in your expressions and it's done).

## Version 3.8 (RC1-20262)
## Version 3.8 (20262)

* Enhancement: The functions `b64()` and `unb64()` are now available in expressions to (respectively) Base64 encode and decode a string.
* Fix: fix delay computation when using TestTime for certain date conditions and condition options.
Expand Down
2 changes: 1 addition & 1 deletion J_ReactorSensor_UI7.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var ReactorSensor = (function(api, $) {
/* unique identifier for this plugin... */
var uuid = '21b5725a-6dcd-11e8-8342-74d4351650de';

var pluginVersion = '3.8RC1-20262';
var pluginVersion = '3.8-20262';

var DEVINFO_MINSERIAL = 482;

Expand Down
4 changes: 2 additions & 2 deletions J_Reactor_UI7.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var Reactor = (function(api, $) {
/* unique identifier for this plugin... */
var uuid = '72acc6ea-f24d-11e8-bd87-74d4351650de';

var pluginVersion = '3.8RC1-20262';
var pluginVersion = '3.8-20262';

var _UIVERSION = 20190; /* must coincide with Lua core */

Expand Down Expand Up @@ -108,7 +108,7 @@ var Reactor = (function(api, $) {
var html = '';
html += '<div class="clearfix">';
html += '<div id="tbbegging"><em>Find Reactor useful?</em> Please consider a small one-time donation to support this and my other plugins on <a href="https://www.toggledbits.com/donate" target="_blank">my web site</a>. I am grateful for any support you choose to give!</div>';
html += '<div id="tbcopyright">Reactor ver ' + pluginVersion + ' &copy; 2018,2019 <a href="https://www.toggledbits.com/" target="_blank">Patrick H. Rigney</a>,' +
html += '<div id="tbcopyright">Reactor ver ' + pluginVersion + ' &copy; 2018,2019,2020 <a href="https://www.toggledbits.com/" target="_blank">Patrick H. Rigney</a>,' +
' All Rights Reserved. Please check out the <a href="' + _DOCURL + '" target="_blank">online documentation</a>' +
' and <a href="https://community.getvera.com/c/plugins-amp-plugin-development/reactor" target="_blank">Vera Community Forum</a> for support. Double-ring spinner by <a href="https://loading.io/spinner/double-ring" target="_blank">loading.io</a>.</div>';
html += '<div id="supportlinks">Support links: ' +
Expand Down
2 changes: 1 addition & 1 deletion L_Reactor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ local debugMode = false

local _PLUGIN_ID = 9086
local _PLUGIN_NAME = "Reactor"
local _PLUGIN_VERSION = "3.8RC1-20262"
local _PLUGIN_VERSION = "3.8-20262"
local _PLUGIN_URL = "https://www.toggledbits.com/reactor"
local _DOC_URL = "https://www.toggledbits.com/static/reactor/docs/3.6/"

Expand Down

0 comments on commit 9218a1a

Please sign in to comment.