mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-24 04:52:43 -07:00
fix(ui): update broken Terms of Service link in /auth (#23027)
This commit is contained in:
@@ -557,7 +557,7 @@ Before submitting your documentation pull request, please:
|
||||
|
||||
If you have questions about contributing documentation:
|
||||
|
||||
- Check our [FAQ](https://geminicli.com/docs/resources/faq).
|
||||
- Check our [FAQ](https://geminicli.com/docs/faq).
|
||||
- Review existing documentation for examples.
|
||||
- Open [an issue](https://github.com/google-gemini/gemini-cli/issues) to discuss
|
||||
your proposed changes.
|
||||
|
||||
@@ -382,7 +382,7 @@ instructions.
|
||||
## 📄 Legal
|
||||
|
||||
- **License**: [Apache License 2.0](LICENSE)
|
||||
- **Terms of Service**: [Terms & Privacy](./docs/resources/tos-privacy.md)
|
||||
- **Terms of Service**: [Terms & Privacy](./docs/tos-privacy)
|
||||
- **Security**: [Security Policy](SECURITY.md)
|
||||
|
||||
---
|
||||
|
||||
@@ -403,4 +403,4 @@ Your authentication method affects your quotas, pricing, Terms of Service, and
|
||||
privacy notices. Review the following pages to learn more:
|
||||
|
||||
- [Gemini CLI: Quotas and Pricing](../resources/quota-and-pricing.md).
|
||||
- [Gemini CLI: Terms of Service and Privacy Notice](../resources/tos-privacy.md).
|
||||
- [Gemini CLI: Terms of Service and Privacy Notice](../resources/tos-privacy).
|
||||
|
||||
@@ -118,8 +118,7 @@ Support, release history, and legal information.
|
||||
- **[FAQ](./resources/faq.md):** Answers to frequently asked questions.
|
||||
- **[Quota and pricing](./resources/quota-and-pricing.md):** Limits and billing
|
||||
details.
|
||||
- **[Terms and privacy](./resources/tos-privacy.md):** Official notices and
|
||||
terms.
|
||||
- **[Terms and privacy](./tos-privacy):** Official notices and terms.
|
||||
- **[Troubleshooting](./resources/troubleshooting.md):** Common issues and
|
||||
solutions.
|
||||
- **[Uninstall](./resources/uninstall.md):** How to uninstall Gemini CLI.
|
||||
|
||||
@@ -214,7 +214,7 @@ export async function parseArguments(
|
||||
string: true,
|
||||
nargs: 1,
|
||||
description:
|
||||
'[DEPRECATED: Use Policy Engine instead See https://geminicli.com/docs/core/policy-engine] Tools that are allowed to run without confirmation',
|
||||
'[DEPRECATED: Use Policy Engine instead See https://geminicli.com/docs/policy-engine] Tools that are allowed to run without confirmation',
|
||||
coerce: coerceCommaSeparated,
|
||||
})
|
||||
.option('extensions', {
|
||||
|
||||
@@ -323,9 +323,7 @@ describe('settings-validation', () => {
|
||||
expect(formatted).toContain('model.name');
|
||||
expect(formatted).toContain('Expected: string, but received: object');
|
||||
expect(formatted).toContain('Please fix the configuration.');
|
||||
expect(formatted).toContain(
|
||||
'https://geminicli.com/docs/reference/configuration/',
|
||||
);
|
||||
expect(formatted).toContain('https://geminicli.com/docs/configuration');
|
||||
}
|
||||
});
|
||||
|
||||
@@ -363,9 +361,7 @@ describe('settings-validation', () => {
|
||||
if (result.error) {
|
||||
const formatted = formatValidationError(result.error, 'test.json');
|
||||
|
||||
expect(formatted).toContain(
|
||||
'https://geminicli.com/docs/reference/configuration/',
|
||||
);
|
||||
expect(formatted).toContain('https://geminicli.com/docs/configuration');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -327,7 +327,7 @@ export function formatValidationError(
|
||||
}
|
||||
|
||||
lines.push('Please fix the configuration.');
|
||||
lines.push('See: https://geminicli.com/docs/reference/configuration/');
|
||||
lines.push('See: https://geminicli.com/docs/configuration');
|
||||
|
||||
return lines.join('\n');
|
||||
}
|
||||
|
||||
@@ -239,7 +239,7 @@ export async function main() {
|
||||
) {
|
||||
coreEvents.emitFeedback(
|
||||
'warning',
|
||||
'Warning: --allowed-tools cli argument and tools.allowed in settings.json are deprecated and will be removed in 1.0: Migrate to Policy Engine: https://geminicli.com/docs/core/policy-engine/',
|
||||
'Warning: --allowed-tools cli argument and tools.allowed in settings.json are deprecated and will be removed in 1.0: Migrate to Policy Engine: https://geminicli.com/docs/policy-engine',
|
||||
);
|
||||
}
|
||||
|
||||
@@ -249,7 +249,7 @@ export async function main() {
|
||||
) {
|
||||
coreEvents.emitFeedback(
|
||||
'warning',
|
||||
'Warning: tools.exclude in settings.json is deprecated and will be removed in 1.0. Migrate to Policy Engine: https://geminicli.com/docs/core/policy-engine/',
|
||||
'Warning: tools.exclude in settings.json is deprecated and will be removed in 1.0. Migrate to Policy Engine: https://geminicli.com/docs/policy-engine',
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -246,7 +246,7 @@ export function AuthDialog({
|
||||
</Box>
|
||||
<Box marginTop={1}>
|
||||
<Text color={theme.text.link}>
|
||||
{'https://geminicli.com/docs/resources/tos-privacy/'}
|
||||
{'https://geminicli.com/docs/tos-privacy'}
|
||||
</Text>
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
@@ -15,7 +15,7 @@ exports[`AuthDialog > Snapshots > renders correctly with auth error 1`] = `
|
||||
│ │
|
||||
│ Terms of Services and Privacy Notice for Gemini CLI │
|
||||
│ │
|
||||
│ https://geminicli.com/docs/resources/tos-privacy/ │
|
||||
│ https://geminicli.com/docs/tos-privacy │
|
||||
│ │
|
||||
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
||||
"
|
||||
@@ -34,7 +34,7 @@ exports[`AuthDialog > Snapshots > renders correctly with default props 1`] = `
|
||||
│ │
|
||||
│ Terms of Services and Privacy Notice for Gemini CLI │
|
||||
│ │
|
||||
│ https://geminicli.com/docs/resources/tos-privacy/ │
|
||||
│ https://geminicli.com/docs/tos-privacy │
|
||||
│ │
|
||||
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
||||
"
|
||||
@@ -53,7 +53,7 @@ exports[`AuthDialog > Snapshots > renders correctly with enforced auth type 1`]
|
||||
│ │
|
||||
│ Terms of Services and Privacy Notice for Gemini CLI │
|
||||
│ │
|
||||
│ https://geminicli.com/docs/resources/tos-privacy/ │
|
||||
│ https://geminicli.com/docs/tos-privacy │
|
||||
│ │
|
||||
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
||||
"
|
||||
|
||||
@@ -41,7 +41,7 @@ export const DEFAULT_SELECTION_OPACITY = 0.2;
|
||||
export const DEFAULT_BORDER_OPACITY = 0.4;
|
||||
|
||||
export const KEYBOARD_SHORTCUTS_URL =
|
||||
'https://geminicli.com/docs/cli/keyboard-shortcuts/';
|
||||
'https://geminicli.com/docs/keyboard-shortcuts';
|
||||
export const LRU_BUFFER_PERF_CACHE_LIMIT = 20000;
|
||||
|
||||
// Max lines to show for active shell output when not focused
|
||||
|
||||
@@ -31,4 +31,4 @@ To use this extension, you'll need:
|
||||
# Terms of Service and Privacy Notice
|
||||
|
||||
By installing this extension, you agree to the
|
||||
[Terms of Service](https://geminicli.com/docs/resources/tos-privacy/).
|
||||
[Terms of Service](https://geminicli.com/docs/tos-privacy).
|
||||
|
||||
Reference in New Issue
Block a user