-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Settings > PT Run > Plugins] Show version number #33846
Comments
@niels9001
(The text "Website" should be an clickable link with the address in a tool tip. The layout of bold name can be applied to version number too.) What layout (character and color) do you suggest for the dot separator? Any other ideas? |
@crutkas GitHub search query: |
If we decide to go for this I think it's better to read the version from the assembly instead of the The
Assembly version is more reliable and already used to pick up the latest release of the plugin.
|
I am not sure what you mean with "never set" because it comes from the
I agree that this is the better solution for our built-in plugins. But can we be sure that third-party plugin developer set the DLL file version correctly? (The json is definitely easier to maintain.) |
My bad! This is set from the JSON but it's never used.
Properly version a software that is being shipped is a best practice. |
@davidegiacometti [Regex]::Replace([version]::new(1,5,6,5), ".0$", "")
[Regex]::Replace([version]::new(1,5,6,0), ".0$", "")
# Output
# 1.5.6.5
# 1.5.6 |
That's a great question. I'll go for 4 parts since you can't know if the last |
Description of the new feature / enhancement
Showing the version of the installed plugins.
Scenario when this would be used?
To see if your third-party plugin is up to date.
Supporting information
No response
The text was updated successfully, but these errors were encountered: