Skip to content

Commit 947cc26

Browse files
committed
Fix config UI in dark mode
1 parent 4f3706b commit 947cc26

4 files changed

Lines changed: 12 additions & 36 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,6 @@
22

33
All notable changes to homebridge-dummy will be documented in this file.
44

5-
## 1.0.0-beta.4 (2025-07-03)
5+
## 1.0.0 (2025-07-14)
66

7-
_RELEASE CANDIDATE_
8-
9-
### Changed
10-
- Force cache miss for ui.js on version update
11-
- Use explicit identifier from config to allow for name changes
12-
13-
## 1.0.0-beta.3 (2025-07-01)
14-
15-
### Changed
16-
- Current lock state is always set by MQTT
17-
- Enum names in config are translateable
18-
19-
## 1.0.0-beta.2 (2025-06-26)
20-
21-
### Fixed
22-
- State issues in LockMechanism
23-
24-
## 1.0.0-beta.1 (2025-06-26)
25-
26-
### ⚠️ BREAKING
27-
- Several topics were renamed for consistency so some accessories may have to be reconfigured
28-
29-
### Added
30-
- Username/password can now be set in the UI or supplied via config
31-
- Outlet accessory type
32-
33-
### Fixed
34-
- Unnecessary idle timer in mqtt library
35-
36-
## 1.0.0-beta.0 (2025-06-25)
37-
38-
- Initial beta release
7+
- First public release

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Homebridge Easy MQTT",
55
"description": "Homebridge plugin for easy control of MQTT devices",
66
"type": "module",
7-
"version": "1.0.0-beta.4",
7+
"version": "1.0.0",
88
"homepage": "https://github.com/mpatfield/homebridge-easy-mqtt#readme",
99
"repository": {
1010
"type": "git",

src/homebridge-ui/public/index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<style>
2+
.dark-mode {
3+
background-color: #242424;
4+
color: lightgrey;
5+
}
6+
</style>
7+
18
<!-- <p class="text-center">
29
<img
310
src="https://github.com/mpatfield/homebridge-easy-mqtt/blob/latest/img/banner.png?raw=true"

0 commit comments

Comments
 (0)