Skip to content

Commit

Permalink
Add identifiers for devices that have M3
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Hong <[email protected]>
  • Loading branch information
novialriptide committed Nov 23, 2023
1 parent 3547cdd commit 72b8901
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,21 @@ class Device:
"j414sap": Device("13.2", False), # MacBook Pro (14-inch, M2 Pro, 2023)
"j416cap": Device("13.2", False), # MacBook Pro (16-inch, M2 Max, 2023)
"j416sap": Device("13.2", False), # MacBook Pro (16-inch, M2 Pro, 2023)
"j473ap": Device("13.2", True), # Mac mini (M2, 2023)
"j474sap": Device("13.2", True), # Mac mini (M2 Pro, 2023)
"j473ap": Device("13.2", True), # Mac mini (M2, 2023)
"j474sap": Device("13.2", True), # Mac mini (M2 Pro, 2023)
"j415ap": Device("13.4", False), # MacBook Air (15-inch, M2, 2023)
"j475cap": Device("13.4", True), # Mac Studio (M2 Max, 2023)
"j475dap": Device("13.4", True), # Mac Studio (M2 Ultra, 2023)
"j180dap": Device("13.4", True), # Mac Pro (M2 Ultra, 2023)
"j475cap": Device("13.4", True), # Mac Studio (M2 Max, 2023)
"j475dap": Device("13.4", True), # Mac Studio (M2 Ultra, 2023)
"j180dap": Device("13.4", True), # Mac Pro (M2 Ultra, 2023)
"j504ap": Device("15.3", False), # Macbook Pro (14-inch, M3, 2023)
"j433ap": Device("15.4", False), # iMac (24-inch (2-ports), M3, 2023)
"j434ap": Device("15.5", False), # iMac (24-inch (4-ports), M3, 2023)
"j514sap": Device("15.6", False), # Macbook Pro (14-inch, M3 Pro, 2023)
"j516sap": Device("15.7", False), # Macbook Pro (16-inch, M3 Pro, 2023)
"j514cap": Device("15.8", False), # Macbook Pro (14-inch, M3 Max (16-core), 2023)
"j516cap": Device("15.9", False), # Macbook Pro (16-inch, M3 Max (16-core), 2023)
"j514map": Device("15.10", False), # Macbook Pro (14-inch, M3 Max (14-core), 2023)
"j516map": Device("15.11", False), # Macbook Pro (16-inch, M3 Max (14-core), 2023)
}

IPSW_VERSIONS = [
Expand Down

0 comments on commit 72b8901

Please sign in to comment.