2023.03.11 dependency improvements

This commit is contained in:
jsavargas 2023-03-11 23:16:44 -03:00
parent 06187b4174
commit aec0703297
4 changed files with 42 additions and 76 deletions

Binary file not shown.

View File

@ -3,8 +3,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdTools">
<!ENTITY author "UnRAIDES">
<!ENTITY version "2023.03.06">
<!ENTITY md5 "a1c1bb53b51d8ee81bad6867a35d2127">
<!ENTITY version "2023.03.11">
<!ENTITY md5 "c925c69b267d09faab017f5e0889435e">
<!ENTITY launch "Settings/&name;">
<!ENTITY github "UnRAIDES/unRAID-&name;">
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg">
@ -17,8 +17,10 @@
<CHANGES>
##&name;
###2023.03.11
- Fixed: dependency improvements
###2023.03.06
- Fixed: fixed PHP deprecated:
- Fixed: fixed PHP deprecated
###2023.03.05b
- Initial 6.12 compatibility
- Fixed: added some missing package descriptions

View File

@ -0,0 +1,20 @@
<?php
require_once '/usr/local/emhttp/plugins/NerdTools/include/DownloadHelpers.php';
$plg_path = '/boot/config/plugins/NerdTools/'; // plugin path
$depends_file = $plg_path.'packages-depends';
$pkg_depends = 'https://raw.githubusercontent.com/UnRAIDES/unRAID-NerdTools/main/packages/packages-depends';
if (!file_exists($depends_file) ?? False || (filemtime($depends_file) < (time() - 3600))) {
get_content_from_github($pkg_depends, $depends_file);
$depends_file_array = file_exists($depends_file) ? json_decode(file_get_contents($depends_file), true) : [];
} else {
$depends_file_array = file_exists($depends_file) ? json_decode(file_get_contents($depends_file), true) : [];
}
echo json_encode($depends_file_array);
?>

View File

@ -136,80 +136,24 @@ function Apply() {
function checkDepends() {
try {
$.getJSON('/plugins/NerdTools/include/CheckDepends.php', function(data) {
console.log(data)
$.each(data,function(index, value){
if ($('#'+index)[0]){
value.split(",").forEach(function (item) {
if (item && $('#'+index)[0].checked) {
$('#' + item).switchButton({ checked: true });
$('#' + item, '.pkgvalue').val('yes');
}
});
}
});
});
if ($('#tmux')[0].checked) {
$('#ncurses-terminfo').switchButton({ checked: true });
$('#ncurses-terminfo', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#expect')[0].checked) {
$('#tcl').switchButton({ checked: true });
$('#tcl', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#iotop')[0].checked) {
$('#python2').switchButton({ checked: true });
$('#python2', '.pkgvalue').val('yes');
$('#libffi').switchButton({ checked: true });
$('#libffi', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#vim')[0].checked) {
$('#libsodium').switchButton({ checked: true });
$('#libsodium', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#borgbackup')[0].checked) {
$('#python3').switchButton({ checked: true });
$('#python3', '.pkgvalue').val('yes');
$('#python-setuptools').switchButton({ checked: true });
$('#python-setuptools', '.pkgvalue').val('yes');
$('#llfuse').switchButton({ checked: true });
$('#llfuse', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#irssi')[0].checked) {
$('#utf8proc').switchButton({ checked: true });
$('#utf8proc', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#mediainfo')[0].checked) {
$('#libzen').switchButton({ checked: true });
$('#libzen', '.pkgvalue').val('yes');
$('#libmediainfo').switchButton({ checked: true });
$('#libmediainfo', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
try {
if ($('#wget2')[0].checked) {
$('#gpgme').switchButton({ checked: true });
$('#gpgme', '.pkgvalue').val('yes');
$('#lzlib').switchButton({ checked: true });
$('#lzlib', '.pkgvalue').val('yes');
$('#libassuan').switchButton({ checked: true });
$('#libassuan', '.pkgvalue').val('yes');
}
} catch (error) {
console.error('Error checkDepends' + error);
}
return ""
}