Update device info for Remote Play

This commit is contained in:
redphx 2023-12-01 05:57:26 +07:00
parent 78bfc09749
commit 3c62d1356f

View File

@ -2042,10 +2042,10 @@ class RemotePlay {
return {
appInfo: {
env: {
clientAppId: 'Microsoft.GamingApp',
clientAppType: 'native',
clientAppVersion: '2203.1001.4.0',
clientSdkVersion: '8.5.2',
clientAppId: window.location.host,
clientAppType: 'browser',
clientAppVersion: '21.1.98',
clientSdkVersion: '8.5.3',
httpEnvironment: 'prod',
sdkInstallId: '',
},
@ -2057,20 +2057,24 @@ class RemotePlay {
heightInPixels: 1080,
},
pixelDensity: {
dpiX: 2,
dpiY: 2,
dpiX: 1,
dpiY: 1,
},
},
hw: {
make: 'Microsoft',
model: 'Surface Pro',
sdktype: 'native',
model: 'unknown',
sdktype: 'web',
},
os: {
name: 'Windows 11',
name: 'windows',
ver: '22631.2715',
platform: 'desktop',
},
browser: {
browserName: 'chrome',
browserVersion: '119.0',
},
},
};
}