acrosman / electronForce

A basic Salesforce Org exploration tool written with Electron and JSForce.
MIT License
13 stars 13 forks source link

Update Electron to v22 #79

Closed acrosman closed 1 year ago

acrosman commented 2 years ago

Summary Electron version 20 is out, this project should be updated to use it.

Known Refactors Electron 20 adds default support for sandboxing renderer windows. The preload scripts for this project need to refactored to no longer import the list of handlers used for defining the list of send channels. Now that list needs to be hard coded into an array like the receive channels are. You can get the list of functions from the handlers object in the src/electronForce.js file.

acrosman commented 1 year ago

In progress