Squidly271 2024-02-10 19:13:07 -05:00
parent 58be3767dc
commit 5107c8492a
5 changed files with 7 additions and 4 deletions

View File

@ -2,8 +2,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "community.applications">
<!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2024.02.10a">
<!ENTITY md5 "2de05c66856e9231d62b01f7424f38a9">
<!ENTITY version "2024.02.10b">
<!ENTITY md5 "ed86a475cb234d6ba97beafad5365998">
<!ENTITY launch "Apps">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/community.applications">
@ -13,6 +13,9 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" min="6.12.0" support="https://forums.unraid.net/topic/38582-plug-in-community-applications" icon="users">
<CHANGES>
###2024.02.10b
- Handle privately hosted repositories
###2024.02.10
- Fixed: PHP8 Warning

View File

@ -2,7 +2,7 @@
2defe45163697e40c813a57ae9a50231 ./CA_notices.page
a3cb6f32cb9453c058563b6860f70a31 ./ca_settings.page
01ed7990078dee7cecfeda9a4e49377e ./default.cfg
7c89d4fe07eeeb8b8d7cfe404a048c1b ./include/exec.php
92a53b43f9c843d631bcebbf66d9324b ./include/exec.php
1d21e20284741127836e4acdafff3cb1 ./include/helpers.php
590fb8b29aba360a56dd8338b022f9e0 ./include/paths.php
7234caf6800479df03abb222aaedaca5 ./javascript/libraries.js

View File

@ -2043,7 +2043,7 @@ function createXML() {
if ( empty($template['Config']) ) // handles extra garbage entry being created on templates that are v1 only
unset($template['Config']);
$xml = makeXML($template);
@mkdir(dirname($xmlFile));
@mkdir(dirname($xmlFile),0777,true);
ca_file_put_contents($xmlFile,$xml);
}
postReturn(["status"=>"ok","cache"=>$cacheVolume ?? ""]);