From fb2c89b2f8d42b3d4b5f14d2061e89eca6a32e10 Mon Sep 17 00:00:00 2001 From: orin Date: Fri, 21 Jun 2024 21:07:17 +0200 Subject: [PATCH] Remove DesktopDeployment from appx sets --- get.php | 2 +- shared/main.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/get.php b/get.php index 090c742..0f54c95 100644 --- a/get.php +++ b/get.php @@ -298,7 +298,7 @@ function uupGetFiles( $temp = preg_grep('/Windows(10|11)\.0-KB.*-baseless/i', $filesInfoKeys, PREG_GREP_INVERT); if($appEdition) { - $temp = preg_grep('/.*?AggregatedMetadata.*?\.cab|.*?DesktopDeployment.*?\.cab/i', $temp); + $temp = preg_grep('/.*?AggregatedMetadata.*?\.cab/i', $temp); } else if($build > 21380) { $temp = preg_grep('/Windows(10|11)\.0-KB|SSU-.*?\....$|.*?AggregatedMetadata.*?\.cab|.*?DesktopDeployment.*?\.cab/i', $temp); } else { diff --git a/shared/main.php b/shared/main.php index b1f12bb..ca51f00 100644 --- a/shared/main.php +++ b/shared/main.php @@ -16,7 +16,7 @@ limitations under the License. */ function uupApiVersion() { - return '1.47.1'; + return '1.47.2'; } require_once dirname(__FILE__).'/auths.php';