Skip to content

Releases: mpaperno/DSEP4TP

v1.2.0-beta1

20 Feb 15:50
3575e7f
Compare
Choose a tag to compare

v1.2.0 - The New Paradigm, and "On Hold" activation options

Changes since v1.1.0.1

This version bring a number of fundamental changes, all of which hopefully make the system more flexible overall.
I've preserved backwards compatibility with actions/connectors from the previous versions, except in the case of the "One-Time"
action (details below). I encourage everyone to update to the new versions of the actions/connectors, but please
do let me know if you find "regression" issues which break existing actions/connectors. An update to the new version is meant to be
as seamless as possible.

Plugin Core

  • New paradigm decouples "Script" (Expression/File/Module) instances from Engine instances and from Touch Portal States:
    • Creating a Touch Portal State for each named Script instance is now optional.
      Consequently, the "State Name" field for each action has been renamed to "Instance Name."
    • Private Engine instances can now be independent from Script instances; they become their own named entities which can be re-used.
    • Script instances can be run in any existing Private Engine instances (or create their own, or run in Shared engine, as before).
    • Engine instances now "own" the system thread they (and all associated Scripts) run in.
  • Added support for using Actions in "On Hold" Touch Portal button setup, with multiple behavior options:
    • Activation options: On Press and/or On Release, Press and Repeat, Repeat After Delay.
    • Repeat delay and rate (interval) are controllable at both global default and per-instance levels.
    • Current repeat delay, rate, and maximum number of repeats can be set via instance properties.
  • Script instance properties and methods are now available in the JavaScript environment, allowing extended code-level functionality and customization (details below).
  • Scripts can now keep data in persistent storage which is saved and restored at plugin startup (for example to preserve state/settings between sessions).
  • Any Script Instance can now be set to "temporary persistence" and deleted automatically after a delay. This removes the need for a separate "one-time" action.
  • Added a plugin Setting to load/run a script file at plugin startup.
  • Added stack trace logging for unhandled script exceptions.
  • Added command-line switch to specify the Touch Portal Plugin ID to use in all communications (for advanced usage with custom entry.tp configuration).
  • Fixed/removed automatic replacement of spaces with underscores in Touch Portal State names/IDs.
  • Fixed all saved instances being removed if plugin is started w/out available Touch Portal host.
  • The "Shared" Engine instance now runs in its own system thread so as not to impact core plugin functions.
  • The Touch Portal network client (responsible for core communications) has also been moved to its own thread.
  • Miscellaneous optimizations, cleanups, and stability improvements.

Changes to Actions/Connectors

  • Added "Create State" option to each of the primary Script actions (Expression/File/Module). This is now also where the State's default value type is set.
  • Added "Instance Persistence" option which controls if a Script instance only exists for the current session, is saved at shutdown and loaded at startup, or is temporary (replaces "One-Time" action).
    • REMOVED: the "Anonymous (One-Time) Script" action (redundant with the more flexible new system).
      Unfortunately, due to internal changes, backwards compatibility could not be preserved in this one case.
  • Script Instances can now use any existing Engine instance (eg. created by another Script) in addition to Shared and Private engine types as previously;
    • Selecting the "Private" choice effectively creates a new private Engine with the same name as the Script. This reproduces the previous behavior.
  • Added "On Hold" option to each Script action type which controls when exactly Script evaluation happens if an Action is used in "On Hold" button setup tab.
  • The "Update Existing Instance" action/connector:
    • Now uses a choice list to select an existing Script instance to update (instead of having to type one in).
    • Can run an expression in a "Shared Default" instance which evaluates in the Shared engine scope but independent of any specific named Script instance (and does not create a Touch Portal State).
  • Renamed "Plugin Actions" to "Instance Control Actions" and:
    • Resets are now performed on named Engine instances, not Script Instances (this matters if multiple scripts share the same engine).
    • Added option to Delete Engine Instance(s).
    • Added options to Save, Load, and Remove Script Instance data to/from persistent storage.
    • DEPRECATED: "Set State Value" option;
      Existing instances will continue to work for now but cannot be edited; Support will be fully removed in the next major version;
  • Added "Set Held Action Repeat Rate/Delay" action & connector to set/adjust repeat rate/delay at both global default and instance-specific levels.

