mirror of
https://github.com/UnRAIDES/unRAID-NerdTools
synced 2025-04-05 15:56:03 +00:00
2023.03.06
This commit is contained in:
parent
841cd439c4
commit
a515403c77
BIN
archive/NerdTools-2023.03.06-x86_64-1.txz
Normal file
BIN
archive/NerdTools-2023.03.06-x86_64-1.txz
Normal file
Binary file not shown.
|
@ -3,8 +3,8 @@
|
|||
<!DOCTYPE PLUGIN [
|
||||
<!ENTITY name "NerdTools">
|
||||
<!ENTITY author "UnRAIDES">
|
||||
<!ENTITY version "2023.03.05b">
|
||||
<!ENTITY md5 "f459a51d520c16a4753632066688d039">
|
||||
<!ENTITY version "2023.03.06">
|
||||
<!ENTITY md5 "a1c1bb53b51d8ee81bad6867a35d2127">
|
||||
<!ENTITY launch "Settings/&name;">
|
||||
<!ENTITY github "UnRAIDES/unRAID-&name;">
|
||||
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg">
|
||||
|
@ -17,6 +17,8 @@
|
|||
|
||||
<CHANGES>
|
||||
##&name;
|
||||
###2023.03.06
|
||||
- Fixed: fixed PHP deprecated:
|
||||
###2023.03.05b
|
||||
- Initial 6.12 compatibility
|
||||
- Fixed: added some missing package descriptions
|
||||
|
|
|
@ -13,7 +13,6 @@ if (!is_dir($pkg_extra_path))
|
|||
|
||||
$pkg_desc = 'https://raw.githubusercontent.com/UnRAIDES/unRAID-NerdTools/main/packages/packages-desc';
|
||||
$pkg_repo = "https://api.github.com/repos/UnRAIDES/unRAID-NerdTools/contents/packages/$os_version";
|
||||
$pkg_repo = $_SERVER['HTTP_DEVELOP'] ? $pkg_repo = "https://api.github.com/repos/jsavargas/unRAID-NerdTools/contents/packages/$os_version?ref=develop" : $pkg_repo;
|
||||
|
||||
$desc_file = $pkg_path.'packages-desc';
|
||||
$repo_file = $pkg_path.'packages.json';
|
||||
|
|
|
@ -11,6 +11,7 @@ if (!file_exists($repo_file) || !empty($_GET['force']) || (filemtime($repo_file)
|
|||
}
|
||||
|
||||
$pkgs_array = [];
|
||||
$pkg_nameArray = [];
|
||||
|
||||
foreach ($pkgs_github_array as $pkg_github) {
|
||||
$pkg_nameArray = explode('-', $pkg_github['name']); // split package name into array
|
||||
|
@ -36,7 +37,7 @@ foreach ($pkgs_github_array as $pkg_github) {
|
|||
|
||||
// check all plugins for package dependency
|
||||
$plugins = [];
|
||||
exec("cd /boot/config/plugins ; find *.plg | xargs grep '${pkg_name}-${pkg_version}' -sl",$plugins);
|
||||
exec("cd /boot/config/plugins ; find *.plg | xargs grep '$pkg_name-$pkg_version' -sl",$plugins);
|
||||
$pkg_plgs = '--';
|
||||
if ($plugins){
|
||||
foreach ($plugins as $plugin){
|
||||
|
@ -60,6 +61,8 @@ foreach ($pkgs_github_array as $pkg_github) {
|
|||
$downloadedpkgv = $downloadedpkg ? preg_match('/^'.$pkg_name.'-(\d.+?)[-|_].*/',$downloadedpkg, $matches)? $matches[1]:false : false;
|
||||
$updatePkg = version_compare($pkg_version, $downloadedpkgv, '>') ;
|
||||
|
||||
if (!array_key_exists($pkg_name, $pkgs_desc_array)) $pkgs_desc_array[$pkg_name] = "";
|
||||
|
||||
$pkg = [
|
||||
'name' => str_replace("_nerdtools.txz",".txz",$pkg_github['name']) , // add full package name
|
||||
'pkgname' => $pkg_name, // add package name only
|
||||
|
|
Loading…
Reference in New Issue
Block a user