-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added live launch links for snap and added window options builder (#692)
* Add live links for snap and add window options builder * Apps update
- Loading branch information
Showing
12 changed files
with
89 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ import { randomUUID } from "./utils"; | |
* @returns List of app definitions. | ||
*/ | ||
export async function getApps(): Promise<PlatformApp[]> { | ||
return [OPENFIN_INFORMATION_APP, SNAP_NATIVE_TEST_APP]; | ||
return [OPENFIN_INFORMATION_APP, SNAP_NATIVE_TEST_APP, OPENFIN_WINDOW_APP]; | ||
} | ||
|
||
/** | ||
|
@@ -48,6 +48,28 @@ const OPENFIN_INFORMATION_APP: PlatformApp = { | |
tags: ["view", "openfin", "versions"] | ||
}; | ||
|
||
/** | ||
* App definition to use for demonstration which show OpenFin environment information. | ||
*/ | ||
const OPENFIN_WINDOW_APP: PlatformApp = { | ||
appId: "openfin-window-options-builder", | ||
title: "Window Options Builder", | ||
description: "A tool to create a classic window and demonstrate the different window options available", | ||
manifest: "http://localhost:8080/common/views/window-options/window.options.builder.view.fin.json", | ||
manifestType: "view", | ||
icons: [ | ||
{ | ||
src: "http://localhost:8080/common/images/icon-blue.png" | ||
} | ||
], | ||
contactEmail: "[email protected]", | ||
supportEmail: "[email protected]", | ||
publisher: "OpenFin", | ||
intents: [], | ||
images: [], | ||
tags: ["view", "openfin", "developer-tools"] | ||
}; | ||
|
||
/** | ||
* App definition for native test application. | ||
*/ | ||
|
3 changes: 3 additions & 0 deletions
3
...tegrate-with-snap/public/common/views/window-options/window.options.builder.view.fin.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"url": "http://built-on-openfin.github.io/container-starter/v34/use-window-options/html/app.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,5 +122,24 @@ | |
} | ||
], | ||
"tags": ["view", "analytics", "tools"] | ||
}, | ||
{ | ||
"appId": "window-options-builder", | ||
"name": "window-options-builder", | ||
"title": "Window Options Builder", | ||
"description": "A developer tool to help evaluate the options available when creating classic windows", | ||
"manifest": "http://localhost:8080/common/views/window-options/window.options.builder.view.fin.json", | ||
"manifestType": "view", | ||
"icons": [{ "src": "http://localhost:8080/common/images/icon-blue.png" }], | ||
"contactEmail": "[email protected]", | ||
"supportEmail": "[email protected]", | ||
"publisher": "OpenFin", | ||
"intents": [], | ||
"images": [ | ||
{ | ||
"src": "http://localhost:8080/common/images/previews/window-options-builder.png" | ||
} | ||
], | ||
"tags": ["view", "window", "tools"] | ||
} | ||
] |
Binary file added
BIN
+213 KB
...space-platform-starter/public/common/images/previews/window-options-builder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...-platform-starter/public/common/views/window-options/window.options.builder.view.fin.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"url": "https://built-on-openfin.github.io/container-starter/v34/use-window-options/html/app.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters