Compare commits

...

3 Commits

Author SHA1 Message Date
a5ec60696d Add Windows edition names 2023-10-29 01:38:51 +02:00
2e43892dfc Update ARM64 warning message 2023-10-29 00:44:39 +02:00
373c2d2d14 Use uupApiGetPacks in autodl.php 2023-10-29 00:09:21 +02:00
2 changed files with 49 additions and 3 deletions

View File

@ -128,7 +128,7 @@ class AutoDlConfig {
if($this->buildNum <= 22557 || $isBlocked || $this->skipApps()) if($this->buildNum <= 22557 || $isBlocked || $this->skipApps())
return false; return false;
$genPack = uupGetGenPacks($this->buildNum, $this->arch, $this->updateId); $genPack = uupApiGetPacks($this->updateId);
if(empty($genPack) || !isset($genPack['neutral'])) if(empty($genPack) || !isset($genPack['neutral']))
return false; return false;

View File

@ -212,8 +212,7 @@ $s['sizeOfShownFiles'] = 'Size of shown files: %s'; //Size of shown files: 2.86
$s['error'] = 'Error'; $s['error'] = 'Error';
$s['requestNotSuccessful'] = 'Request not successful'; $s['requestNotSuccessful'] = 'Request not successful';
$s['anErrorHasOccurred'] = 'An error has occurred while attempting to process your request.'; $s['anErrorHasOccurred'] = 'An error has occurred while attempting to process your request.';
$s['arm64Warning2022h'] = 'This is an ARM64 build'; $s['arm64Warning2023'] = '<b>This is an <a href="https://support.microsoft.com/en-us/windows/477f51df-2e3b-f68f-31b0-06f5e4f8ebb5">ARM64</a> build.</b> UUP dump authors don\'t have a single device compatible with it and therefore <b>will provide absolutely no support</b>.';
$s['arm64Warning2022b'] = '<p>This build is only compatible with:</p><ul><li>Surface Pro X</li><li>Raspberry Pi</li><li>Apple Mac M1</li><li>other glorified mobile phones</li></ul><p>UUP dump authors <i>don\'t have a single one of these</i> and therefore <b>will provide absolutely no support</b>.</p>';
//Error messages //Error messages
$s['error_ERROR'] = 'Generic error.'; $s['error_ERROR'] = 'Generic error.';
@ -299,3 +298,50 @@ $s['channel_dev'] = 'Dev Channel';
$s['channel_beta'] = 'Beta Channel'; $s['channel_beta'] = 'Beta Channel';
$s['channel_releasepreview'] = 'Release Preview Channel'; $s['channel_releasepreview'] = 'Release Preview Channel';
$s['channel_retail'] = 'Retail'; $s['channel_retail'] = 'Retail';
//Editions
$s['edition_APP'] = 'Microsoft Store Inbox Apps';
$s['edition_APP_MOMENT'] = 'Microsoft Store Moment Apps';
$s['edition_FOD'] = 'Features on Demand (Capabilities)';
$s['edition_CLOUD'] = 'Windows S';
$s['edition_CLOUDN'] = 'Windows S N';
$s['edition_CLOUDE'] = 'Windows Lean';
$s['edition_CLOUDEDITION'] = 'Windows SE';
$s['edition_CLOUDEDITIONN'] = 'Windows SE N';
$s['edition_CORE'] = 'Windows Home';
$s['edition_CORECOUNTRYSPECIFIC'] = 'Windows Home China';
$s['edition_COREN'] = 'Windows Home N';
$s['edition_CORESINGLELANGUAGE'] = 'Windows Home Single Language';
$s['edition_EDUCATION'] = 'Windows Education';
$s['edition_EDUCATIONN'] = 'Windows Education N';
$s['edition_ENTERPRISE'] = 'Windows Enterprise';
$s['edition_ENTERPRISEEVAL'] = 'Windows Enterprise Evaluation';
$s['edition_ENTERPRISEN'] = 'Windows Enterprise N';
$s['edition_ENTERPRISES'] = 'Windows Enterprise LTSC';
$s['edition_ENTERPRISESEVAL'] = 'Windows Enterprise LTSC Evaluation';
$s['edition_ENTERPRISESN'] = 'Windows Enterprise N LTSC';
$s['edition_ENTERPRISESNEVAL'] = 'Windows Enterprise N LTSC Evaluation';
$s['edition_HOLOGRAPHIC'] = 'Windows Holographic';
$s['edition_IOTENTERPRISE'] = 'Windows IoT Enterprise';
$s['edition_IOTENTERPRISEK'] = 'Windows IoT Enterprise Subscription';
$s['edition_IOTENTERPRISES'] = 'Windows IoT Enterprise LTSC';
$s['edition_IOTENTERPRISESK'] = 'Windows IoT Enterprise LTSC Subscription';
$s['edition_LITE'] = 'Windows 10X';
$s['edition_PPIPRO'] = 'Windows Team';
$s['edition_PROFESSIONAL'] = 'Windows Pro';
$s['edition_PROFESSIONALN'] = 'Windows Pro N';
$s['edition_PROFESSIONALWORKSTATION'] = 'Windows Pro for Workstations';
$s['edition_PROFESSIONALWORKSTATIONN'] = 'Windows Pro N for Workstations';
$s['edition_PROFESSIONALEDUCATION'] = 'Windows Pro Education';
$s['edition_PROFESSIONALEDUCATIONN'] = 'Windows Pro Education N';
$s['edition_SERVERRDSH'] = 'Windows Enterprise multi-session / Virtual Desktops';
$s['edition_SERVERARM64'] = 'Windows Server ARM64';
$s['edition_SERVERAZURESTACKHCICOR'] = 'Azure Stack HCI';
$s['edition_SERVERDATACENTER'] = 'Windows Server Datacenter (Desktop Experience)';
$s['edition_SERVERDATACENTERCORE'] = 'Windows Server Datacenter (Core)';
$s['edition_SERVERSTANDARD'] = 'Windows Server Standard (Desktop Experience)';
$s['edition_SERVERSTANDARDCORE'] = 'Windows Server Standard (Core)';
$s['edition_SERVERTURBINE'] = 'Windows Server Datacenter: Azure Edition';
$s['edition_SERVERTURBINECOR'] = 'Windows Server Datacenter: Azure Edition (Core)';
$s['edition_SERVERSTANDARDACOR'] = 'Windows Server Standard (Semi-Annual Channel)';
$s['edition_SERVERDATACENTERACOR'] = 'Windows Server Datacenter (Semi-Annual Channel)';