From a282c2a8e9004bfaace939b299289f3d42b19ce5 Mon Sep 17 00:00:00 2001 From: Kris West Date: Mon, 4 Apr 2022 13:04:50 +0100 Subject: [PATCH 1/2] Defining a term for a single appD record --- docs/fdc3-glossary.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/fdc3-glossary.md b/docs/fdc3-glossary.md index 9899b0ddf..6537ce6af 100644 --- a/docs/fdc3-glossary.md +++ b/docs/fdc3-glossary.md @@ -6,9 +6,11 @@ sidebar_label: Glossary For the purposes of this Standard, the following definitions apply. Other terms are defined when first used, at which place they appear in bold and italic type. Terms explicitly defined in this Standard are not to be presumed to refer implicitly to similar terms defined elsewhere. Terms not defined are assumed to be well-known in the financial services or software industries. -- **app directory**: A repository of application metadata supporting discovery, for example via name or intent, and retrieval of metadata necessary to launch an application. - **app**: Shorthand for application. +- **app directory**: A repository of application metadata supporting discovery, for example via name or intent, and retrieval of metadata necessary to launch an application. +- **app directory record**: Metadata relating to a single application, encoded in JSON. - **appD**: Shorthand for app directory. +- **appD record**: Shorthand for app directory record. - **application**: Any endpoint on the desktop that is registered with/known by a Desktop Agent, launchable by a Desktop Agent, addressable by a Desktop Agent or otherwise able to interact with the Desktop Agent. - **application, hybrid**: Any web application running within the context of a standalone native application that embeds a web view, typically based on Chromium. - **application, native**: A non-web-based application; i.e., one that runs outside the context of web browser, web view or web container. A user-written program—typically implemented in a language such as C++, C#, Java, or Python, rather than JavaScript or TypeScript. From baa33e173f0786007afe47205c439d141ed0ed36 Mon Sep 17 00:00:00 2001 From: Kris West Date: Mon, 4 Apr 2022 13:38:21 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 009970fa2..8e2dbefa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). * `IntentResolution` now requires the name of the intent raised to included, allowing it to be used to determine the intent raised via `fdc3.raiseIntentForContext()`. ([#507](https://github.com/finos/FDC3/pull/507)) * A Trademarks page was added to acknowledge trademarks used within the Standard not owned by FINOS or the Linux Foundation ([#534](https://github.com/finos/FDC3/pull/534)) * Added details of FDC3's existing versioning and deprecation policies to the FDC3 compliance page ([#539](https://github.com/finos/FDC3/pull/539)) -* Add `IntentDeliveryFailed` to the `ResolveError` enumeration to be used when delivery of an intent and context to a targetted app or instance fails. ([#601](https://github.com/finos/FDC3/pull/601)) +* Added `IntentDeliveryFailed` to the `ResolveError` enumeration to be used when delivery of an intent and context to a targetted app or instance fails. ([#601](https://github.com/finos/FDC3/pull/601)) +* Added a definition for "app directory record" to the FDC3 glossary to be used to refer to a single appD record ([#658](https://github.com/finos/FDC3/pull/658)) ### Changed * Consolidated `Listener` documentation with other types ([#404](https://github.com/finos/FDC3/pull/404))