6

Is there a way to know the crafter version from Studio Admin Console/Dashboard?

I am running CrafterCMS 3.0 on my local. But from the content admin's point of view, is there any way to know the exact version/build I am using?

Paras
  • 804
  • 1
  • 10
  • 25

2 Answers2

7

There is a feature being added in support of this. It's under Help > About, but it's not there yet.

You can track progress on the feature here: https://github.com/craftercms/craftercms/issues/813

And here for the UI: https://github.com/craftercms/craftercms/issues/711

sumerz
  • 1,346
  • 7
  • 4
6

You can also try http://localhost:8080/studio/api/1/services/getInfo.json that will give you something like this:

{"version":"3.0.0-SNAPSHOT","id":"33ed8125aa029a8170ed11d9cee62b802f45cd38","uiId":"f5318d804d51eea2501fdf1bc832af4c2ba5e30a","buildDate":"2017-05-09T10:38:21-06:00"}

Note this also work for 2.5.x (since 2.5.6)

Cortiz
  • 839
  • 4
  • 7
  • This is great. Works for now until we have the feature implemented. For my local installation I get uiID=unknown. what does that indicate? – Paras May 11 '17 at 17:42