Compare commits

..

2 Commits

Author SHA1 Message Date
d0bad95c11 1.42.1 2023-11-03 17:11:47 +01:00
2a57ae0fe6 Add fallback parameters 2023-11-03 17:10:43 +01:00
2 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@ limitations under the License.
*/ */
function uupApiVersion() { function uupApiVersion() {
return '1.42.0'; return '1.42.1';
} }
require_once dirname(__FILE__).'/auths.php'; require_once dirname(__FILE__).'/auths.php';

View File

@ -311,11 +311,11 @@ function composeFileGetRequest($updateId, $info, $rev = 1, $type = 'Production')
//$branch = branchFromBuild($info['checkBuild']); //$branch = branchFromBuild($info['checkBuild']);
$deviceAttributes = composeDeviceAttributes( $deviceAttributes = composeDeviceAttributes(
$info['flight'], isset($info['flight']) ? $info['flight'] : 'Active',
$info['ring'], isset($info['ring']) ? $info['ring'] : 'RETAIL',
$info['checkBuild'], isset($info['checkBuild']) ? $info['checkBuild'] : '10.0.19041.1',
$info['arch'], isset($info['arch']) ? $info['arch'] : 'amd64',
$info['sku'], isset($info['sku']) ? $info['sku'] : 48,
$type $type
); );