Skip to content

Releases: team5499/forest

Nested Variable Naming

18 Feb 01:36
5096e6b
Compare
Choose a tag to compare

DashboardVar will name properties based on nested objects. For instance, with the following class, the dashboard will have a variable called Constants.PROPS and another called Constants.Nested.PROPS.

object Constants {
    
    fun initProps() {
        DashboardVar.initClassProps(Constants::class)
    }

    public var PROP by DashboardVar(2.0)
    object Nested {
        public var PROP by DashboardVar(3.0)
    }
}

Persistent Widget Configs

18 Feb 01:31
Compare
Choose a tag to compare

When the settings of a widget are changed, they are updated on the server.

No more IDs

18 Feb 00:52
f3501fe
Compare
Choose a tag to compare

We shouldn't use IDs with react. Apart from Bootstrap specific things, IDs are no longer used

Fix casting error

12 Feb 05:37
976a721
Compare
Choose a tag to compare
Fix issue with casting (#56)

* Fix issue with casting

* Update version

Add PIDF and PID widgets

12 Feb 04:00
Compare
Choose a tag to compare
Dev/pid widget (#15)

* Added PID widget

* Added PID widget

* Fix formatting issue

* Fixed placeholder values for var inputs

* PIDF widget editing owkrs

* Add PID widget

* Version change

Javadoc generation

06 Feb 23:45
7ba3066
Compare
Choose a tag to compare

Javadoc is now generated for each release.

Use import statements with javascript

06 Feb 23:20
7bd8576
Compare
Choose a tag to compare
Dev/import statements (#39)

* Add dev file location for static files

* Add renderWithJinjava function without dev mode

* Add dev reload feature

* Fix MIME types for javascript files

* Figured out how to use jsx and modules side by side

* Current setup works with import statements

* Update version

Fix for lingering closed websocket sessions

06 Feb 23:15
8939f28
Compare
Choose a tag to compare
Fix issue with closed websocket sessions not being registered (#21)

* Fix issue with closed websocket sessions not being registered

* Update version

Add key parameter to variable change callbacks

06 Feb 23:06
bc4bba2
Compare
Choose a tag to compare
Add key parameter to variable change callbacks (#35)

* Add key parameter to variable change callbacks

* Update version

Fix positioning of broadcast thread

06 Feb 23:00
92ff2cd
Compare
Choose a tag to compare
Move broadcast interval to onopen function (#34)

* Move broadcast interval to onopen function

* Update version