Skip to content

Commit 4fd3c54

Browse files
Merge branch 'develop' of https://github.com/live-codes/livecodes into i18n/develop
2 parents 7488e39 + 45d2f16 commit 4fd3c54

23 files changed

+124
-250
lines changed

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ Add this code to your page:
110110
- [Dev Tools](https://livecodes.io/docs/features/tools-pane) ([console](https://livecodes.io/docs/features/console), [compiled code viewer](https://livecodes.io/docs/features/compiled-code), [test runner](https://livecodes.io/docs/features/tests))
111111
- [Code formatting](https://livecodes.io/docs/features/code-format)
112112
- [Intellisense](https://livecodes.io/docs/features/intellisense)
113-
- [AI Code Assistant 🪄](https://livecodes.io/docs/features/ai)
114113
- [Lite mode](https://livecodes.io/docs/features/lite)
115114
- [Read-only mode](https://livecodes.io/docs/features/read-only)
116115
- [Broadcast](https://livecodes.io/docs/features/broadcast)
@@ -270,11 +269,6 @@ LiveCodes uses services that are generously provided by:
270269
</img></a><br /><br />
271270
</p>
272271
<p>
273-
<a href="https://windsurf.com/" target="_blank" title="Windsurf">
274-
<img alt="Windsurf" width="200" src="https://dev.livecodes.io/docs/img/credits/windsurf.svg">
275-
</img></a><br /><br />
276-
</p>
277-
<p>
278272
<a href="https://m.do.co/c/fb8c00b45b91" target="_blank" title="DigitalOcean">
279273
<img alt="DigitalOcean" width="200" src="https://dev.livecodes.io/docs/img/credits/digital-ocean.svg">
280274
</img></a><br /><br />
@@ -310,11 +304,6 @@ LiveCodes uses services that are generously provided by:
310304
</img></a><br /><br />
311305
</p>
312306
<p>
313-
<a href="https://bundlewatch.io/" target="_blank" title="BundleWatch">
314-
<img alt="BundleWatch" width="200" src="https://dev.livecodes.io/docs/img/credits/bundlewatch.svg">
315-
</img></a><br /><br />
316-
</p>
317-
<p>
318307
<a href="https://www.browserstack.com/" target="_blank" title="BrowserStack">
319308
<img alt="BrowserStack" width="200" src="https://dev.livecodes.io/docs/img/credits/browserstack.svg">
320309
</img></a><br /><br />

docs/docs/configuration/configuration-object.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,14 +451,15 @@ Sets result page [zoom level](../features/result.mdx#result-page-zoom).
451451
## User Settings
452452

453453
These are properties that define the [user settings](./../features/user-settings.mdx), including [editor settings](../features/editor-settings.mdx).
454-
454+
{/*
455455
### `enableAI`
456456
457457
Type: [`boolean`](../api/interfaces/Config.md#enableai)
458458
459459
Default: `false`
460460
461461
If `true`, [AI code assistant](../features/ai.mdx) is enabled.
462+
*/}
462463

463464
### `autoupdate`
464465

docs/docs/credits.mdx

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,6 @@ LiveCodes uses services that are generously provided by:
5050
></img>
5151
</a>
5252
</p>
53-
<p>
54-
<a href="https://windsurf.com/" target="_blank" title="Windsurf">
55-
<img
56-
alt="Windsurf"
57-
width="200"
58-
src="/docs/img/credits/windsurf.svg"
59-
></img>
60-
</a>
61-
</p>
6253
<p>
6354
<a href="https://m.do.co/c/fb8c00b45b91" target="_blank" title="DigitalOcean">
6455
<img
@@ -122,15 +113,6 @@ LiveCodes uses services that are generously provided by:
122113
></img>
123114
</a>
124115
</p>
125-
<p>
126-
<a href="https://bundlewatch.io/" target="_blank" title="BundleWatch">
127-
<img
128-
alt="BundleWatch"
129-
width="200"
130-
src="/docs/img/credits/bundlewatch.svg"
131-
></img>
132-
</a>
133-
</p>
134116
<p>
135117
<a href="https://www.browserstack.com/" target="_blank" title="BrowserStack">
136118
<img

docs/docs/features/ai.mdx

Lines changed: 0 additions & 74 deletions
This file was deleted.

docs/docs/features/command-menu.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It can be triggered from the keyboard by pressing <kbd>Ctrl</kbd> + <kbd>K</kbd>
77
![Open Command Menu from UI](../../static/img/screenshots/command-menu-1.jpg)
88

99
The available commands cover a wide range of functionality, like showing and hiding UI elements (e.g. different editors, the [result page](./result.mdx), [console](./console.mdx), [compiled code viewer](./compiled-code.mdx), and [tests](./tests.mdx)), changing [languages](../languages), loading [starter templates](./templates.mdx), opening different screens (e.g. new project, opening saved projects, [import](./import.mdx), [embeds](./embeds.mdx), [deploy](./deploy.mdx), [share](./share.mdx) and more).
10-
In addition many commands can be executed from the command menu, such as running code, formatting code, changing settings (e.g. autorun, autosave, [AI code assistant](./ai.mdx), changing [themes](./themes.mdx), [editor settings](./editor-settings.mdx), and more).
10+
In addition many commands can be executed from the command menu, such as running code, formatting code, changing settings (e.g. autorun, autosave, changing [themes](./themes.mdx), [editor settings](./editor-settings.mdx), and more).
1111

1212
![LiveCodes Command Menu](../../static/img/screenshots/command-menu-2.jpg)
1313

docs/docs/features/editor-settings.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ import RunInLiveCodes from '../../src/components/RunInLiveCodes.tsx';
1717
A preview code editor is displayed to preview the settings in real time.
1818

1919
The settings selected in the `Editor Settings` screen are saved locally to [user settings](./user-settings.mdx) and are used subsequently. These include:
20-
20+
{/*
2121
### Enable AI Code Assistant
2222
2323
Enables the [AI code assistant](./ai.mdx). (Free and no account required)
24+
*/}
2425

2526
### Code Editor
2627

docs/docs/features/index.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ In this page, a quick overview of the important features are presented. A more d
2020

2121
The default code editor is the powerful editor that powers [VS Code](https://code.visualstudio.com/), featuring code-completion, go-to-definition, multi-cursor support and other powerful features you got used to. The editor is very [customizable](./editor-settings.mdx). It supports [keyboard shortcuts](./keyboard-shortcuts.mdx), [code formatting](./code-format.mdx), [Emmet abbreviations](./editor-settings.mdx#emmet) and even [Vim and Emacs bindings](./editor-settings.mdx#editor-modes).
2222

23-
## AI Code Assistant
24-
25-
LiveCodes supports AI-powered code completion, totally for **free**, using [Windsurf](https://windsurf.com/). No account or tokens required. Enable from [editor settings](./ai.mdx#ui) and enjoy the magic!
26-
2723
## Mobile-friendly
2824

2925
The responsive layout allows working on devices with different screen sizes. On mobile, a lighter-weight touch-friendly code editor (CodeMirror 6) is used, so that you can experiment your ideas on the go.

docs/docusaurus.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ const config: Config = {
159159
label: 'Import...',
160160
href: 'pathname:///../?screen=import',
161161
},
162-
{
163-
label: 'AI Code Assistant 🪄',
164-
to: '/features/ai',
165-
},
162+
// {
163+
// label: 'AI Code Assistant 🪄',
164+
// to: '/features/ai',
165+
// },
166166
{
167167
label: 'Bookmarklet',
168168
to: '/bookmarklet',

docs/sidebars.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const sidebars: SidebarsConfig = {
3232
'features/tests',
3333
'features/module-resolution',
3434
'features/intellisense',
35-
'features/ai',
35+
// 'features/ai',
3636
'features/code-format',
3737
'features/command-menu',
3838
'features/keyboard-shortcuts',

docs/src/components/HomepageCarousel.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ const screenshots = [
4242
label: 'IntelliSense (autocomplete)',
4343
url: './img/screenshots/intellisense-3.jpg',
4444
},
45-
{
46-
label: 'AI Code Assistant',
47-
url: './img/screenshots/ai-1.jpg',
48-
},
45+
// {
46+
// label: 'AI Code Assistant',
47+
// url: './img/screenshots/ai-1.jpg',
48+
// },
4949
{
5050
label: 'Console for quick inspection',
5151
url: './img/screenshots/console-1.jpg',

0 commit comments

Comments
 (0)