Yahnis Elsts
Yahnis Elsts
At this time, I'm going to say that additional examples are not necessary. People can probably figure out how to add a new section; we don't need examples for all...
@slimanehma: No, there's still no built-in support for licenses. While there has been some demand for it, it doesn't like a hugely popular or time-sensitive feature, so I haven't prioritized...
The actual update message is displayed by WordPress core, not this update checker, so it's not straightforward to add new hooks for that. It would really depend on what hooks...
You can use one of the following filters to change the metadata and modify the download URL: - `request_info_result` - runs after the update checker retrieves the metadata from the...
Just a minor note: since the URL will be used to send an HTTP request (instead of simply being modified for display purposes), it's probably better to use [`urlencode`](https://www.php.net/manual/en/function.urlencode.php) or...
If you can reliably reproduce the problem, I recommend setting up HTTP request logging and checking what exactly GitHub isn't happy with. There should be more details in the API...
Right now PUC doesn't distinguish between different GitHub API errors. It just treats them all as failures. I'll make a note to perhaps show different error messages if the error...
Thanks, it's good to hear that the library is useful to people! I'll close this issue now. The person who originally opened it hasn't commented here in a year, so,...
When you call `buildUpdateChecker`, you can pass the check interval as the optional fourth argument. For example: ```php $myUpdateChecker = PucFactory::buildUpdateChecker( 'https://example.com/path/to/details.json', __FILE__, 'unique-plugin-or-theme-slug', 168 ); ```
That feature currently doesn't exist for GitHub/Bitbucket/etc repositories. Right now, the update checker doesn't make any attempt to find language packs among release assets or in the repository itself. In...