diff --git a/apps/client/src/features/app-settings/panel/about-panel/AboutPanel.tsx b/apps/client/src/features/app-settings/panel/about-panel/AboutPanel.tsx index 515fe07b2..8913ac913 100644 --- a/apps/client/src/features/app-settings/panel/about-panel/AboutPanel.tsx +++ b/apps/client/src/features/app-settings/panel/about-panel/AboutPanel.tsx @@ -28,7 +28,7 @@ export default function AboutPanel() { Buy Me a Coffee - And trying out our cloud service + If you are looking for an online version of Ontime, consider trying out our cloud service www.getontime.no diff --git a/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx b/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx index f9a73b036..5d52762f1 100644 --- a/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx +++ b/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx @@ -1,6 +1,6 @@ import ExternalLink from '../../../../common/components/link/external-link/ExternalLink'; import useAppVersion from '../../../../common/hooks-query/useAppVersion'; -import { appVersion } from '../../../../externals'; +import { appVersion, isOntimeCloud } from '../../../../externals'; import * as Panel from '../../panel-utils/PanelUtils'; export default function AppVersion() { @@ -17,13 +17,17 @@ export default function AppVersion() { if (data.hasUpdates) { return ( - <> - {`You are currently using Ontime version ${appVersion}.`} - - {`A new version ${data.version} is available.`} - Please visit the release page to download - - + + {`You are currently using Ontime version ${appVersion}.`} +
+
+ {`A new version ${data.version} is available.`}
+ {isOntimeCloud ? ( + 'You can restart your stage to get the latest available version.' + ) : ( + Please visit the release page to download + )} +
); } diff --git a/apps/client/src/features/app-settings/panel/manage-panel/CustomFields.tsx b/apps/client/src/features/app-settings/panel/manage-panel/CustomFields.tsx index 764d7fa1a..a4d3c21fd 100644 --- a/apps/client/src/features/app-settings/panel/manage-panel/CustomFields.tsx +++ b/apps/client/src/features/app-settings/panel/manage-panel/CustomFields.tsx @@ -5,6 +5,7 @@ import { CustomField, CustomFieldKey } from 'ontime-types'; import { deleteCustomField, editCustomField, postCustomField } from '../../../../common/api/customFields'; import Button from '../../../../common/components/buttons/Button'; import Info from '../../../../common/components/info/Info'; +import AppLink from '../../../../common/components/link/app-link/AppLink'; import ExternalLink from '../../../../common/components/link/external-link/ExternalLink'; import useCustomFields from '../../../../common/hooks-query/useCustomFields'; import { customFieldsDocsUrl } from '../../../../externals'; @@ -60,7 +61,8 @@ export default function CustomFieldSettings() { Custom fields allow for additional information to be added to an event.

- This data can be used in the Automation feature by using the generated key. + To use custom fields as a data source in an{' '} + Automation, please note the generated key. See the docs @@ -72,7 +74,7 @@ export default function CustomFieldSettings() { Colour Type Name - Key (used in Integrations) + Key (used in Automations) diff --git a/apps/client/src/features/app-settings/panel/manage-panel/sources-panel/GSheetInfo.tsx b/apps/client/src/features/app-settings/panel/manage-panel/sources-panel/GSheetInfo.tsx index 612cee61d..96388cf40 100644 --- a/apps/client/src/features/app-settings/panel/manage-panel/sources-panel/GSheetInfo.tsx +++ b/apps/client/src/features/app-settings/panel/manage-panel/sources-panel/GSheetInfo.tsx @@ -6,12 +6,12 @@ const googleSheetDocsUrl = 'https://docs.getontime.no/features/import-spreadshee export default function GSheetInfo() { return ( - Ontime allows you to synchronize your rundown with a Google Sheet. + Ontime can import data from spreadsheets by:
+ - importing the spreadsheet file in Ontime
+ - synchronising your project with a Google Sheet

- To enable this feature, you will need to generate tokens in your Google account and provide them to Ontime. -
- Once set up, you will be able to synchronize data between Ontime and your Google Sheet.
+ To synchronise with a Google Sheet, you will need to allow Ontime to authenticate with your Google account. See the docs
);