diff --git a/apps/remix-ide/src/app.js b/apps/remix-ide/src/app.js index c1d2fa7b09..6ee704dd48 100644 --- a/apps/remix-ide/src/app.js +++ b/apps/remix-ide/src/app.js @@ -510,9 +510,6 @@ class AppComponent { ) await this.appManager.activatePlugin(['solidity-script']) await this.appManager.activatePlugin(['solcoder']) - - - await this.appManager.activatePlugin(['filePanel']) // Set workspace after initial activation diff --git a/apps/remix-ide/src/app/plugins/remixGuide.tsx b/apps/remix-ide/src/app/plugins/remixGuide.tsx index 8112d2ff88..104ea11a3f 100644 --- a/apps/remix-ide/src/app/plugins/remixGuide.tsx +++ b/apps/remix-ide/src/app/plugins/remixGuide.tsx @@ -97,7 +97,7 @@ export class RemixGuidePlugin extends ViewPlugin { logo='/assets/img/YouTubeLogo.webp' enableFilter={true} showUntagged={true} - showPin={true} + showPin={false} tagList={[ ['beginner', 'danger'], ['advanced', 'warning'], @@ -131,7 +131,9 @@ export class RemixGuidePlugin extends ViewPlugin { }} logo={cell.expandViewElement.logo} > - + + + })} diff --git a/apps/remix-ide/src/app/plugins/remixGuideData.json b/apps/remix-ide/src/app/plugins/remixGuideData.json index 1e03ac8c4c..e8eeea0fad 100644 --- a/apps/remix-ide/src/app/plugins/remixGuideData.json +++ b/apps/remix-ide/src/app/plugins/remixGuideData.json @@ -13,6 +13,7 @@ "L2", "AI" ], + "authorURL": "EatTheBlocks", "expandViewElement": { "videoID": "vH8T3In6ZkE", "logo": "https://yt3.ggpht.com/9NFZbC9mkA152sSWJJgNBls6GlBdknsF-9gi6ZVk_xsHjmc82j3q1Pd5a--GCnOKUrP-YtNbHls=s48-c-k-c0x00ffffff-no-rj" diff --git a/apps/remix-ide/src/remixAppManager.js b/apps/remix-ide/src/remixAppManager.js index 107dda52a0..c2a59573cd 100644 --- a/apps/remix-ide/src/remixAppManager.js +++ b/apps/remix-ide/src/remixAppManager.js @@ -128,7 +128,7 @@ export function isNative(name) { 'circuit-compiler', 'compilationDetails', 'vyperCompilationDetails', - //'remixGuide', + 'remixGuide', 'walletconnect' ] return nativePlugins.includes(name) || requiredModules.includes(name) || isInjectedProvider(name) || isVM(name) @@ -157,7 +157,6 @@ export class RemixAppManager extends PluginManager { if (Registry.getInstance().get('platform').api.isDesktop()) { requiredModules = [...requiredModules, 'fs', 'electronTemplates', 'isogit', 'remix-templates', 'electronconfig', 'xterm', 'compilerloader', 'ripgrep'] } - } async canActivatePlugin(from, to) {