Update various pacakges and add new packages

This commit is contained in:
Mcklaren 2022-10-04 20:25:28 +02:00
parent 193ae5c3cf
commit f482f3fdad
7 changed files with 20 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packages/6.11/vim-9.0.0623-x86_64-1.txz vendored Normal file

Binary file not shown.

View File

@ -3,8 +3,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdTools">
<!ENTITY author "UnRAIDES">
<!ENTITY version "2022.10.04c">
<!ENTITY md5 "786a9a1ea55fea0cfa52f2b081449281">
<!ENTITY version "2022.10.04d">
<!ENTITY md5 "a2f0ab9b2e0ef61d36c41486727ed21e">
<!ENTITY launch "Settings/&name;">
<!ENTITY github "UnRAIDES/unRAID-&name;">
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg">
@ -17,6 +17,13 @@
<CHANGES>
##&name;
###2022.10.04d
- Fix dependency for mediainfo package
- Add vim-9.0.0623 package
- Add libsodium-1.0.18 package as dependency of vim
- Update jdupes to the version 1.21
###2022.10.04c
- Fix a bug with json file
###2022.10.04b
- Minor change for developer tools
###2022.10.04a

View File

@ -187,4 +187,15 @@ function checkDepends() {
} 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);
}
}