diff --git a/README.md b/README.md index 2e65a06c..fad373ed 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ yarn test:app Outline is built and maintained by a small team – we'd love your help to fix bugs and add features! -However, before working on a pull request please let the core team know by creating or commenting in an issue on [GitHub](https://www.github.com/outline/outline/issues), and we'd also love to hear from you in our [Spectrum community](https://spectrum.chat/outline). This way we can ensure that an approach is agreed on before code is written and will hopefully help to get your contributions integrated faster! +However, before working on a pull request please let the core team know by creating or commenting in an issue on [GitHub](https://www.github.com/outline/outline/issues), and we'd also love to hear from you in the [Discussions](https://www.github.com/outline/outline/discussions). This way we can ensure that an approach is agreed on before code is written and will hopefully help to get your contributions integrated faster! If you’re looking for ways to get started, here's a list of ways to help us improve Outline: @@ -161,7 +161,6 @@ If you’re looking for ways to get started, here's a list of ways to help us im * Performance improvements, both on server and frontend * Developer happiness and documentation * Bugs and other issues listed on GitHub -* Helping others on Spectrum ## License diff --git a/app/menus/AccountMenu.js b/app/menus/AccountMenu.js index d9dce563..6c25350f 100644 --- a/app/menus/AccountMenu.js +++ b/app/menus/AccountMenu.js @@ -16,7 +16,6 @@ import { changelog, githubIssuesUrl, mailToUrl, - spectrumUrl, settings, } from "../../shared/utils/routeHelpers"; @@ -71,9 +70,6 @@ class AccountMenu extends React.Component { Changelog - - Community - Send us feedback diff --git a/server/__snapshots__/mailer.test.js.snap b/server/__snapshots__/mailer.test.js.snap index 37be51ef..b6741b22 100644 --- a/server/__snapshots__/mailer.test.js.snap +++ b/server/__snapshots__/mailer.test.js.snap @@ -43,7 +43,7 @@ Object { Outline is a place for your team to build and share knowledge. -
 
\\"Outline\\"
 

Welcome to Outline!

Outline is a place for your team to build and share knowledge.

To get started, head to your dashboard and try creating a collection to help document your workflow, create playbooks or help with team onboarding.

You can also import existing Markdown documents by dragging and dropping them to your collections.

 

View my dashboard

 
OutlineTwitterSpectrum
+
 
\\"Outline\\"
 

Welcome to Outline!

Outline is a place for your team to build and share knowledge.

To get started, head to your dashboard and try creating a collection to help document your workflow, create playbooks or help with team onboarding.

You can also import existing Markdown documents by dragging and dropping them to your collections.

 

View my dashboard

 
OutlineTwitter
diff --git a/server/emails/components/Footer.js b/server/emails/components/Footer.js index f32d59e8..1e34b4f2 100644 --- a/server/emails/components/Footer.js +++ b/server/emails/components/Footer.js @@ -1,7 +1,7 @@ // @flow import * as React from "react"; import { Table, TBody, TR, TD } from "oy-vey"; -import { twitterUrl, spectrumUrl } from "../../../shared/utils/routeHelpers"; +import { twitterUrl } from "../../../shared/utils/routeHelpers"; import theme from "../../../shared/styles/theme"; type Props = { @@ -46,9 +46,6 @@ export default ({ unsubscribeUrl }: Props) => { Twitter - - Spectrum - {unsubscribeUrl && ( diff --git a/server/onboarding/❤️ Support.md b/server/onboarding/❤️ Support.md index 2b21962b..b6870bb7 100644 --- a/server/onboarding/❤️ Support.md +++ b/server/onboarding/❤️ Support.md @@ -2,8 +2,8 @@ We hate bugs as much as you and do everything possible to keep the application b ## GitHub -If you have a GitHub account then you can also submit issues directly to the development team on our [open issue tracker](https://github.com/outline/outline/issues). +If you have a GitHub account then you can also submit bugs directly to the development team on our public [issue tracker](https://github.com/outline/outline/issues). ## Ideas -We’d love to hear your ideas about how Outline can be improved and features you would like to see built. The best place to let the team know is through our [Spectrum community](https://spectrum.chat/outline). +We’d love to hear your ideas about how Outline can be improved and features you would like to see built. The best place to let the team know is through [GitHub discussions](https://github.com/outline/outline/discussions). diff --git a/shared/utils/routeHelpers.js b/shared/utils/routeHelpers.js index 8b3d81c8..ec25200b 100644 --- a/shared/utils/routeHelpers.js +++ b/shared/utils/routeHelpers.js @@ -34,22 +34,10 @@ export function githubIssuesUrl(): string { return "https://www.github.com/outline/outline/issues"; } -export function slackAppStoreUrl(): string { - return "https://goabstract.slack.com/apps/A0W3UMKBQ-outline"; -} - -export function blogUrl(): string { - return "https://medium.com/getoutline"; -} - export function twitterUrl(): string { return "https://twitter.com/outlinewiki"; } -export function spectrumUrl(): string { - return "https://spectrum.chat/outline"; -} - export function mailToUrl(): string { return "mailto:hello@getoutline.com"; }