Conversation
Accept optional software and software_version on /report so any host can
register under its own name. Without software, add-ons still register as
Blender from blender_version. Inconsistent identity is only logged,
never rejected.
{
"app_id": 12345,
"api_key": "",
"addon_version": "0.5.0",
"platform_version": "Linux",
- "blender_version": "4.5.0",
+ "software": "Godot",
+ "software_version": "4.7.0",
"project_name": "My project"
}
For software "Blender", software_version and blender_version are
equivalent; software_version wins on conflict.
Decide browser download delivery and inactivity tolerance by the report
endpoint that registered the software instead of its name, and only
treat the registered version as a Blender version for Blender.
The change is fully backward compatible: requests without the new fields
register and behave exactly as before, /godot/report is unchanged, and
the /report response and API shapes stay the same.
yac
force-pushed
the
generic_software_report
branch
from
September 25, 2026 12:51
4a8c81b to
68ab0f4
Compare
Contributor
Author
|
@agajdosi @Tweekazoid This (or something like this) is going to be needed for proper support of various addons - better done sooner than later I reckon. I'm happy to discuss this and adapt per your feedback. |
agajdosi
approved these changes
Sep 25, 2026
This branch was successfully deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Accept optional software and software_version on /report so any host can register under its own name. Without software, add-ons still register as Blender from blender_version. Inconsistent identity is only logged, never rejected.
{ "app_id": 12345, "api_key": "", "addon_version": "0.5.0", "platform_version": "Linux", - "blender_version": "4.5.0", + "software": "Godot", + "software_version": "4.7.0", "project_name": "My project" }For software "Blender", software_version and blender_version are equivalent; software_version wins on conflict.
Decide browser download delivery and inactivity tolerance by the report endpoint that registered the software instead of its name, and only treat the registered version as a Blender version for Blender.
The change is fully backward compatible: requests without the new fields register and behave exactly as before, /godot/report is unchanged, and the /report response and API shapes stay the same.