Fix cumulative update names, update internal packs

This commit is contained in:
mkuba50 2019-04-03 20:17:39 +02:00
parent 2db17c34a2
commit 451d9e38c9
10 changed files with 3 additions and 3 deletions

View File

@ -204,7 +204,7 @@ function parseFetchUpdate($updateInfo, $out, $arch, $ring, $flight, $build, $sku
}
$isCumulativeUpdate = 0;
if(preg_match('/\d{4}-\d{2}.+Update/', $updateTitle)) {
if(preg_match('/\d{4}-\d{2}.+Update|Cumulative Update/i', $updateTitle)) {
$isCumulativeUpdate = 1;
$updateTitle = preg_replace('/ for .{3,5}-based systems| \(KB.*?\)/i', '', $updateTitle);
}

View File

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

File diff suppressed because one or more lines are too long