A custom update checker for WordPress plugins. Useful if you don't want to host your project in the official WP repository, but would still like it to support automatic updates. Despite the name, it also works with themes.
MIT License
2.26k
stars
410
forks
source link
I'm trying to understand if your plugin can do what it would do #333
The use case that you have described would require quite a bit of additional development. This update checker doesn't have many of the features that would be necessary to make it work like that. For example:
It doesn't have built-in support for Google Cloud/AWS buckets. It also doesn't have the ability to parse plugin ZIP files. It can only retrieve update information from appropriately formatted JSON documents and from GitHub/BitBucket/GitLab repositories.
This is not a plugin, it's a library. You would have to make a plugin that uses this library.
At the moment, it only checks the plugins that it is configured to check. It would be up to you to create and configure an update checker instance for each installed plugin.
hello and thanks for the plugins you develop. I'm trying to understand if this is useful for me.
what I would like to do is
1 put all the plugins I own in a google cloud bucket / amazon bucket
2 the user or my client or me on the sites I support, I install this "updater"
3 this updater checks ALL the plugins that are installed on the site and checks if they are present in the bucket.
4 If the plugins are present, download and update them.
5 BONUS: I should insert some security check (a license key or similar to prevent anyone from activating this updater)
what did you develop do and can do these things? or you could help me understand how to make it happen.
thank you.