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