Skip to content

v1.10

Latest
Compare
Choose a tag to compare
@snjo snjo released this 04 Mar 14:30
· 5 commits to master since this release

v1.10

Date and Time command changes

These are being changed to avoid name collision with other commands, and improve readability

  • $d changed to $date
  • $t changed to $time

Using multiple lists from slots at once

  • New commands: $lln1 $lln2 $lln3
    These allow referencing lists of values from multiple slots when processing text from the Processing slot or Text Library.

Fill slots 1-3 with individual lists of values and reference one or multiple of them in another text like this.
Make sure to increment the number each time you process the text using $postinc (Increment the spinner number at the end)
Values in the lists will also be processed if any commands are present.

Example:

PROCESS SLOT: ID: $number Name: $lln1, team: $lln2 $postinc
MEMORY SLOT 1:  Joe
                Mary
                Frank
                Sarah
MEMORY SLOT 2:  Blue
                Red
                Green
                Blue

OUTPUT:         ID: 1, Name: Joe, team: Blue
                ID: 2, Name: Mary, team Red
                ID: 3, Name: Frank, team Green
                ID: 4, Name: Sarah, team Blue

Important change to number function

Changes to improve number control and List from Slot ($lln) commands

  • $i,$+,$- function names removed
  • $number replaces $i, Outputs the number.
  • $postinc increments the number spinner after processing
  • $postdec decrements the number spinner after processing
  • $preinc increments the number spinner before processing
  • $predec decrements the number spinner before processing

Only $number outputs the number spinner value, the others are silent

Other changes

  • Changelog is now shown after an application update
  • Changelog can be opened from the Options menu