Compare commits

...
2 Commits
Author SHA1 Message Date
orin d0bad95c11 1.42.1 2023-11-03 17:11:47 +01:00
orin 2a57ae0fe6 Add fallback parameters 2023-11-03 17:10:43 +01:00
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ limitations under the License.
*/
function uupApiVersion() {
return '1.42.0';
return '1.42.1';
}
require_once dirname(__FILE__).'/auths.php';
+5 -5
View File
@@ -311,11 +311,11 @@ function composeFileGetRequest($updateId, $info, $rev = 1, $type = 'Production')
//$branch = branchFromBuild($info['checkBuild']);
$deviceAttributes = composeDeviceAttributes(
$info['flight'],
$info['ring'],
$info['checkBuild'],
$info['arch'],
$info['sku'],
isset($info['flight']) ? $info['flight'] : 'Active',
isset($info['ring']) ? $info['ring'] : 'RETAIL',
isset($info['checkBuild']) ? $info['checkBuild'] : '10.0.19041.1',
isset($info['arch']) ? $info['arch'] : 'amd64',
isset($info['sku']) ? $info['sku'] : 48,
$type
);