Here's our first community mission:
I've been working to setup our own copy of the Godot Asset Library as a intermediate measure until we finish our own API..
I have a copy running locally in my test Env. But i get conflicting results from what should be the same code execution, the code called on the C++ side in the engine is reused in both places as best i can tell. And yet, the results are different in both places.
In the Project Manager:

Inside the editor:

Here's where the code is, you'll see I've added an entry this should just work in both places.
Redot-Experimental/ReXblob/master/editor/plugins/asset_library_editor_plugin.cpp#L707
The API works so i'm at a loss for why it doesn't work in the project manager but does work in the editor.
https://assets.redotengine.org/lib/api/asset?type=any&godot_version=4.4
{
"result": [
{
"asset_id": 1,
"title": "Health, HitBoxes, and HurtBoxes",
"author": "decryptedchaos",
"author_id": 1,
"category": "Scripts",
"category_id": 6,
"godot_version": "4.3",
"rating": 0,
"cost": "MIT",
"support_level": "community",
"icon_url": "https:\/\/raw.githubusercontent.com\/cluttered-code\/godot-health-hitbox-hurtbox\/refs\/heads\/main\/images\/addon_icon.png",
"version": 2,
"version_string": "1.2.0",
"modify_date": "2025-02-05 20:06:34"
}
],
"page": 0,
"pages": 1,
"page_length": 40,
"total_items": 1
}
If anyone wants to chase it i suspect the issue is somewhere in the way version strings are being used in the project manager vs the editor.