From bad66d73fe429751e1b84e9a10d0f1018567a824 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Thu, 5 Sep 2024 16:43:56 +0100 Subject: [PATCH] On some connections (Serial, >9600 baud) XON/XOFF flow control is too slow to reliably throttle data transfer when writing files, and data can be lost. By default we add a delay after each write to Storage to help avoid this, but if your connection is stable you can turn this off and greatly increase write speeds. --- EspruinoTools | 2 +- manifest.json | 2 +- package.json | 2 +- serviceworker.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/EspruinoTools b/EspruinoTools index f578c365..a155e585 160000 --- a/EspruinoTools +++ b/EspruinoTools @@ -1 +1 @@ -Subproject commit f578c3658ed2b6272cf38ac6fa875cdee183fc90 +Subproject commit a155e58595e2ca1cadf6f194291020bfdac69ba6 diff --git a/manifest.json b/manifest.json index ac2c2435..e4819635 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "Espruino Web IDE", "short_name": "Espruino IDE", "description": "A Terminal and Graphical code Editor for Espruino JavaScript Microcontrollers", - "version": "0.79.5", + "version": "0.79.6", "app": { "background": { "scripts": ["js/background.js"] diff --git a/package.json b/package.json index 889fb330..df5fa359 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "espruino-web-ide", - "version": "0.79.5", + "version": "0.79.6", "description": "A Terminal and Graphical code Editor for Espruino JavaScript Microcontrollers", "//1": "-------------------------------------------------------- nw.js", "main": "main.html", diff --git a/serviceworker.js b/serviceworker.js index 8a813236..8647d5e6 100644 --- a/serviceworker.js +++ b/serviceworker.js @@ -1,5 +1,5 @@ // Service worker for Offline Web IDE -const VERSION = 'v126'; +const VERSION = 'v127'; const CACHED_RESOURCES = [ 'blockly/blockly_espruino.js',