« YZoneColor | Home | Filemaker Magazine Ar… »

Version Information in MBS Plugins

  1. We have functions like MBSPluginVersion and MBSPluginCompileDate.
  2. We have the MBS module with some details:


    This allows you to write code like this
        #if MBS.Year >= 2012 then
    // use new method
    #else
    // use old method
    #endif

    if val(MBS.VersionString)<12 then
    MsgBox "Please upgrade the plugins for this example."
    end if
  3. In Mac OS X Finder our plugins show version information in the version column:
  4. Also in Finder's Info dialog you see details in version field:
  5. In compiled application on Mac you can check the version on the dylibs:
  6. And in Windows explorer you see the version in the properties:

13 08 12 - 16:57