I submitted just over a week ago but have no idea how long it should take?
Announcement
Collapse
No announcement yet.
How long does plugin approval usually take?
Collapse
X
-
Seems someone had a week off or so. I submitted an update of a plugin and it took about a week. I'm used to a few hours or days.
By the way, they had to give me rights to use the beta option when I had already released some plugins. So you may want to check if you already got those rights (check if you can select files and if there is a button Save and Release beta), to make sure you can upload a beta if needed.
Comment
-
When submitting the plugin I get the error message "The file uploaded did not contain the correct files and was rejected". I think this message is for the plugin zip file since all other files are saved successfully. I have packaged the plugin as per the Plugin Packaging Instructions here. The only minor change is I have zip files inside my main zip file. For example, the html.zip file contains all the HTML files, dll.zip file contains all the DLL files. There is a UNZIPOVER install command to handle this scenario, so I think HS4 should support this. The name of the file is in the format "pluginId_version". Example: Demo_4-0-0-5.zip.
How can I solve this?
Comment
-
Originally posted by hembhagat View PostWhen submitting the plugin I get the error message "The file uploaded did not contain the correct files and was rejected". I think this message is for the plugin zip file since all other files are saved successfully. I have packaged the plugin as per the Plugin Packaging Instructions here. The only minor change is I have zip files inside my main zip file. For example, the html.zip file contains all the HTML files, dll.zip file contains all the DLL files. There is a UNZIPOVER install command to handle this scenario, so I think HS4 should support this. The name of the file is in the format "pluginId_version". Example: Demo_4-0-0-5.zip.
How can I solve this?
Also, ask support@homeseer.com
Comment
-
I have used Demo for example purposes only. But I am facing this issue with the real plugin name as well. Here are the contents of my install.txt file,
Code:HSPI_Demo.exe,.,0 HSPI_Demo.exe.config,.,0 html.zip,[UNZIPOVER],.\html\Demo images.zip,[UNZIPOVER],.\html\images\Demo dlls.zip,[UNZIPOVER],.\Bin\Demo
Comment
-
Maybe:
- Bin is case sensitive? certainly installing on Linux that could cause problems
- UNZIPOVER not allowed for the bin folder for security reasons?
- name of plugin exe must match the assembly name and must match your plugin ID
Why not remove the DLLS from the zip file and see if that works?
Here's what I use for ControlsPlus:
Code:xxxx,[CHECKVERSION],4.2.0.0 HSPI_ControlsPlus.exe,.,0 HSPI_ControlsPlus.exe.config,.,0 html.zip,[UNZIPOVER],.\html\ControlsPlus HSCF.dll,.\bin\ControlsPlus,0 Newtonsoft.Json.dll,.\bin\ControlsPlus,0 PluginSdk.dll,.\bin\ControlsPlus,0
Comment
-
Originally posted by pseudocode View PostBin is case sensitive? certainly installing on Linux that could cause problems
Originally posted by pseudocode View Postname of plugin exe must match the assembly name and must match your plugin ID
Originally posted by pseudocode View PostUNZIPOVER not allowed for the bin folder for security reasons?
This can might be the case. I will check by replacing it with UNZIP command. But the UNZIP command won't be useful, if I update the library version, I want its DLL to be overwritten.
Also, the install.txt which I previously mentioned works perfectly fine with the manual updater (updater_override.json).
Comment
-
Originally posted by pseudocode View PostWhy not remove the DLLS from the zip file and see if that works?
Comment
Comment