New States/Event

  • Added "Plugin running state" (stopped/starting/started) Touch Portal State and Event;
  • Added "Default held action Repeat Delay" and "Default held action Repeat Rate" States;

Documentation

JavaScript Library

Please see the full CHANGELOG on the DSE site,
which has better formatting and links to related documentation.


The plugin is fully documented at https://dse.tpp.max.paperno.us/

Please report any issues or let me know if you have any questions or requests here on GitHub or over on my Discord server.

All feedback and input is always welcome! I'd love to know how you're using DSEP!

v1.1.0.1-beta1

05 Jan 13:59
e905917
Compare
Choose a tag to compare

v1.1 series initial beta

Changes since v1.0.0.3

  • Added Connector (Slider) counterparts for most of the plugin's existing Actions (except "Load Script").
  • Added Connector/Slider instance tracking database for managing mapping and lookups of "short" connector IDs (for sending updates back to Touch Portal).
  • Added new State to reflect current system user's Touch Portal settings directory path (workaround until TP v3.2 adds native values for that).
  • Added new State: "Name of Page currently active on TP device."
  • Touch Portal API:
    • Added methods and an event for Connector ID lookup/search/tracking, eg. for sending Slider position updates to Touch Portal.
    • Added Touch Portal "broadcast" message event passthrough (eg. to notify scripts when user navigates to a new page).
    • Added TP.currentPageName() lookup function.
  • JavaScript Library:
    • Added String.appendLine() and String.getLines() functions (both static and prototype).
    • Added DSE.TP_USER_DATA_PATH property (current system user's Touch Portal settings directory), DSE.TP_VERSION_CODE and DSE.TP_VERSION_STR.
  • Documentation & Examples:
    • Moved Touch Portal API references into their own category.
    • Added documentation for new Touch Portal API functions/features.
    • New v3 of Color Picker example page and script, using new "native" connector/slider functionality and adding some more features.
    • Other minor updates and clarifications.

The plugin is fully documented at https://dse.tpp.max.paperno.us/

Please report any issues or let me know if you have any questions or requests here on GitHub or in our Discord room.

Thanks for downloading!

v1.0.0.3

05 Jan 13:56
b963239
Compare
Choose a tag to compare

Fixes for v1.0 beta, and final release of v1.0 series.

Changes since 1.0.0.2-beta2:

  • Fix evaluation at startup of default value expressions for saved states when the default type was set to "use action's expression" and the default value field was left blank.
  • Fix "Anonymous (One-Shot)" type script instances not being properly deleted after finishing.
  • Touch Portal API:
    • Set default showNotification() option name to a minimal required empty space character instead of "Dismiss" prompt which doesn't actually do anything anyway.

The plugin is fully documented at https://dse.tpp.max.paperno.us/

Please report any issues or let me know if you have any questions or requests here on GitHub or in our Discord room.

Thanks for downloading!

v1.0.0.2-beta2

28 Dec 09:41
2bfc9fb
Compare
Choose a tag to compare

This is an update with some fixes to the initial v1.0.0.1 release. Changes are documented in the CHANGELOG.md

The plugin is fully documented at https://dse.tpp.max.paperno.us/

Please report any issues or let me know if you have any questions or requests here on GitHub or in our Discord room.

Thanks for downloading!

Initial release v1.0.0.1-beta1

27 Dec 01:52
81fc00e
Compare
Choose a tag to compare

Initial release of Dynamic Script Engine for Touch Portal!

The plugin is fully documented at https://dse.tpp.max.paperno.us/

Please report any issues or let me know if you have any questions or requests here on GitHub or in our Discord room.

Thanks for downloading!