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 @@