Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Removed

* Removed deprecated functions from the Desktop Agent, Channel and PrivateChannel APIs for deprecations applied in FDC3 2.0-2.2 ([#1928](https://github.com/finos/FDC3/pull/1928))
* Removed the deprecated `name` and `customConfig` properties from the App Directory `Application` record (`BaseApplication`) in the AppD specification, deprecated since FDC3 2.0. ([#1937](https://github.com/finos/FDC3/issues/1937))

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,6 @@
"details": {
"$ref": "#/components/schemas/LaunchDetails"
},
"name": {
"type": "string",
"description": "Deprecated in favour of using `appId` to identify apps and `title` for their display names. The name of the application. The name should be unique within an FDC3 App Directory instance. The exception to the uniqueness constraint is that an App Directory can hold definitions for multiple versions of the same app. The same appName could occur in other directories. We are not currently specifying app name conventions in the document.",
"deprecated": true
},
"version": {
"type": "string",
"description": "Version of the application. This allows multiple app versions to be defined using the same app name. This can be a triplet but can also include things like 1.2.5 (BETA)"
Expand Down Expand Up @@ -529,14 +524,6 @@
"type": "string",
"description": "The name of the company that owns the application. The publisher has control over their namespace/app/signature."
},
"customConfig": {
"deprecated": true,
"type": "array",
"description": "An optional set of name value pairs that can be used to deliver custom data from an App Directory to a launcher. Deprecated due to a lack of a standard means of retrieval via the Desktop Agent API. To be replaced in a future version with an `applicationConfig` element and standard API to retrieve it. See issue [#1006](https://github.com/finos/FDC3/issues/1006) for details.",
"items": {
"$ref": "#/components/schemas/NameValuePair"
}
},
"hostManifests": {
"$ref": "#/components/schemas/HostManifests"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"appId": "fdc3-workbench",
"name": "fdc3-workbench",
"title": "FDC3 Workbench",
"description": "Development and test tool for FDC3 desktop agents and apps",
"categories": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"appId": "my-application",
"name": "my-application",
"title": "My Application",
"description": "An example application that uses FDC3 and fully describes itself in an AppD record.",
"categories": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ export class OpenHandler implements MessageHandler {
filterPublicDetails(appD: DirectoryApp, appID: AppIdentifier): AppMetadata {
return {
appId: appD.appId,
name: appD.name,
version: appD.version,
title: appD.title,
tooltip: appD.tooltip,
Expand Down
13 changes: 0 additions & 13 deletions website/static/schemas/next/appd.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,6 @@
"details": {
"$ref": "#/components/schemas/LaunchDetails"
},
"name": {
"type": "string",
"description": "Deprecated in favour of using `appId` to identify apps and `title` for their display names. The name of the application. The name should be unique within an FDC3 App Directory instance. The exception to the uniqueness constraint is that an App Directory can hold definitions for multiple versions of the same app. The same appName could occur in other directories. We are not currently specifying app name conventions in the document.",
"deprecated": true
},
"version": {
"type": "string",
"description": "Version of the application. This allows multiple app versions to be defined using the same app name. This can be a triplet but can also include things like 1.2.5 (BETA)"
Expand Down Expand Up @@ -529,14 +524,6 @@
"type": "string",
"description": "The name of the company that owns the application. The publisher has control over their namespace/app/signature."
},
"customConfig": {
"deprecated": true,
"type": "array",
"description": "An optional set of name value pairs that can be used to deliver custom data from an App Directory to a launcher. Deprecated due to a lack of a standard means of retrieval via the Desktop Agent API. To be replaced in a future version with an `applicationConfig` element and standard API to retrieve it. See issue [#1006](https://github.com/finos/FDC3/issues/1006) for details.",
"items": {
"$ref": "#/components/schemas/NameValuePair"
}
},
"hostManifests": {
"$ref": "#/components/schemas/HostManifests"
},
Expand Down
Loading