Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion apps/macos/Sources/WizApp/AppState.swift
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ final class AppState: ObservableObject {
private func startNetworkMonitor() {
pathMonitor.pathUpdateHandler = { [weak self] path in
// NWPathMonitor calls back on its own queue; AppState is main-actor isolated.
Task { @MainActor in self?.handlePathChange(path) }
Task { @MainActor [weak self] in self?.handlePathChange(path) }
}
pathMonitor.start(queue: DispatchQueue.global(qos: .utility))
}
Expand Down
2 changes: 1 addition & 1 deletion apps/macos/build/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.0</string>
<string>5.0.1</string>
<key>CFBundleVersion</key>
<string>18</string>
<key>CFBundleIconFile</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wiz-light-controller",
"version": "0.6.0",
"version": "5.0.1",
"private": true,
"description": "Fast, local, cloud-free controller for Philips WiZ lights — a modular JavaScript engine (reused by a CLI and a native macOS app via JavaScriptCore).",
"license": "GPL-3.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wiz-light-cli",
"version": "0.6.0",
"version": "5.0.1",
"description": "Fast, local, cloud-free command-line controller for Philips WiZ lights.",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/MegaManSec/wiz-light-controller#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wiz-light-core",
"version": "0.6.0",
"version": "5.0.1",
"description": "Local WiZ light engine: protocol, discovery, colour math, and persisted state. Zero runtime dependencies.",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/MegaManSec/wiz-light-controller#readme",
Expand Down