diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d0069a5..81194e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for FX507Z LED modes - Support for GL503V LED modes - Support the Rear Glow on some laptops +- Support for GV601VI LED modes +- Support most of M16 AniMe Matrix ### Changed - Move FX506HC to FX506H in arua DB to catch full series of this range - Move FX506LH to FX506L in arua DB to catch full series of this range -- Support for GV601VI LED modes - Rmeove notification handle tracking limit, fixes KDE issue with profile notif ## [v4.6.2] diff --git a/rog-platform/src/macros.rs b/rog-platform/src/macros.rs index 3fbcd14c..20d2b02e 100644 --- a/rog-platform/src/macros.rs +++ b/rog-platform/src/macros.rs @@ -23,7 +23,7 @@ macro_rules! watch_attr { path.push($attr_name); if let Some(path) = path.to_str() { let inotify = inotify::Inotify::init()?; - inotify.watches().add(path, inotify::WatchMask::CLOSE_WRITE) + inotify.watches().add(path, inotify::WatchMask::CLOSE_WRITE | inotify::WatchMask::MODIFY) .map_err(|e| { if e.kind() == std::io::ErrorKind::NotFound { PlatformError::AttrNotFound(format!("{}", $attr_name))