Skip to content

Commit

Permalink
Merge pull request #97 from firstof9/condense-sensor
Browse files Browse the repository at this point in the history
Condense sensor
  • Loading branch information
firstof9 authored Apr 15, 2020
2 parents 900d2e6 + c0e1359 commit e932d62
Show file tree
Hide file tree
Showing 3 changed files with 236 additions and 865 deletions.
6 changes: 4 additions & 2 deletions custom_components/mail_and_packages/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ async def _show_config_2(self, user_input):
data_schema = OrderedDict()
data_schema[vol.Required("folder",
default=folder)] = vol.In(mailboxes)
data_schema[vol.Optional("image_security", default=image_security)] = bool
data_schema[vol.Optional("image_security",
default=image_security)] = bool
data_schema[vol.Optional("gif_duration",
default=gif_duration)] = vol.Coerce(int)
data_schema[vol.Optional("scan_interval",
Expand Down Expand Up @@ -298,7 +299,8 @@ async def _show_step_options_2(self, user_input):
data_schema = OrderedDict()
data_schema[vol.Required("folder",
default=folder)] = vol.In(mailboxes)
data_schema[vol.Optional("image_security", default=image_security)] = bool
data_schema[vol.Optional("image_security",
default=image_security)] = bool
data_schema[vol.Optional("gif_duration",
default=gif_duration)] = vol.Coerce(int)
data_schema[vol.Optional("scan_interval",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/mail_and_packages/const.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DOMAIN = "mail_and_packages"
VERSION = "0.1.5"
VERSION = "0.2.0-b1"
ISSUE_URL = "http://github.com/moralmunky/Home-Assistant-Mail-And-Packages"

CONF_FOLDER = "folder"
Expand Down
Loading

0 comments on commit e932d62

Please sign in to comment.