Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Documentation/sources/Reference/ofxPropertiesByObject.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ Properties on the Image Effect Host
- kOfxPropAPIVersion
- (read only) the version of the API implemented by the host. If not present, it is safe to assume "1.0"
- kOfxPropType
- (read only) set to "host"
- (read only) type of the object. Set to kOfxTypeImageEffectHost
- kOfxPropName
- (read only) the globally unique name of the application, eg: "com.acmesofware.funkyCompositor"
- kOfxPropLabel
- (read only) the user visible name of the appliaction,
- (read only) the user visible name of the application
- kOfxPropVersion
- (read only) the version number of the host
- kOfxPropVersionLabel
Expand Down
2 changes: 1 addition & 1 deletion HostSupport/src/ofxhHost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace OFX {

static const Property::PropSpec hostStuffs[] = {
{ kOfxPropAPIVersion, Property::eInt, 0, false, "" },
{ kOfxPropType, Property::eString, 1, false, "Host" },
{ kOfxPropType, Property::eString, 1, false, kOfxTypeImageEffectHost },
{ kOfxPropName, Property::eString, 1, false, "UNKNOWN" },
{ kOfxPropLabel, Property::eString, 1, false, "UNKNOWN" },
{ kOfxPropVersion, Property::eInt, 0, false, "0" },
Expand Down
3 changes: 3 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ This is version 1.6 of the OpenFX API.

## Fixes in OpenFX Version 1.6:

- Clarify that Image Effect Hosts property `kOfxPropType` must have the value
`kOfxTypeImageEffectHost`, and fix host support lib to implement that.

## Deprecations

## Detailed List of Changes
Expand Down
Loading