This commit is contained in:
Squidly271 2024-11-16 11:37:23 -05:00
parent 1dac8c9226
commit c3cbbdde6f
4 changed files with 9 additions and 4 deletions

Binary file not shown.

View File

@ -2,8 +2,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "community.applications">
<!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2024.11.09a">
<!ENTITY md5 "47c43ed8ff0946ef090e24aae68b3f34">
<!ENTITY version "2024.11.16">
<!ENTITY md5 "03f84a12bde95d1b685f2aceec80e361">
<!ENTITY launch "Apps">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/community.applications">
@ -13,6 +13,12 @@
<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.11.16
- Added: In the event a plugin after installation didn't clear the "pending" flag, offer the user to clear it when attempting another installation
- Added: Preserve previous log file for debugging purposes
- Added: Automatically adjust any template that has a host path pointing to the default appdata path that is not mapped to /config to the current appdata path
- Fixed: After installation from a search result, upon returning back to Apps, the search results displayed would be random apps
###2024.11.09
- Fixed: PHP8 warnings under certain circumstances
- Fixed: Popup blocked warning wouldn't disappear

View File

@ -2,7 +2,7 @@
2defe45163697e40c813a57ae9a50231 ./CA_notices.page
c12622d8281346d37398e96cbb6b8b69 ./ca_settings.page
01ed7990078dee7cecfeda9a4e49377e ./default.cfg
56496053016f879e5250173110f38d02 ./include/exec.php
6e8aca2286654d325a8ac63a0988e6a3 ./include/exec.php
becfd5ed96c03d27d4f031d7db3546f2 ./include/helpers.php
01457d3df08ca53c584c428e0a4b3c68 ./include/paths.php
7234caf6800479df03abb222aaedaca5 ./javascript/libraries.js

View File

@ -2694,7 +2694,6 @@ function clearPluginInstallFlag() {
global $caPaths;
$pluginsPending = glob("{$caPaths['pluginPending']}/*");
file_put_contents("/tmp/blah",print_r($pluginsPending,true));
array_walk($pluginsPending,function($val,$key) {
@unlink($val);
});