Skip to content

Commit

Permalink
This is the first general stability patch for Grid Editor.
Browse files Browse the repository at this point in the history
Change log:
- Works with protocol 1.1.7
- Upon module remove, if the removed module's settings are in the local settings panel, the panel is reset
- Event value change is now slide or rotation
- Serial Port auto-open on Error 433, general force reload
- Removed Feedback Form, please contact support at intech dot studio for help
- Added synchronize, every 15ms runtime check for grid config synch
- Random age added to grid broadcast encoder
- Fixed macro action list order change issue
  • Loading branch information
kkerti committed Dec 23, 2020
1 parent 833936a commit b7628db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grid_editor",
"version": "0.0.920",
"version": "0.0.930",
"main": "./src/electron.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
<div class="absolute mt-2 w-full h-full flex justify-between items-start">
<div class="flex flex-col">
<DragModule/>
<Profiles/>
<!--<Profiles/>-->
<GlobalSettings/>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/app/stores/runtime.store.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const gridSyncProcess = readable(counter, function start(set){
counter = counter % 100;
set(counter);
synchronize();
}, 25);
}, 15);

return function stop(){
counter = 0;
Expand Down

0 comments on commit b7628db

Please sign in to comment.