Compare commits

..

No commits in common. "194bd13775c5b7d7ffbf4b7ea2622adea4fa93ba" and "92a2e2be1944bf95958c7824b6385be24e567865" have entirely different histories.

2 changed files with 0 additions and 34 deletions

View file

@ -1,17 +0,0 @@
<?php
class MSOffice2024 extends PatchBase {
function __construct() {
parent::__construct('Microsoft', 'Office 2024', 'https://docs.microsoft.com/en-us/officeupdates/update-history-office-2024#retail-versions-of-office-2024');
$this->patch->setBranch('Retail');
}
function check() : bool {
if ($this->fetch('https://docs.microsoft.com/en-us/officeupdates/update-history-office-2024')) {
$this->str_crop('retail-versions-of-office-2024', '</table>');
return $this->parse('/Version ([\d]+ \(Build [\d\.]+\))/');
}
return false;
}
}
?>

View file

@ -1,17 +0,0 @@
<?php
class MSOffice2024VL extends PatchBase {
function __construct() {
parent::__construct('Microsoft', 'Office 2024', 'https://docs.microsoft.com/en-us/officeupdates/update-history-office-2024#volume-licensed-versions-of-office-ltsc-2024');
$this->patch->setBranch('Volume License');
}
function check() : bool {
if ($this->fetch('https://docs.microsoft.com/en-us/officeupdates/update-history-office-2024')) {
$this->str_crop('volume-licensed-versions-of-office-ltsc-2024', '</table>');
return $this->parse('/Version ([\d]+ \(Build [\d\.]+\))/');
}
return false;
}
}
?>