Skip to content

Commit

Permalink
3.6.0 beta changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dwainscheeren committed Oct 24, 2023
1 parent 1ce1901 commit 6b33913
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion custom_components/dwains_dashboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def websocket_get_configuration(
for subdir in os.listdir(hass.config.path("dwains-dashboard/configs/cards/areas")):
#_LOGGER.warning(subdir) #Subdir name
area_cards[subdir] = {}
for fname in os.listdir(hass.config.path("dwains-dashboard/configs/cards/areas/"+subdir)):
for fname in sorted(os.listdir(hass.config.path("dwains-dashboard/configs/cards/areas/"+subdir))):
if fname.endswith('.yaml'):
#_LOGGER.warning(fname) #Card filename
with open(hass.config.path("dwains-dashboard/configs/cards/areas/"+subdir+"/"+fname)) as f:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/dwains_dashboard/const.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
DOMAIN = "dwains_dashboard"
VERSION = "3.5.0"
VERSION = "3.6.0"
Empty file modified custom_components/dwains_dashboard/js/.gitignore
100644 → 100755
Empty file.
6 changes: 3 additions & 3 deletions custom_components/dwains_dashboard/js/dwains-dashboard.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions custom_components/dwains_dashboard/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion custom_components/dwains_dashboard/js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dwains-dashboard",
"private": true,
"version": "3.5.0",
"version": "3.6.0",
"description": "dwains-dashboard",
"scripts": {
"build": "webpack --mode=production",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/dwains_dashboard/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"dependencies": ["lovelace", "http", "frontend"],
"codeowners": ["@dwainscheeren"],
"config_flow": true,
"version": "3.5.0",
"version": "3.6.0",
"iot_class": "calculated"
}

0 comments on commit 6b33913

Please sign in to comment.