About page cleanup (#1472)
* Cleans up About page, adds PRIVACY.md * Change help link to new issue template
This commit is contained in:
Родитель
1b3c3f38f3
Коммит
e61fbf7cbf
|
@ -89,6 +89,7 @@ function getClientEnvironment(publicUrl) {
|
|||
GIT_SHA: getGitSha()
|
||||
.toString()
|
||||
.replace('\n', ''),
|
||||
SDK_PACKAGE_VERSON: '4.6.0-preview2', // TODO: change this when Composer supports custom schema/custom runtime
|
||||
}
|
||||
);
|
||||
// Stringify all values so we can feed into Webpack DefinePlugin
|
||||
|
|
|
@ -14,32 +14,60 @@ export const About = () => {
|
|||
<div css={about.content}>
|
||||
<div css={about.title}> {formatMessage(`About`)} </div>
|
||||
<div css={about.body}>
|
||||
<div css={about.version}>{formatMessage(`Version 0.0.1 - Alpha`)}</div>
|
||||
<div css={about.version}>{formatMessage(`Release: Preview 1.0`)}</div>
|
||||
<div css={about.description}>
|
||||
<p>
|
||||
{formatMessage(` Bot Framework Composer is an integrated development environment (IDE) for building
|
||||
{formatMessage(`Bot Framework Composer is an integrated development environment (IDE) for building
|
||||
bots and other types of conversational software with the Microsoft Bot Framework technology stack.
|
||||
Inside this web-based tool, you'll find everything you need to build a modern, state-of-the-art conversational experience.`)}
|
||||
Inside this web-based tool you will find everything you need to build a modern, state-of-the-art conversational experience.`)}
|
||||
</p>
|
||||
<p>
|
||||
{formatMessage(`Bot Framework Composer enables teams working to create bots to build all kinds of conversational experiences that use the
|
||||
latest features from the Bot Framework SDK without writing code. The Designer app reads and writes from the Adaptive Dialog format,
|
||||
a JSON specification shared by many tools provided by the Bot Framework. Dialogs, NLU training data and message templates are treated
|
||||
like normal developer assets - files that can be committed to source control and deployed alongside code updates.`)}
|
||||
latest components from the Bot Framework: SDK, LG, LU, and declarative file formats, all without writing code.`)}
|
||||
<Link
|
||||
href={'https://github.com/microsoft/BotFramework-Composer/blob/stable/toc.md'}
|
||||
tabIndex={-1}
|
||||
target={'_blank'}
|
||||
style={{ marginLeft: '5px' }}
|
||||
>
|
||||
{formatMessage(`Learn more`)}
|
||||
</Link>
|
||||
</p>
|
||||
</div>
|
||||
<div css={about.DiagnosticsInfo}>
|
||||
<div css={about.DiagnosticsInfoText}>
|
||||
<div css={about.DiagnosticsInfoTextAlignLeft}>{formatMessage(`Build SHA`)}</div>
|
||||
<div css={about.DiagnosticsInfoTextAlignLeft}>{formatMessage(`Application SHA`)}</div>
|
||||
<div css={about.DiagnosticsInfoTextAlignLeft}>
|
||||
{process.env.GIT_SHA || 'Unable to find Build number'}{' '}
|
||||
<Link
|
||||
href={`https://github.com/microsoft/BotFramework-Composer/commit/${process.env.GIT_SHA}`}
|
||||
tabIndex={-1}
|
||||
target={'_blank'}
|
||||
style={{ marginLeft: '5px' }}
|
||||
>
|
||||
{process.env.GIT_SHA || 'Unknown'}
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
<div css={about.DiagnosticsInfoText}>
|
||||
<div css={about.DiagnosticsInfoTextAlignLeft}>{formatMessage(`SDK runtime packages`)}</div>
|
||||
<div css={about.DiagnosticsInfoTextAlignLeft}>
|
||||
<Link
|
||||
href={`https://botbuilder.myget.org/feed/botbuilder-v4-dotnet-daily/package/nuget/Microsoft.Bot.Builder.Dialogs.Adaptive/${
|
||||
process.env.SDK_PACKAGE_VERSON
|
||||
}`}
|
||||
tabIndex={-1}
|
||||
target={'_blank'}
|
||||
style={{ marginLeft: '5px' }}
|
||||
>
|
||||
{process.env.SDK_PACKAGE_VERSON || 'Unknown'}
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div css={about.linkRow}>
|
||||
<Link
|
||||
href={'https://github.com/microsoft/BotFramework-Designer/blob/master/help.md'}
|
||||
href={'https://github.com/microsoft/BotFramework-Composer/issues/new/choose'}
|
||||
tabIndex={-1}
|
||||
target={'_blank'}
|
||||
>
|
||||
|
@ -47,22 +75,20 @@ export const About = () => {
|
|||
</Link>
|
||||
</div>
|
||||
<div css={about.linkContainer}>
|
||||
<div css={about.linkRow}>
|
||||
<IconButton styles={about.icon} iconProps={{ iconName: 'Info' }} />
|
||||
<Link href={'/about'} tabIndex={-1} target={'_blank'}>
|
||||
<div css={about.link}>{formatMessage(`Terms of Use`)} </div>
|
||||
</Link>
|
||||
</div>
|
||||
<div css={about.linkRow}>
|
||||
<IconButton styles={about.icon} iconProps={{ iconName: 'BlockedSite' }} />
|
||||
<Link href={'/about'} tabIndex={-1} target={'_blank'}>
|
||||
<div css={about.link}>{formatMessage(`Third-Party Notices`)} </div>
|
||||
<Link
|
||||
href={'https://github.com/microsoft/BotFramework-Composer/blob/stable/LICENSE.md'}
|
||||
tabIndex={-1}
|
||||
target={'_blank'}
|
||||
>
|
||||
<div css={about.link}>{formatMessage(`Terms of Use`)} </div>
|
||||
</Link>
|
||||
</div>
|
||||
<div css={about.linkRow}>
|
||||
<IconButton styles={about.icon} iconProps={{ iconName: 'Lock' }} />
|
||||
<Link
|
||||
href={'https://github.com/microsoft/BotFramework-Designer/blob/master/Private-Preview-LICENSE.md'}
|
||||
href={'https://github.com/microsoft/BotFramework-Composer/blob/stable/PRIVACY.md'}
|
||||
tabIndex={-1}
|
||||
target={'_blank'}
|
||||
>
|
||||
|
|
|
@ -60,7 +60,6 @@ export const DiagnosticsInfoText = css`
|
|||
`;
|
||||
|
||||
export const DiagnosticsInfoTextAlignLeft = css`
|
||||
width: 50%;
|
||||
text-align: left;
|
||||
`;
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
|
7
help.md
7
help.md
|
@ -1,7 +0,0 @@
|
|||
## Getting help with Bot Framework Composer
|
||||
|
||||
####Reach out to us! Here's how:
|
||||
|
||||
1. Talk to us on Microsoft Teams INSTRUCTIONS HERE
|
||||
2. Email us at EMAIL HERE
|
||||
3. [Open a GitHub issue](https://github.com/microsoft/BotFramework-Designer/issues/new)
|
Загрузка…
Ссылка в новой задаче