mirror of
https://github.com/UnRAIDES/unRAID-NerdTools
synced 2025-04-05 15:56:03 +00:00
VERSION: 2022.09.29k - execution permision to packagemanager
This commit is contained in:
parent
5ad95cfc0f
commit
54c7127042
1
archive/NerdTools-2022.09.29k-x86_64-1.md5
Normal file
1
archive/NerdTools-2022.09.29k-x86_64-1.md5
Normal file
|
@ -0,0 +1 @@
|
|||
bab8d966063b49e791d898d7fb2b5559 NerdTools-2022.09.29k-x86_64-1.txz
|
BIN
archive/NerdTools-2022.09.29k-x86_64-1.txz
Normal file
BIN
archive/NerdTools-2022.09.29k-x86_64-1.txz
Normal file
Binary file not shown.
|
@ -3,7 +3,7 @@
|
|||
<!DOCTYPE PLUGIN [
|
||||
<!ENTITY name "NerdTools">
|
||||
<!ENTITY author "UnRAIDES">
|
||||
<!ENTITY version "2022.09.29j">
|
||||
<!ENTITY version "2022.09.29k">
|
||||
<!ENTITY launch "Settings/&name;">
|
||||
<!ENTITY gitURL "https://raw.githubusercontent.com/jsavargas/unRAID-&name;/2022.09.28">
|
||||
<!ENTITY pluginURL "&gitURL;/plugin/&name;.plg">
|
||||
|
|
|
@ -2,18 +2,17 @@
|
|||
$plg_path = '/boot/config/plugins/NerdTools/'; // plugin path
|
||||
$os_version = strtok(parse_ini_file('/etc/unraid-version')['version'], '.') . '.' . strtok('.');
|
||||
|
||||
$pkg_path = $plg_path; // package path
|
||||
$pkg_path = $plg_path; // package path
|
||||
if (!is_dir($pkg_path))
|
||||
mkdir($pkg_path);
|
||||
|
||||
|
||||
$pkg_extra_path = "/boot/extra/"; // package path
|
||||
if (!is_dir($pkg_extra_path))
|
||||
mkdir($pkg_extra_path);
|
||||
|
||||
|
||||
$pkg_desc = 'https://raw.githubusercontent.com/jsavargas/unRAID-NerdTools/2022.09.28/contents/packages-desc';
|
||||
$pkg_repo = "https://raw.githubusercontent.com/jsavargas/unRAID-NerdTools/2022.09.28/contents/packages.$os_version.json";
|
||||
|
||||
|
||||
|
||||
$desc_file = $pkg_path.'packages-desc';
|
||||
$repo_file = $pkg_path.'packages.json';
|
||||
|
@ -23,7 +22,7 @@ $config_file = $plg_path.'NerdTools.cfg';
|
|||
$pkg_cfg = file_exists($config_file) ? parse_ini_file($config_file) : [];
|
||||
|
||||
// get array of downloaded packages
|
||||
$pkgs_downloaded = is_dir($pkg_path) ? array_diff(scandir($pkg_path, 1), ['.', '..','packages.json','packages-desc']) : [];
|
||||
$pkgs_downloaded = is_dir($pkg_extra_path) ? array_diff(scandir($pkg_extra_path, 1), ['.', '..','packages.json','packages-desc']) : [];
|
||||
|
||||
// get array of all installed packages
|
||||
$pkgs_installed = array_diff(scandir("/var/log/packages", 1), ['.', '..']);
|
||||
|
|
|
@ -158,12 +158,7 @@ function Apply() {
|
|||
|
||||
function checkDepends() {
|
||||
try {
|
||||
if ($('#screen')[0].checked) {
|
||||
$('#utempter').switchButton({checked: true});
|
||||
$('#utempter', '.pkgvalue').val('yes');
|
||||
$('#ncurses-terminfo').switchButton({checked: true});
|
||||
$('#ncurses-terminfo', '.pkgvalue').val('yes');
|
||||
}
|
||||
|
||||
if ($('#tmux')[0].checked) {
|
||||
$('#ncurses-terminfo').switchButton({checked: true});
|
||||
$('#ncurses-terminfo', '.pkgvalue').val('yes');
|
||||
|
@ -192,10 +187,10 @@ function checkDepends() {
|
|||
$('#utf8proc').switchButton({checked: true});
|
||||
$('#utf8proc', '.pkgvalue').val('yes');
|
||||
}
|
||||
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
// expected output: ReferenceError: nonExistentFunction is not defined
|
||||
// Note - error messages will vary depending on browser
|
||||
}
|
||||
|
||||
}
|
||||
|
|
0
source/NerdTools/usr/local/emhttp/plugins/NerdTools/scripts/packagemanager
Normal file → Executable file
0
source/NerdTools/usr/local/emhttp/plugins/NerdTools/scripts/packagemanager
Normal file → Executable file
Loading…
Reference in New Issue
Block a user