From 66d1943ce6e87b1bbfc4f75976019d3769f72579 Mon Sep 17 00:00:00 2001 From: Skylar Ray <137945430+sky-coderay@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:46:46 +0200 Subject: [PATCH 1/9] Update chat.ts --- libs/remix-ai-core/src/prompts/chat.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/remix-ai-core/src/prompts/chat.ts b/libs/remix-ai-core/src/prompts/chat.ts index e4fe561d97..81cd831183 100644 --- a/libs/remix-ai-core/src/prompts/chat.ts +++ b/libs/remix-ai-core/src/prompts/chat.ts @@ -3,12 +3,12 @@ import { ChatEntry } from "../types/types" export abstract class ChatHistory{ private static chatEntries:ChatEntry[] = [] - static queuSize:number = 7 // change the queue size wrt the GPU size + static queueSize:number = 7 // change the queue size wrt the GPU size public static pushHistory(prompt, result){ const chat:ChatEntry = [prompt, result] this.chatEntries.push(chat) - if (this.chatEntries.length > this.queuSize){this.chatEntries.shift()} + if (this.chatEntries.length > this.queueSize){this.chatEntries.shift()} } public static getHistory(){ @@ -18,4 +18,4 @@ export abstract class ChatHistory{ public static clearHistory(){ this.chatEntries = [] } -} \ No newline at end of file +} From 1ef0667562cd5dd0495563b80c3173e7b6388ab8 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:46:22 +0200 Subject: [PATCH 2/9] Update TEST.md --- apps/remixdesktop/TEST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remixdesktop/TEST.md b/apps/remixdesktop/TEST.md index b4de6f474f..ea730c689f 100644 --- a/apps/remixdesktop/TEST.md +++ b/apps/remixdesktop/TEST.md @@ -11,7 +11,7 @@ Testing runs through nightwatch that treats an electron application as a special version of chrome, which it is. It basically calls the executable which is built by the ./rundist.bash script which creates executables based on the current channel configuration package.json, ie "version": "1.0.8-insiders" -Executables are stored in the ./release directory. Without that executable you cannot run tests. You cannot call tests on local development instance that is launched by yarn start:dev. You need to create an exec first. +Executables are stored in the ./release directory. Without that executable you cannot run tests. You cannot call tests on local development instance that is launched by yarn start:dev. You need to create an executable file first. This is done by running ./rundist.bash From f615fe46692fc4c357ede984bea60da1c3540df2 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:55:55 +0200 Subject: [PATCH 3/9] Update README.md --- apps/remixdesktop/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remixdesktop/README.md b/apps/remixdesktop/README.md index 09447c6a2a..e854386a6a 100644 --- a/apps/remixdesktop/README.md +++ b/apps/remixdesktop/README.md @@ -7,7 +7,7 @@ In the main repo yarn, then run yarn serve In this directory apps/remixdesktop, yarn, then run: yarn start:dev to boot the electron app -Then app will be started in live reload mode, anything you do in Remix IDE will be reloaded. +Then, the app will be started in live reload mode, and anything you do in Remix IDE will be reloaded. It will not however reload electron code. You need to rerun yarn start:dev every time. If you run into issues with yarn when native node modules are being rebuilt you need From 6a59601b71a545757e5f0de53eb76845a099767b Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:57:14 +0200 Subject: [PATCH 4/9] Update README.md --- libs/remix-debug/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/remix-debug/README.md b/libs/remix-debug/README.md index ec923ce6df..f1139a299f 100644 --- a/libs/remix-debug/README.md +++ b/libs/remix-debug/README.md @@ -92,7 +92,7 @@ Some of the class details are as: **BreakpointManager** -`constructor({ traceManager, callTree, solidityProxy, locationToRowConverter })` : create new instance +`constructor({ traceManager, callTree, solidityProxy, locationToRowConverter })` : create a new instance `jumpNextBreakpoint(defaultToLimit)` : start looking for the next breakpoint @@ -112,7 +112,7 @@ Some of the class details are as: **StorageViewer** -`constructor (_context, _storageResolver, _traceManager)` : create new instance +`constructor (_context, _storageResolver, _traceManager)` : create a new instance `storageRange(defaultToLimit)` : return the storage for the current context (address and vm trace index) @@ -130,7 +130,7 @@ Some of the class details are as: **StorageResolver** -`constructor (options)` : create new instance +`constructor (options)` : create a new instance `storageRange(tx, stepIndex, address, callback)` : return the storage for the current context (address and vm trace index) From 890b7d4782a0293136775f6a514b30428b36b5dd Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:17:32 +0300 Subject: [PATCH 5/9] typo Update webpack.config.js --- apps/walletconnect/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/walletconnect/webpack.config.js b/apps/walletconnect/webpack.config.js index 3a3693c88a..c1ae621262 100644 --- a/apps/walletconnect/webpack.config.js +++ b/apps/walletconnect/webpack.config.js @@ -54,7 +54,7 @@ module.exports = composePlugins(withNx(), (config) => { }) ) - // souce-map loader + // source-map loader config.module.rules.push({ test: /\.js$/, use: ['source-map-loader'], From 1169a7015dfb6c8af8168e56ef738ed6600aadcc Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:50:12 +0300 Subject: [PATCH 6/9] fix: fix incorrect MIME type for favicon in HTML Update index.html --- apps/remix-ide/src/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/index.html b/apps/remix-ide/src/index.html index 826b145f72..7eb6776e5f 100644 --- a/apps/remix-ide/src/index.html +++ b/apps/remix-ide/src/index.html @@ -26,7 +26,7 @@ Remix - Ethereum IDE - + @@ -41,4 +41,4 @@ - \ No newline at end of file + From cc84b09a88d53085de3b0f5c19e0ebe58958275b Mon Sep 17 00:00:00 2001 From: Fallengirl <155266340+Fallengirl@users.noreply.github.com> Date: Sun, 22 Dec 2024 21:41:35 +0100 Subject: [PATCH 7/9] Update compiler.tsx --- apps/vyper/src/app/utils/compiler.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/vyper/src/app/utils/compiler.tsx b/apps/vyper/src/app/utils/compiler.tsx index e2cb6753ec..7f1c7d0f00 100644 --- a/apps/vyper/src/app/utils/compiler.tsx +++ b/apps/vyper/src/app/utils/compiler.tsx @@ -178,7 +178,7 @@ export async function compileContract(contract: string, compilerUrl: string, set } catch (e: any) { const errorGettingContract: VyperCompilationError = { status: 'failed', - message: e.mesaage, + message: e.message, error_type: 'fetch_contract' } @@ -230,7 +230,7 @@ export async function compileContract(contract: string, compilerUrl: string, set const errorGettingContract: VyperCompilationError = { status: 'failed', - message: err.mesaage, + message: err.message, error_type: 'unknown_error' } From 5a33c977080cc9143ee089e3dc408a65b5ba6ad9 Mon Sep 17 00:00:00 2001 From: Bilog WEB3 <155262265+Bilogweb3@users.noreply.github.com> Date: Sun, 22 Dec 2024 19:52:11 +0100 Subject: [PATCH 8/9] Update InferenceServerManager.ts --- apps/remixdesktop/src/lib/InferenceServerManager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/remixdesktop/src/lib/InferenceServerManager.ts b/apps/remixdesktop/src/lib/InferenceServerManager.ts index fb180a26d6..231e815914 100644 --- a/apps/remixdesktop/src/lib/InferenceServerManager.ts +++ b/apps/remixdesktop/src/lib/InferenceServerManager.ts @@ -60,7 +60,7 @@ export class InferenceManager implements ICompletions { static getInstance(modelDir:string){ if (!InferenceManager.instance) { - // check if ther is a process already running + // check if there is a process already running if (!modelDir) { console.error('model directory is required to create InferenceManager instance') return null @@ -156,7 +156,7 @@ export class InferenceManager implements ICompletions { } async _handleResources(logger:boolean=false) { - // check resrource usage + // check resource usage const options = { headers: { 'Content-Type': 'application/json', } } const res = await axios.get(this.inferenceURL+"/sys", options) @@ -526,4 +526,4 @@ export class InferenceManager implements ICompletions { } } -} \ No newline at end of file +} From 5b7b3614568ac4741b37ec1306486d72f6d34266 Mon Sep 17 00:00:00 2001 From: Bilog WEB3 <155262265+Bilogweb3@users.noreply.github.com> Date: Sun, 22 Dec 2024 19:52:42 +0100 Subject: [PATCH 9/9] Update window.ts --- apps/remixdesktop/src/menus/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remixdesktop/src/menus/window.ts b/apps/remixdesktop/src/menus/window.ts index 30e2ef8125..e227ee99cb 100644 --- a/apps/remixdesktop/src/menus/window.ts +++ b/apps/remixdesktop/src/menus/window.ts @@ -15,7 +15,7 @@ export default ( type: 'separator' }, { - // It's the same thing as clicking the green traffc-light on macOS + // It's the same thing as clicking the green traffic-light on macOS role: 'zoom', accelerator: commandKeys['window:zoom'] },