diff --git a/Cargo.lock b/Cargo.lock index 98108e7..ec0ea0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "steam-patch" -version = "0.2.0" +version = "0.2.1" dependencies = [ "dirs", "evdev", diff --git a/Cargo.toml b/Cargo.toml index 2bbbe5c..7b0b2db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "steam-patch" -version = "0.2.0" +version = "0.2.1" edition = "2021" [dependencies] diff --git a/src/devices/mod.rs b/src/devices/mod.rs index e2fa859..8b9d826 100644 --- a/src/devices/mod.rs +++ b/src/devices/mod.rs @@ -28,11 +28,21 @@ pub fn create_device() -> Option> { Some(Box::new(DeviceGeneric::new(28))) } - // Ayaneo Geek 1S - "AMD Ryzen 7 6800U with Radeon Graphics AYANEO GEEK 1S" => { + // Ayaneo Geek + "AMD Ryzen 7 6800U with Radeon Graphics AYANEO GEEK" => { Some(Box::new(DeviceGeneric::new(28))) } + // Ayaneo 2S + "AMD Ryzen 7 7840U w/ Radeon 780M Graphics AYANEO AYANEO 2S" => { + Some(Box::new(DeviceGeneric::new(30))) + } + + // Ayaneo Geek 1S + "AMD Ryzen 7 7840U w/ Radeon 780M Graphics AYANEO GEEK 1S" => { + Some(Box::new(DeviceGeneric::new(30))) + } + // GPD WM2 "AMD Ryzen 7 6800U with Radeon Graphics GPD G1619-04" => { Some(Box::new(DeviceGeneric::new(28)))