Skip to main content
Naoki-Hada
Known Participant
October 10, 2017
Question

[Q] CC 2015.12 version info for LrMobdebug

  • October 10, 2017
  • 1 reply
  • 669 views

Hi all,

What is the version string for LrMobdebug with Lightroom CC 2015.12?

I'm trying to set up debugging environment with LrModdebug from following post.

Re: Interactive debugger for Lightroom plugins

But I could not figure out the required version string for Lightroom CC 2015.12 for the Info.lua file.

Following page from Feb 10 shows "VERSION = { major=6, minor=8, revision=0}", but it seems not working.

Google Groups

I'm not sure my other setting is wrong or the version string is different.

Thank you,

Naoki

This topic has been closed for replies.

1 reply

Naoki-Hada
Known Participant
October 11, 2017

Hi all,

I could figure out.

The version string required for CC 2015.12 is following.

VERSION = { major=6, minor=12, revision=0, build=1125239}

Now I can use debugger with ZeroBrane Studio.

To get the proper version string, I did following.

1) Install following plugin

    GitHub - nitoyon/lua-console-lightroom-plugin: "Lua Console" plugin for Lightroom 3.0+

2) Copy and paste following code. And execute.

===

local LrApplication = import 'LrApplication'

local t = LrApplication.versionTable()

local s = t.major.."."..t.minor.."."..t.revision.."."..t.build

return s

===

Thank you,

Naoki

Naoki-Hada
Known Participant
October 18, 2017

Just FYI for Lightroom Classic CC (7.0) version string is following.

VERSION = { major=7, minor=0, revision=0, build=1140024}