-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
editor crashes #49
Comments
obviously the portable version uses the same cache as the installed version. so even the installed version, i cannot start, it also hangs in this endless loop. Even when i completely delete the portable version, i cannot start the installed version. |
I have fixed WebApp to store source code only after execution to avoid infinite loops. To clear browser cache: click here To clear Desktop App cache look here: |
perfect, that helps for using the web-interface. |
Could you please do the changes, you have done on the WebApp also for the DesktopApp and the PortableApp? |
v2.1.6 release includes this fix. |
I try to edit the following code with the online editor or the downloaded software editor.
if i change i++ to i+1 or i+ or anything else, that was a mistypo. then the editor crashes. a reload does not help, because the cache is still full with the errornous code.
The downloaded software cannot be started again, because the errornous code is still in the cache, so propably i have to delete any init file or reinstall the software.
Seems to be an issue with an endless loop, that temporary exists in my code, but that i did not really want to be translated.
But even if i coded a bug, the tool should not hang up.
(function (bits, ticks) {
var i, t, gray, state, data = [], arr = [];
for (i = 0; i < bits; i++) {
arr.push({name: i + '', wave: ''});
state = 1;
for (t = 0; t < ticks; t++) {
data.push(t + '');
gray = (((t >> 1) ^ t) >> i) & 1;
arr[i].wave += (gray === state) ? '.' : gray + '';
state = gray;
}
}
arr.unshift('gray');
return {signal: [
{name: 'bin', wave: '='.repeat(ticks), data: data}, arr
]};
})(5, 16)
The text was updated successfully, but these errors were encountered: