Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/addons/addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ const addons = [
'tw-disable-cloud-variables',
'tw-disable-compiler',
'editor-stepping',
'qcode'
'qcode',
'boxy-assistant'
];

const newAddons = [
'expanded-backpack',
'qcode'
'qcode',
'boxy-assistant'
];

// eslint-disable-next-line import/no-commonjs
Expand Down
33 changes: 33 additions & 0 deletions src/addons/addons/boxy-assistant/_manifest_entry.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/* OmniBlocks custom addon */

Check warning on line 1 in src/addons/addons/boxy-assistant/_manifest_entry.js

View workflow job for this annotation

GitHub Actions / 🎨 ESLint Results

ESLint

File ignored because of a matching ignore pattern. Use "--no-ignore" to override.
const manifest = {
"editorOnly": true,
"noTranslations": true,
"name": "Boxy AI Assistant",
"description": "An AI-powered assistant in the form of Boxy to help you learn and code better. Features local AI models and helpful animations.",
"credits": [
{
"name": "supervoidcoder",
"link": "https://github.com/supervoidcoder"
},
{
"name": "OmniBlocks Team"
}
],
"dynamicDisable": true,
"userscripts": [
{
"url": "userscript.js"
}
],
"userstyles": [
{
"url": "style.css"
}
],
"tags": [
"featured",
"new"
],
"enabledByDefault": false
};
export default manifest;
7 changes: 7 additions & 0 deletions src/addons/addons/boxy-assistant/_runtime_entry.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* OmniBlocks custom addon */

Check warning on line 1 in src/addons/addons/boxy-assistant/_runtime_entry.js

View workflow job for this annotation

GitHub Actions / 🎨 ESLint Results

ESLint

File ignored because of a matching ignore pattern. Use "--no-ignore" to override.
import _js from "./userscript.js";
import _css from "!css-loader!./style.css";
export const resources = {
"userscript.js": _js,
"style.css": _css,
};
Loading
Loading