Skip to content

Commit 6215a8e

Browse files
chore(docs): Remove dead links to terms / privacy. Also change some MIT -> FSL references.
1 parent 26c553c commit 6215a8e

File tree

6 files changed

+5
-14
lines changed

6 files changed

+5
-14
lines changed

docs/docs/features/agents/review-agent.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ codebase that the agent may fetch to perform the review.
1010

1111
This agent provides codebase-aware reviews for your PRs. For each diff, this agent fetches relevant context from Sourcebot and feeds it into an LLM for a detailed review of your changes.
1212

13-
The AI Code Review Agent is [open source](https://github.com/sourcebot-dev/sourcebot/tree/main/packages/web/src/features/agents/review-agent) and packaged in [Sourcebot](https://github.com/sourcebot-dev/sourcebot). To get started using this agent, [deploy Sourcebot](/docs/deployment-guide)
13+
The AI Code Review Agent is [fair source](https://github.com/sourcebot-dev/sourcebot/tree/main/packages/web/src/features/agents/review-agent) and packaged in [Sourcebot](https://github.com/sourcebot-dev/sourcebot). To get started using this agent, [deploy Sourcebot](/docs/deployment-guide)
1414
and then follow the configuration instructions below.
1515

1616
![AI Code Review Agent Example](/images/review_agent_example.png)

docs/docs/license-key.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebarTitle: License key
77
If you'd like a trial license, [reach out](https://www.sourcebot.dev/contact) and we'll send one over within 24 hours
88
</Note>
99

10-
All core Sourcebot features are available in Sourcebot OSS (MIT Licensed) without any limits. Some additional features require a license key. See the [pricing page](https://www.sourcebot.dev/pricing) for more details.
10+
All core Sourcebot features are available [FSL licensed](https://github.com/sourcebot-dev/sourcebot/blob/main/LICENSE.md#functional-source-license-version-11-alv2-future-license) without any limits. Some additional features require a license key. See the [pricing page](https://www.sourcebot.dev/pricing) for more details.
1111

1212

1313
## Activating a license key

docs/docs/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ title: "Overview"
2222
- **Self-hosted:** Deploy it in minutes using our official [docker container](https://github.com/sourcebot-dev/sourcebot/pkgs/container/sourcebot). All of your data stays on your machine.
2323
- **Modern design:** Light/Dark mode, vim keybindings, keyboard shortcuts, syntax highlighting, etc.
2424
- **Scalable:** Scales to millions of lines of code.
25-
- **Open-source:** Core features are MIT licensed.
25+
- **Fair-source:** Core features are [FSL licensed](https://github.com/sourcebot-dev/sourcebot/blob/main/LICENSE.md#functional-source-license-version-11-alv2-future-license).
2626
</Accordion>
2727
</AccordionGroup>
2828

@@ -196,7 +196,7 @@ Sourcebot does not support horizontal scaling at this time, but it is on our roa
196196
## License key
197197
---
198198

199-
Sourcebot's core features are available under an [MIT license](https://github.com/sourcebot-dev/sourcebot/blob/HEAD/LICENSE) without any limits. Some [additional features](/docs/license-key#feature-availability) such as SSO and code navigation require a [license key](/docs/license-key).
199+
Sourcebot's core features are available under an [FSL licensed](https://github.com/sourcebot-dev/sourcebot/blob/main/LICENSE.md#functional-source-license-version-11-alv2-future-license) without any limits. Some [additional features](/docs/license-key#feature-availability) such as SSO and code navigation require a [license key](/docs/license-key).
200200

201201
<CardGroup cols={2}>
202202
<Card title="Pricing page" href="https://www.sourcebot.dev/pricing" />

packages/web/src/app/components/footer.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ export function Footer() {
88
<Separator orientation="vertical" className="h-4" />
99
<Link href="https://docs.sourcebot.dev" className="text-gray-400 text-sm hover:underline">Docs</Link>
1010
<Separator orientation="vertical" className="h-4" />
11-
<Link href="https://sourcebot.dev/terms" className="text-gray-400 text-sm hover:underline">Terms</Link>
12-
<Separator orientation="vertical" className="h-4" />
1311
<Link href="https://sourcebot.dev/security" className="text-gray-400 text-sm hover:underline">Security</Link>
1412
<Separator orientation="vertical" className="h-4" />
1513
<Link href="https://www.sourcebot.dev/contact" target="_blank" className="text-gray-400 text-sm hover:underline">Contact Us</Link>

packages/web/src/app/components/securityCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function SecurityCard() {
3939
<CheckCircle className="h-5 w-5 text-[#9D5CFF] mr-3 mt-0.5 flex-shrink-0" />
4040
<div className="text-sm text-foregroundSecondary text-left">
4141
<div className="flex items-center">
42-
<span>Sourcebot is open-source and trusted by thousands of developers</span>
42+
<span>Sourcebot is fair-source and trusted by thousands of developers</span>
4343
<Link
4444
href="https://github.com/sourcebot-dev/sourcebot"
4545
target="_blank"

packages/web/src/app/login/components/loginForm.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@ import { SourcebotLogo } from "@/app/components/sourcebotLogo";
66
import { AuthMethodSelector } from "@/app/components/authMethodSelector";
77
import useCaptureEvent from "@/hooks/useCaptureEvent";
88
import Link from "next/link";
9-
import { env } from "@/env.mjs";
109
import type { AuthProvider } from "@/lib/authProviders";
1110

12-
const TERMS_OF_SERVICE_URL = "https://sourcebot.dev/terms";
13-
const PRIVACY_POLICY_URL = "https://sourcebot.dev/privacy";
14-
1511
interface LoginFormProps {
1612
callbackUrl?: string;
1713
error?: string;
@@ -96,9 +92,6 @@ export const LoginForm = ({ callbackUrl, error, providers, context }: LoginFormP
9692
}
9793
</p>
9894
</Card>
99-
{env.NEXT_PUBLIC_SOURCEBOT_CLOUD_ENVIRONMENT !== undefined && (
100-
<p className="text-xs text-muted-foreground mt-8">By signing in, you agree to the <Link className="underline" href={TERMS_OF_SERVICE_URL} target="_blank">Terms of Service</Link> and <Link className="underline" href={PRIVACY_POLICY_URL} target="_blank">Privacy Policy</Link>.</p>
101-
)}
10295
</div>
10396
)
10497
}

0 commit comments

Comments
 (0)