diff --git a/README.md b/README.md index a7a88f491..c1de054cd 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ This repository contains the source code of the Arduino IDE 2.x. If you're looki The Arduino IDE 2.x is a major rewrite, sharing no code with the IDE 1.x. It is based on the [Theia IDE](https://theia-ide.org/) framework and built with [Electron](https://www.electronjs.org/). The backend operations such as compilation and uploading are offloaded to an [arduino-cli](https://github.com/arduino/arduino-cli) instance running in daemon mode. This new IDE was developed with the goal of preserving the same interface and user experience of the previous major version in order to provide a frictionless upgrade. +TEST CHANGE + ![](static/screenshot.png) ## Download diff --git a/arduino-ide-extension/src/node/core-service-impl.ts b/arduino-ide-extension/src/node/core-service-impl.ts index 285c05f72..11a9471fa 100644 --- a/arduino-ide-extension/src/node/core-service-impl.ts +++ b/arduino-ide-extension/src/node/core-service-impl.ts @@ -78,6 +78,8 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService { options: CoreService.Options.Compile, cancellationToken?: CancellationToken ): Promise { + console.log('CORE IS COMPILING!!!'); + const coreClient = await this.coreClient; const { client, instance } = coreClient; const request = this.compileRequest(options, instance);