You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could modify get_readable so instead of just accepting a template and columns, it can accept any querystring - that would at least give you to ability to do a CASE WHEN:
@classmethoddefget_readable(cls):
returnReadable(
template="%s: %s (%s)",
columns=[
cls.application.name,
cls.plugin_version,
QueryString("CASE WHEN development_stage = 1 THEN 'development' ... END")
],
)
Maybe we could add some kind of utility to Piccolo for doing this automatically:
Following the documentation
I've managed to get it working.
And yet, when running get_readable()
I get
Cinema4D: 0.0.1 (1)
instead of
Cinema4D: 0.0.1 (development)
And there is no way around that.
The text was updated successfully, but these errors were encountered: