Jonas Finnemann Jensen
Jonas Finnemann Jensen
> Haha this is really true. It's a weird concept, to have a plugable parser like this, based on an "ordering" of syntaxes, where we ask each in an order,...
> Suggesting a pub topic could work in the interim. It would be nice to have this automatically detected though in case an extension author forgets to add a topic...
> So for the devtools case this would be the query "extends:devtools"? That sounds reasonable (although maybe not the most discoverable for users). The point would be that devtools documentation...
So our SDK detection logic uses the lower-bound SDK constraint to determine which SDK version to use. If latest stable is supported it'll use that.. otherwise, it'll prefer beta or...
I'm happy to see that we are working on some of this or have loose ideas about what we might do for other parts. Some thoughts: * re: qualitative metrics...
> They should explain what is exactly the popularity. Please, see: https://pub.dev/help/scoring#popularity In short it's based on download counts, then we remove systems we deem to be robots, sort and...
> why you don't include downloads count directly in the side bar without removing the popularity indication We have ongoing work to make new metrics. And we don't want to...
Are you sure these checks will still work? ```dart if (agent.payload.refType != 'tag') { throw AuthorizationException.githubActionIssue( 'publishing is only allowed from "tag" refType, this token has "${agent.payload.refType}" refType'); } final...
@isoos I think we should do two booleans. ```dart bool isFromWorkflowDispatchEventEnabled; bool isFromPushEventEnabled; ``` Or maybe `allowPublishFrom`, but we probably need to make two checkboxes in the UI: * [x]...
@isoos this is why I thought it might be necessary with some data migration, in order to just create the properties on all entities. That's something we could easily do...