aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-01-31 20:32:24 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2020-01-31 20:32:24 +0100
commitc2a8dce24722528928d8e107bdf5f123138a1bf2 (patch)
tree79a33528d9545f5221d0931ff0d5150f7ed65eff /src/components/settings
parentMerge pull request #336 from getferdi/l10n_develop (diff)
downloadferdium-app-c2a8dce24722528928d8e107bdf5f123138a1bf2.tar.gz
ferdium-app-c2a8dce24722528928d8e107bdf5f123138a1bf2.tar.zst
ferdium-app-c2a8dce24722528928d8e107bdf5f123138a1bf2.zip
Change Sentry reporting to be opt-in only
Diffstat (limited to 'src/components/settings')
-rw-r--r--src/components/settings/settings/EditSettingsForm.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js
index efb6eaa18..58ffd277e 100644
--- a/src/components/settings/settings/EditSettingsForm.js
+++ b/src/components/settings/settings/EditSettingsForm.js
@@ -32,6 +32,10 @@ const messages = defineMessages({
32 id: 'settings.app.headlineGeneral', 32 id: 'settings.app.headlineGeneral',
33 defaultMessage: '!!!General', 33 defaultMessage: '!!!General',
34 }, 34 },
35 sentryInfo: {
36 id: 'settings.app.sentryInfo',
37 defaultMessage: '!!!Sending telemetry data allows us to find errors in Ferdi - we will not send any personal information like your message data! Changing this option requires you to restart Ferdi.',
38 },
35 hibernateInfo: { 39 hibernateInfo: {
36 id: 'settings.app.hibernateInfo', 40 id: 'settings.app.hibernateInfo',
37 defaultMessage: '!!!By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.', 41 defaultMessage: '!!!By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.',
@@ -250,6 +254,8 @@ export default @observer class EditSettingsForm extends Component {
250 {isTrayEnabled && <Toggle field={form.$('startMinimized')} />} 254 {isTrayEnabled && <Toggle field={form.$('startMinimized')} />}
251 <Toggle field={form.$('privateNotifications')} /> 255 <Toggle field={form.$('privateNotifications')} />
252 <Toggle field={form.$('showServiceNavigationBar')} /> 256 <Toggle field={form.$('showServiceNavigationBar')} />
257 <Toggle field={form.$('sentry')} />
258 <p>{intl.formatMessage(messages.sentryInfo)}</p>
253 259
254 <Hr /> 260 <Hr />
255 261