Skip to content

Commit

Permalink
Merge branch 'Maclay74:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
hicder committed Oct 20, 2023
2 parents ce0614b + 0c3de98 commit b461e60
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "steam-patch"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

[dependencies]
Expand Down
14 changes: 12 additions & 2 deletions src/devices/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,21 @@ pub fn create_device() -> Option<Box<dyn Device>> {
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)))
Expand Down

0 comments on commit b461e60

Please sign in to comment.