Skip to content

v01-15

Compare
Choose a tag to compare
@gaede gaede released this 10 Nov 17:19
· 72 commits to master since this release

v01-15

  • 2017-11-10 Ete Remi (PR#24)

    • EventSelector inherits from EventModifier and call processEvent() from modifyEvent()
    • Added safety clear of conditions in ProcessorMgr::modifyEvent
  • 2017-11-10 Ete Remi (PR#23)

    • Added constants replacement for condition attributes in the execute section
      • Allows permanent conditions at runtime (not depending on processor return values)
      • Allows to refer to constants in conditions in the execute section, e.g :
    <constants>
      <constant name="RunOverlay" value="false" />
    </constants>
    
    <execute>
      <if condition="${RunOverlay}">
        <processor name="MyOverlayBg"/>
      </if>
    </execute>

    and run :

    Marlin steering.xml --constant.RunOverlay=true

    to change the behavior.