ethereum / remix-desktop

Remix IDE desktop
1.02k stars 264 forks source link

White screen on Remix IDE Ubuntu Linux 20.04 #124

Closed franck2019 closed 1 year ago

franck2019 commented 2 years ago

image

franck2019 commented 2 years ago

How can I resolve it?

For now I just want to retrieve the directory I created with the ide.

Where does the remix IDE Desktop save all filles and/or directory ?

muturgan commented 2 years ago

same problem

Henry-Freck commented 2 years ago

Same problem

ghost commented 2 years ago

Same problem, just blank image

n00b21337 commented 2 years ago

Same thing :(

n00b21337 commented 2 years ago

Tried also previous version, same thing happens.

rickbeeloo commented 2 years ago

Same here :(

kj96 commented 2 years ago

This worked for me after a restart.

fetch('https://remix.ethereum.org/assets/version.json', { cache: "no-store" }).then(response => {
  response.text().then(function (data) {
    const version = JSON.parse(data);
    console.log(`Loading Remix ${version.version}`);
    createScriptTag(`polyfills.${version.version}.${version.timestamp}.js`, 'module');
    if (version.mode === 'development') {
      createScriptTag(`vendor.${version.version}.${version.timestamp}.js`, 'module');
      createScriptTag(`runtime.${version.version}.${version.timestamp}.js`, 'module');
    }
    createScriptTag(`main.${version.version}.${version.timestamp}.js`, 'text/javascript');
  });
});
yann300 commented 1 year ago

The latest release should fix that: https://github.com/ethereum/remix-desktop/releases please reopen if the issue is still persisting