Build Number -> Platform Version
I have broken up all my builds into builds per-platform. I still call them idea, so I have idea10, idea11, idea12, idea12.1, idea13
Is there any way to map the build number (via an API) to the platform level?
I guess sometimes I forget. So when my automated bug reports come in they have the product build
Lua-1362 com.intellij.openapi.project.IndexNotReadyException at com.intellij.util.indexi
Platform Version: IU-123.72
Plugin Lua version: 1.0a51
Platform Version: IU-123.72
Plugin Lua version: 1.0a51
Sometimes, it would be nice to be able show (IntellijIDEA Ultimate 12.1)
I know this is provided by the applicationInfo xml - but are there some API's to access it?
请先登录再写评论。
ApplicationInfo.getInstance().getMajorVersion(), .getMinorVersion()
Thansk Dmitry - I should have known to look there.