mirror of
https://github.com/UnRAIDES/unRAID-NerdTools
synced 2025-04-05 14:37:29 +00:00
Merge pull request #49 from jsavargas/depends
2023.03.11 dependency improvements
This commit is contained in:
commit
2a65967bc0
BIN
archive/NerdTools-2023.03.11-x86_64-1.txz
Normal file
BIN
archive/NerdTools-2023.03.11-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.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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
||||
?>
|
|
@ -136,80 +136,24 @@ function Apply() {
|
|||
|
||||
function checkDepends() {
|
||||
try {
|
||||
|
||||
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');
|
||||
}
|
||||
$.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');
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
} catch (error) {
|
||||
console.error('Error checkDepends' + error);
|
||||
}
|
||||
|
||||
return ""
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user