Cleanup: Power Sequencer update links and none type attribute access errors #105085
@ -29,8 +29,7 @@ bl_info = {
|
|||||||
"version": (2, 0, 2),
|
"version": (2, 0, 2),
|
||||||
"blender": (2, 93, 3),
|
"blender": (2, 93, 3),
|
||||||
"location": "Sequencer",
|
"location": "Sequencer",
|
||||||
"tracker_url": "https://projects.blender.org/blender/blender/issues/new?template=.gitea%2fissue_template%2fbug.yaml",
|
"doc_url": "{BLENDER_MANUAL_URL}/addons/sequencer/power_sequencer.html"
|
||||||
|
|||||||
"wiki_url": "https://docs.blender.org/manual/en/latest/addons/sequencer/power_sequencer.html",
|
|
||||||
"support": "COMMUNITY",
|
"support": "COMMUNITY",
|
||||||
Dennis-Crenshaw marked this conversation as resolved
Outdated
Thomas Barlow
commented
This should be Also, This should be `"doc_url"` if the addon should have a "Documentation" button that opens the URL.
Also, `"{BLENDER_MANUAL_URL}/addons/sequencer/power_sequencer.html"` can be used to prepend the manual URL for the current Blender version rather than the latest Blender version.
|
|||||||
"category": "Sequencer",
|
"category": "Sequencer",
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user
Addons bundled with Blender automatically get a "Report a Bug" button that creates a new bug report in this
blender-addons
issue tracker, without needing to specify a"tracker_url"
(though possibly due to a bug, this only happens currently if"doc_url"
is defined).(The
"tracker_url"
used here was also creating a bug report in theblender
repository, but it should have beenblender-addons
.)This is (probably very obviously) my first foray into trying to contribute to Blender-- the way I got here was clicking the "report a bug" button on the plugin I saw an error for, which took me to the original gdquest github repo for the addon, and I tried to submit a PR there and was informed it now lived in the core blender addons repo... so here I am and thanks for being patient while I learn!
If I understand correctly I can replace both the
wiki_url
and thetracker_url
with just the templateddoc_url
you provided above and the make job should automate providing a propertracker_url
to this core repo for bug reports?Is this true for the rest of the core maintained addons and do all the addons in this core addons repo need to have their
tracking_url
point to their entry here instead of their original external repo? Eg. I just looked at add_camera_rigs addon and it has adoc_url
as well as atracking_url
defined to an external repository and currently the "report a bug" button takes you to the external repository defined by thetracking_url
it provided (telling me that thedoc_url
auto gen doesn't override thetracking_url
if one is defined)I don't know for sure, but I'm guessing it's up to the maintainer of the addon whether they want to handle any bug reports here or on a different site.
As for the 'automatic
tracker_url
', I knew thatio_scene_fbx
didn't have atracker_url
defined, but that it got a "Report a Bug" button that opened new issues in this repository somehow, so I looked up the UI source code for the buttons (right click ->Edit Source
from within Blender when Developer Extras are enabled in the Interface preferences):tracker_url
ordoc_url
are defined, then a button or two will be drawn under the addon in the Add-ons list. Then, if there's notracker_url
and the addon is not user-installed (so its one that is bundled with Blender), then a button using the'BUG_ADDON'
preset is drawn, which is what you'll see if you scroll to the FBX addon and expand its UI.I've represented the different possible cases with a table:
doc_url
tracker_url
user_addon
doc_url
and "Report a Bug" button that goes totracker_url
doc_url
doc_url
and "Report a Bug" button that uses the'BUG_ADDON'
presettracker_url
What I think could be a bug with this UI code is that no buttons are drawn when the addon is not a
user_addon
, because in that case, the '"Report a Bug" button that uses the'BUG_ADDON'
preset' could still be used.