|
|
@ -57,6 +57,7 @@ import { electronTemplates } from './app/plugins/electron/templatesPlugin' |
|
|
|
import { xtermPlugin } from './app/plugins/electron/xtermPlugin' |
|
|
|
import { xtermPlugin } from './app/plugins/electron/xtermPlugin' |
|
|
|
import { ripgrepPlugin } from './app/plugins/electron/ripgrepPlugin' |
|
|
|
import { ripgrepPlugin } from './app/plugins/electron/ripgrepPlugin' |
|
|
|
import { compilerLoaderPlugin, compilerLoaderPluginDesktop } from './app/plugins/electron/compilerLoaderPlugin' |
|
|
|
import { compilerLoaderPlugin, compilerLoaderPluginDesktop } from './app/plugins/electron/compilerLoaderPlugin' |
|
|
|
|
|
|
|
import { GitPlugin } from './app/plugins/git' |
|
|
|
|
|
|
|
|
|
|
|
import {OpenAIGpt} from './app/plugins/openaigpt' |
|
|
|
import {OpenAIGpt} from './app/plugins/openaigpt' |
|
|
|
|
|
|
|
|
|
|
@ -222,6 +223,9 @@ class AppComponent { |
|
|
|
//---- templates
|
|
|
|
//---- templates
|
|
|
|
const templates = new TemplatesPlugin() |
|
|
|
const templates = new TemplatesPlugin() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---- git
|
|
|
|
|
|
|
|
const git = new GitPlugin() |
|
|
|
|
|
|
|
|
|
|
|
//---------------- Solidity UML Generator -------------------------
|
|
|
|
//---------------- Solidity UML Generator -------------------------
|
|
|
|
const solidityumlgen = new SolidityUmlGen(appManager) |
|
|
|
const solidityumlgen = new SolidityUmlGen(appManager) |
|
|
|
|
|
|
|
|
|
|
@ -360,7 +364,8 @@ class AppComponent { |
|
|
|
solidityScript, |
|
|
|
solidityScript, |
|
|
|
templates, |
|
|
|
templates, |
|
|
|
openaigpt, |
|
|
|
openaigpt, |
|
|
|
copilotSuggestion |
|
|
|
copilotSuggestion, |
|
|
|
|
|
|
|
git |
|
|
|
]) |
|
|
|
]) |
|
|
|
|
|
|
|
|
|
|
|
//---- fs plugin
|
|
|
|
//---- fs plugin
|
|
|
@ -496,7 +501,7 @@ class AppComponent { |
|
|
|
]) |
|
|
|
]) |
|
|
|
await this.appManager.activatePlugin(['settings']) |
|
|
|
await this.appManager.activatePlugin(['settings']) |
|
|
|
|
|
|
|
|
|
|
|
await this.appManager.activatePlugin(['walkthrough', 'storage', 'search', 'compileAndRun', 'recorder']) |
|
|
|
await this.appManager.activatePlugin(['walkthrough', 'storage', 'search', 'compileAndRun', 'recorder', 'dgit']) |
|
|
|
await this.appManager.activatePlugin(['solidity-script', 'remix-templates']) |
|
|
|
await this.appManager.activatePlugin(['solidity-script', 'remix-templates']) |
|
|
|
|
|
|
|
|
|
|
|
if (isElectron()){ |
|
|
|
if (isElectron()){ |
|
|
|