Skip to content

Commit

Permalink
Some new devices added to devicelist.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
web_dev committed Sep 5, 2024
1 parent 0539673 commit 830bd26
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions desktop-app/src/common/deviceList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,47 @@ export const defaultDevices: Device[] = [
isTouchCapable: false,
isMobileCapable: false,
},
{
id: '90004',
name: 'Galaxy Z Fold 5',
width: 344,
height: 882,
dpr: 1,
capabilities: ['touch', 'mobile'],
userAgent:
'Mozilla/5.0 (Linux; Android 13; SM-F946B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.131 Mobile Safari/537.36',
type: 'phone',
isTouchCapable: true,
isMobileCapable: true,
},

Check failure on line 885 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
{

Check failure on line 886 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
id: '90005',

Check failure on line 887 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
name: 'Asus Zenbook Fold',

Check failure on line 888 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
width: 853,

Check failure on line 889 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
height: 1280,

Check failure on line 890 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
dpr: 2,

Check failure on line 891 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
capabilities: ['touch', 'tablet'],

Check failure on line 892 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Replace `··` with `····`
userAgent:

Check failure on line 893 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',

Check failure on line 894 in desktop-app/src/common/deviceList.ts

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Insert `··`
type: 'tablet',
isTouchCapable: true,
isMobileCapable: false,
},
{
id: '90006',
name: 'Pixel 7',
width: 412,
height: 915,
dpr: 2.625,
capabilities: ['touch', 'mobile'],
userAgent:
'Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.120 Mobile Safari/537.36',
type: 'phone',
isTouchCapable: true,
isMobileCapable: true,
},


];

const customDevices: () => Device[] = () => {
Expand Down

0 comments on commit 830bd26

Please sign in to comment.