add maintainedBy to show green badge

pull/5370/head
Aniket-Engg 2 years ago committed by Aniket
parent 992504c6d6
commit b5423a3931
  1. 3
      apps/remix-ide/src/app/panels/file-panel.js
  2. 3
      apps/remix-ide/src/app/tabs/analysis-tab.js
  3. 1
      apps/remix-ide/src/app/tabs/compile-tab.js
  4. 3
      apps/remix-ide/src/app/tabs/debugger-tab.js
  5. 3
      apps/remix-ide/src/app/tabs/search.tsx
  6. 3
      apps/remix-ide/src/app/tabs/test-tab.js
  7. 1
      apps/remix-ide/src/app/udapp/run-tab.js

@ -37,7 +37,8 @@ const profile = {
kind: 'fileexplorer',
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/file_explorer.html',
version: packageJson.version
version: packageJson.version,
maintainedBy: 'Remix'
}
module.exports = class Filepanel extends ViewPlugin {
constructor (appManager) {

@ -18,7 +18,8 @@ const profile = {
kind: 'analysis',
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/static_analysis.html',
version: packageJson.version
version: packageJson.version,
maintainedBy: 'Remix'
}
class AnalysisTab extends ViewPlugin {

@ -19,6 +19,7 @@ const profile = {
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/solidity_editor.html',
version: packageJson.version,
maintainedBy: 'Remix',
methods: ['getCompilationResult', 'compile', 'compileWithParameters', 'setCompilerConfig', 'compileFile', 'getCompilerState']
}

@ -17,7 +17,8 @@ const profile = {
kind: 'debugging',
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/debugger.html',
version: packageJson.version
version: packageJson.version,
maintainedBy: 'Remix'
}
export class DebuggerTab extends DebuggerApiMixin(ViewPlugin) {

@ -12,7 +12,8 @@ const profile = {
kind: '',
location: 'sidePanel',
documentation: '',
version: packageJson.version
version: packageJson.version,
maintainedBy: 'Remix'
}
export class SearchPlugin extends ViewPlugin {

@ -18,7 +18,8 @@ const profile = {
icon: 'assets/img/unitTesting.webp',
description: 'Write and run unit tests for your contracts in Solidity',
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/unittesting.html'
documentation: 'https://remix-ide.readthedocs.io/en/latest/unittesting.html',
maintainedBy: 'Remix'
}
module.exports = class TestTab extends ViewPlugin {

@ -17,6 +17,7 @@ const profile = {
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/run.html',
version: packageJson.version,
maintainedBy: 'Remix',
permission: true,
events: ['newTransaction'],
methods: ['createVMAccount', 'sendTransaction', 'getAccounts', 'pendingTransactionsCount', 'getSettings', 'setEnvironmentMode', 'clearAllInstances', 'addInstance', 'resolveContractAndAddInstance']

Loading…
Cancel
Save