August 17, 2022 release notes¶
UI¶
Apps tab¶
Access your installed apps in the Apps tab. The View content button takes you to the Explore tab, showing all the content associated with that app.

Sort, group, and filter by app¶
See which content is associated with an app with new options:
OPAL¶
IPv4 address parsing¶
Four new functions for working with IPv4 addresses:
ipv4_to_int64
: convertxxx.xxx.xxx.xxx
to a big-endian (network byte order) integerint64_to_ipv4
: convert a big-endian integer toxxx.xxx.xxx.xxx
ipv4_network_int64
: convertxxx.xxx.xxx.xxx
orxxx.xxx.xxx.xxx/nn
to a big-endian integeripv4_address_in_network
: test whetherxxx.xxx.xxx.xxx
is in a given network (subnet, private, or class).
For details and examples, see the linked documentation for each function.