Yahnis Elsts
Yahnis Elsts
There is no `enableReleaseStrategy()` method and the readme doesn't mention it. Did you mean `enableReleaseAssets()`? Also, `setStrategyFilterName()` is mainly intended for internal use, it accepts a filter name not one...
As I mentioned, if you want to be explicit about it, you could construct an API instance directly. For example: ```php $githubApiInstance = new \YahnisElsts\PluginUpdateChecker\v5p1\Vcs\GitHubApi( 'https://github.com/username/repository', 'access-token-here' ); $githubApiInstance->enableReleaseAssets(); $updateChecker...
Here are some ideas: - Is there anything interesting/unusual going on with plugin slugs? Special characters in the slug? Using filters to change the slug? - Does the correct plugin...
What exactly do you mean by: "{absolute-path} 'my-plugin-name/my-plugin-name.php'"? That looks like a relative path, not like a valid example of an absolute path. You don't need to post the actual...
Some more ideas: - Deactivate all other plugins to check for plugin conflicts. - Does the "check for updates" link work, or does it also show an error of some...
One possible issue is regex syntax. PUC uses the provided regex as-is, without adding any delimiters or flags. So if your regex is literally `'landingpages.zip'`, that's not going to work...
That part of the code doesn't have enough logging to effectively debug it remotely. Would you perhaps be willing to step through it yourself or add some logging statements? This...
Ah, it sounds like there was also a PUC version issue. There have been some changes to how release assets work with the update checker, but I forgot that I...
This error suggests that there is a stored update that has a `null` value saved as a version number. Usually, this shouldn't happen because PUC is supposed to perform basic...
Just to be clear, did you look at the full Debug Bar screen or just its dropdown menu? Due to some technical issues with how that plugin works, if there...