• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

[Q] CC 2015.12 version info for LrMobdebug

Contributor ,
Oct 10, 2017 Oct 10, 2017

Copy link to clipboard

Copied

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

TOPICS
SDK

Views

514

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Oct 10, 2017 Oct 10, 2017

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Oct 18, 2017 Oct 18, 2017

Copy link to clipboard

Copied

LATEST

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

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines