Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates and fixes. #1029

Merged
merged 35 commits into from
Jul 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
23421d0
remove old ui
hendriksen-mark Jun 12, 2024
3ea4d8d
update page-404
hendriksen-mark Jun 12, 2024
db88ded
Merge branch 'diyhue:master' into master
hendriksen-mark Jun 13, 2024
df325bc
Update updateManager.py
hendriksen-mark Jun 13, 2024
9ab2adc
Update configHandler.py
hendriksen-mark Jun 13, 2024
4376f52
Update handlers.py
hendriksen-mark Jun 16, 2024
fd5c196
duplicate import
hendriksen-mark Jun 25, 2024
bb35730
clean up hue-emulator dir
hendriksen-mark Jun 25, 2024
0af9893
clean up update process
hendriksen-mark Jun 25, 2024
3dbf246
Update updater
hendriksen-mark Jun 25, 2024
71fcc0e
Update docker-release.yml
hendriksen-mark Jun 26, 2024
980802f
Update docker-release.yml
hendriksen-mark Jun 26, 2024
7d281ad
Update docker-release.yml
hendriksen-mark Jun 26, 2024
0e599cc
Update docker-release.yml
hendriksen-mark Jun 26, 2024
0d64950
Update docker-release.yml
hendriksen-mark Jun 26, 2024
d696205
Update docker-release.yml
hendriksen-mark Jun 26, 2024
cd9922a
Update docker-release.yml
hendriksen-mark Jun 26, 2024
eb4aca1
Update docker-release.yml
hendriksen-mark Jun 26, 2024
e4c005a
Update docker-release.yml
hendriksen-mark Jun 26, 2024
112ddf8
Update docker-release.yml
hendriksen-mark Jun 26, 2024
0d2024f
Update docker-release.yml
hendriksen-mark Jun 29, 2024
c133992
Update docker-release.yml
hendriksen-mark Jun 29, 2024
7eeca43
Allow name change v2api
hendriksen-mark Jul 22, 2024
88f523c
add line number to logger
hendriksen-mark Jul 22, 2024
ea5e311
Add try for no connection to internet
hendriksen-mark Jul 22, 2024
0f68322
save config after name change
hendriksen-mark Jul 22, 2024
f2aa1fc
Add time zone arg to config init
hendriksen-mark Jul 23, 2024
6a5f8e5
Update restful.py
hendriksen-mark Jul 24, 2024
84097b2
Update configHandler.py
hendriksen-mark Jul 24, 2024
89076cc
Update configHandler.py
hendriksen-mark Jul 24, 2024
3dd2d3d
Update configHandler.py
hendriksen-mark Jul 24, 2024
dfe666c
Update install.sh
hendriksen-mark Jul 27, 2024
56d5ea5
add more time zones
hendriksen-mark Jul 27, 2024
a505027
sw update
hendriksen-mark Jul 27, 2024
5ee0a89
remove ui download sh
hendriksen-mark Jul 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update restful.py
hendriksen-mark committed Jul 24, 2024
commit 6a5f8e572c80df535cc0263bf218b5e433b0010a
2 changes: 1 addition & 1 deletion BridgeEmulator/flaskUI/restful.py
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ def buildConfig():
result = staticConfig()
config = bridgeConfig["config"]
result.update({"Hue Essentials key": config["Hue Essentials key"], "Remote API enabled": config["Remote API enabled"], "apiversion": config["apiversion"], "bridgeid": config["bridgeid"],
"ipaddress": config["ipaddress"], "netmask": config["netmask"], "gateway": config["gateway"], "mac": config["mac"], "name": config["name"], "swversion": config["swversion"], "swupdate2": config["swupdate2"], "timezone": config["timezone"]})
"ipaddress": config["ipaddress"], "netmask": config["netmask"], "gateway": config["gateway"], "mac": config["mac"], "name": config["name"], "swversion": config["swversion"], "swupdate2": config["swupdate2"], "timezone": config["timezone"], "discovery": config["discovery"]})
result["UTC"] = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S")
result["localtime"] = datetime.now().strftime("%Y-%m-%dT%H:%M:%S")
result["whitelist"] = {}