Updated: July 14, 2020
Public submissions are now available for bixby-fridge
targets in the US and South Korean Marketplaces.
While you can add new symbols to an enum
with extends
, you cannot do so with role-of
. An enum
can extend multiple concepts or have multiple roles only if all the target enum
concepts have identical symbol sets.
For information, read about Relationships Between Concepts in the Modeling Concepts topic.
Deprecation Stages (learn more)
With this release, if your capsule opts out of capsule lock, conversation drivers are always shown, even if the device itself doesn't support capsule lock.
Within Bixby Views, you can now only use card components within a list-of
or selection-of
list. For example, you can no longer use *-area
, paragraph
, and single-line
components within a list.
Deprecated:
list-of (this) {
where-each(item) {
paragraph: value ("#{value(item)}")
}
}
list-of (this) {
where-each(item) {
title-area {
slot1: text: value ("#{value(item)}")
}
}
}
New:
list-of (this) {
where-each(item) {
compound-card {
content {
paragraph: value ("#{value(item)}")
}
}
}
}
list-of (this) {
where-each(item) {
title-card {
title-area {
slot1: text: value ("#{value(item)}")
}
}
}
}
Deprecation Stages (learn more)
You can now customize the spacer
size in a single line component with the size
key.
You can now add a paragraph
to slot1
of title-area
.
Within Bixby Views, you can now conditionally set a component property, as well as explicitly set them.
Old:
image-card {
aspect-ratio (4:3)
image-url ("[#{value(param.image.url)}]")
text-position (Overlay) // can only be one of the allowed values [Below, Overlay]
}
New:
image-card {
aspect-ratio (4:3)
image-url ("[#{value(param.image.url)}]")
// either
text-position (Overlay) // can only be one of the allowed values [Below, Overlay]
// or
text-position {
if (param.textposition == 'cover') {
value (Overlay) // can only be one of the allowed values [Below, Overlay]
} else {
value (Bottom) // can only be one of the allowed values [Below, Overlay]
}
}
}
If you need to opt out of capsule lock only during specific result moments, you can now use the capsule-lock
key in that particular result view.