aboutsummaryrefslogtreecommitdiff
path: root/src/DillerDao.js
Commit message (Collapse)AuthorAgeFilesLines
* core:Trygve Laugstøl2016-03-061-2/+2
| | | | o Supporting aggregate levels of 'minute' and 'day' in addition to the existing 'hour'.
* web:Trygve Laugstøl2016-03-051-3/+43
| | | | | o Adding an API method to get per-hour aggregate values. Doesn't use the by_hour table yet. o Adding a simple line graph component that can graph a single property's value.
* core:Trygve Laugstøl2015-11-161-5/+81
| | | | | | o Adding device_status table containing the latest device status. mqtt: o Listening on $SYS/broker/log, parse out messages about clients connecting and disconnecting and store in database.
* web:Trygve Laugstøl2015-11-011-7/+0
| | | | o Publishing messages when the name/description is changed from the web.
* misc:Trygve Laugstøl2015-11-011-2/+19
| | | | o Playing around with type annotations.
* core:Trygve Laugstøl2015-11-011-7/+21
| | | | | | o Adding updates of device property's name and description. web: o Ading editing of property name and description.
* web:Trygve Laugstøl2015-10-311-1/+1
| | | | | o Showning device name and description. o Trying out cards for the property list.
* web:Trygve Laugstøl2015-10-311-1/+2
| | | | o Better form interaction: enter to submit and autofocus on the field.
* core/web:Trygve Laugstøl2015-10-311-3/+6
| | | | | o Adding last_timestamp o Showing last_value and last_timestamp for each property.
* core:Trygve Laugstøl2015-10-311-16/+14
| | | | | | o Improved transaction handling. web: o Supporting changing a device's name and description.
* web:Trygve Laugstøl2015-10-311-3/+30
| | | | o Starting on edit button for device name.
* core:Trygve Laugstøl2015-10-301-4/+4
| | | | o Using manyOrNone on SELECTs that can return an empty result set.
* web:Trygve Laugstøl2015-10-301-2/+2
| | | | | o Adding 'time ago' for each value. o Adding 'reload' button for a property.
* o Splitting the value field into value_numeric and value_text.Trygve Laugstøl2015-10-301-9/+10
|
* wipTrygve Laugstøl2015-10-251-4/+4
|
* o Adding a webapp.Trygve Laugstøl2015-10-201-12/+51
| | | | o Using di.js as dependency injection framework.
* o Adding aggregation tables.Trygve Laugstøl2015-10-191-2/+29
| | | | o Adding migration scripts for the schema.
* o Dropping the app concept.Trygve Laugstøl2015-10-181-0/+47
o Switching to pg-promise to not get overloaded by callbacks.