From 21d59402ea76c87e4126b47fd130f9e31b8819d5 Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Wed, 5 Jul 2023 14:54:48 +0530 Subject: [PATCH 1/3] fix typo --- apps/remix-ide/src/app/tabs/locales/en/home.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/locales/en/home.json b/apps/remix-ide/src/app/tabs/locales/en/home.json index c892190113d..01984c1bf8d 100644 --- a/apps/remix-ide/src/app/tabs/locales/en/home.json +++ b/apps/remix-ide/src/app/tabs/locales/en/home.json @@ -20,7 +20,7 @@ "home.featuredPlugins": "Featured Plugins", "home.solidityPluginDesc": "Compile, test and analyse smart contract.", "home.cookbookDesc": "Find smart contracts, solidity libraries, and discover protocols.", - "home.codeAnalyizerPluginDesc": "Analyze your code using Remix, Sohint and Sslither", + "home.codeAnalyizerPluginDesc": "Analyze your code using Remix, Solhint and Slither.", "home.starkNetPluginDesc": "Compile and deploy contracts with Cairo, a native language for StarkNet.", "home.solhintPluginDesc": "Solhint is an open source project for linting Solidity code.", "home.sourcifyPluginDesc": "Solidity contract and metadata verification service.", From d153972d778e0f8b8e5562164e98125f48ef7962 Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Wed, 5 Jul 2023 14:57:38 +0530 Subject: [PATCH 2/3] SUT MBR --- .../home-tab/src/lib/components/homeTabFeaturedPlugins.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/remix-ui/home-tab/src/lib/components/homeTabFeaturedPlugins.tsx b/libs/remix-ui/home-tab/src/lib/components/homeTabFeaturedPlugins.tsx index 0950ab13f16..395b3c1fb35 100644 --- a/libs/remix-ui/home-tab/src/lib/components/homeTabFeaturedPlugins.tsx +++ b/libs/remix-ui/home-tab/src/lib/components/homeTabFeaturedPlugins.tsx @@ -154,6 +154,7 @@ function HomeTabFeaturedPlugins ({plugin}: HomeTabFeaturedPluginsProps) { envID="sUTLogo" envText="Solidity unit testing" description={intl.formatMessage({ id: 'home.unitTestPluginDesc' })} + remixMaintained={true} callback={() => startSolidityUnitTesting()} /> From 1f0546d7868dd65f0a3d632b8b12c6f959d470fc Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Wed, 5 Jul 2023 15:02:24 +0530 Subject: [PATCH 3/3] update SSA plugin desc --- apps/remix-ide/src/app/tabs/analysis-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/analysis-tab.js b/apps/remix-ide/src/app/tabs/analysis-tab.js index 250cd482b35..85b0887c5c5 100644 --- a/apps/remix-ide/src/app/tabs/analysis-tab.js +++ b/apps/remix-ide/src/app/tabs/analysis-tab.js @@ -14,7 +14,7 @@ const profile = { methods: [], events: [], icon: 'assets/img/staticAnalysis.webp', - description: 'Checks the contract code for security vulnerabilities and bad practices.', + description: 'Analyze your code using Remix, Solhint and Slither.', kind: 'analysis', location: 'sidePanel', documentation: 'https://remix-ide.readthedocs.io/en/latest/static_analysis.html',