Skip to content

Releases: dxdc/homebridge-blinds

v2.0.1

08 Jul 15:18
2e0c514
Compare
Choose a tag to compare
  • Add show_favorite_buttons optional config parameter, which adds buttons to easily trigger specific positions.
"show_favorite_buttons": [1, 50]

v2.0.0

06 Jul 11:51
ca3acfb
Compare
Choose a tag to compare

BREAKING: Due to the overhaul of the configuration parameters, if you use config-ui-x, you will need to update your configuration parameters to see them properly in the web UI. Existing settings should still continue to function for the time being, however.

Simplify config / deprecate older parameters

Renamed Properties:

Old Property Name New Config Name
map_send_jsonata send_pos_jsonata
position_interval pos_poll_ms
position_jsonata pos_jsonata
position_url pos_url
response_lag response_lag_ms
success_codes http_success_codes

Deprecated Properties:

Old Property Name Status
up_url Replace string with url object
down_url Replace string with url object
stop_url Replace string with url object
http_method Part of new url object (method property)
http_options Part of new url object
max_http_attempts maxAttempts property in url object
retry_delay retryDelay property in url object
motion_down_time Replaced with motion_time_graph
motion_up_time Replaced with motion_time_graph

Support for motion time zones (#43, #70) in config, e.g.

    "motion_time_graph": {
        "up": [
            { "pos": 0, "seconds": 0 },
            { "pos": 1, "seconds": 9.25 },
            { "pos": 10, "seconds": 11.09 },
            { "pos": 99, "seconds": 24.72 },
            { "pos": 100, "seconds": 24.87 }
        ],
        "down": [
            { "pos": 100, "seconds": 0 },
            { "pos": 50, "seconds": 6.8 },
            { "pos": 1, "seconds": 15.35 },
            { "pos": 0, "seconds": 23.72 }
        ]
    },

v1.3.27

01 Jun 18:48
a6071b6
Compare
Choose a tag to compare
  • Fix bug for exactPositionUrl if object is provided #69
  • Update dependencies

v1.3.26

09 Feb 04:36
a2b55f1
Compare
Choose a tag to compare
  • Fix no - position_interval #65
  • Instructions for Bond Bridge Pro

v1.3.25

31 Oct 00:17
467a209
Compare
Choose a tag to compare
  • Add polling for position_url #55
  • Support for mapSendJsonata #59
  • "%%POSINT%%" replacement in body #63

v1.3.23

27 Dec 19:26
3ec1d1d
Compare
Choose a tag to compare
  • Ability to run command-line scripts (in addition to HTTP) #45
  • Update dependencies and documentation

v1.3.22

04 Jul 15:15
5b89894
Compare
Choose a tag to compare
  • Update config.schema.json #42 (with @slavikme)
  • Deprecate http_method in favor of http_options

NOTE: For the new config.schema.json to work properly, http_method should be updated to http_options in your config file. E.g.,

# ensure there are no other uses of http_method in your config.json first!
perl -pi -e 's/http_method/http_options/g' config.json

v1.3.21

01 Jul 23:24
1e120a2
Compare
Choose a tag to compare
  • Add an ability to define different times according to the moving direction of the blinds #41 (@slavikme)

v1.3.20

29 Apr 16:20
1054c5e
Compare
Choose a tag to compare
  • Optional fix for compatibility issue with Eve #32: unique serial number
  • Schema changes to support homebridge / verified

v1.3.19

15 Apr 13:43
9c3df86
Compare
Choose a tag to compare
  • Add simple backoff when using position_url if blinds position does not change (#31)