Skip to content

Commit

Permalink
HACS, changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aneisch committed Apr 11, 2024
1 parent 4b60550 commit f6b27ec
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
20 changes: 17 additions & 3 deletions custom_components/mail_and_packages/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

DOMAIN = "mail_and_packages"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "0.3.23"
VERSION = "0.3.25"
ISSUE_URL = "http://github.com/moralmunky/Home-Assistant-Mail-And-Packages"
PLATFORM = "sensor"
PLATFORMS = ["binary_sensor", "camera", "sensor"]
Expand Down Expand Up @@ -551,15 +551,23 @@
},
"intelcom_tracking": {"pattern": ["INTLCMD[0-9]{9}"]},
# Walmart
"walmart_delivering": {
"email": ["[email protected]"],
"subject": ["Out for delivery"],
},
"walmart_delivered": {
"email": ["[email protected]"],
"subject": ["Your order was delivered", "Some of your items were delivered"],
"subject": [
"Your order was delivered",
"Some of your items were delivered",
"Delivered:",
],
},
"walmart_exception": {
"email": ["[email protected]"],
"subject": ["delivery is delayed"],
},
"walmart_tracking": {"pattern": ["#[0-9]{7}-[0-9]{7}"]},
"walmart_tracking": {"pattern": ["#[0-9]{7}-[0-9]{7,8}"]},
# BuildingLink
"buildinglink_delivered": {
"email": ["[email protected]"],
Expand Down Expand Up @@ -998,6 +1006,12 @@
key="intelcom_packages",
),
# Walmart
"walmart_delivering": SensorEntityDescription(
name="Mail Walmart Delivering",
native_unit_of_measurement="package(s)",
icon="mdi:truck-delivery",
key="walmart_delivering",
),
"walmart_delivered": SensorEntityDescription(
name="Mail Walmart Delivered",
native_unit_of_measurement="package(s)",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/mail_and_packages/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"Pillow>=9.0",
"dateparser"
],
"version": "0.3.23"
"version": "0.3.25"
}
2 changes: 1 addition & 1 deletion extras/traefik/dynamic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ http:
theme: ghost
group: default
sablierUrl: http://sablier:10000
sessionDuration: 1m
sessionDuration: 5m

serversTransports:
skipVerify:
Expand Down

0 comments on commit f6b27ec

Please sign in to comment.