September 22, 2022 release notes

UI

Settings menu

Workspace and account settings, previously found at the top of the left rail, are now in the Settings menu at the bottom left.

Settings icon in the left rail, with the settings menu open.

OPAL

array_to_string()

array_to_string() concatenates all the values in the array into a single string, optionally separated by a provided sep value. The individual values are coerced to string if they are not already strings.

int_div()

int_div() returns the integer portion of the result of dividend divided by divisor, truncating the remainder. (See also: mod().)

strcat() renamed string_concat()

The strcat() function has been deprecated and renamed string_concat(). Existing uses of strcat() continue to operate as expected, but generate a warning.