Skip to content

Commit

Permalink
Merge pull request #209 from purduesigbots/release/0.7.1
Browse files Browse the repository at this point in the history
🔖 Release 0.7.1
  • Loading branch information
BennyBot authored Feb 2, 2024
2 parents a0d4b1d + bebe187 commit 9743cb0
Show file tree
Hide file tree
Showing 6 changed files with 1,802 additions and 1,297 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",
"cmake.configureOnOpen": false
}
4 changes: 1 addition & 3 deletions media/brainView.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
programList.innerHTML = "Programs:<br>";
deviceInfo.programs.forEach((program) => {
//programList.innerHTML += `<option value=${program.slot} ${Number(program.slot) === Number(deviceInfo.currentSlot) ? "selected" : ""}>${program.file}</option>`;
programList.innerHTML += `Slot ${program.slot}: ${program.file}`;
programList.innerHTML += `Slot ${program.slot}: ${program.file}<br>`;
});
deviceContainer.innerHTML = "";
deviceInfo.devices.forEach((device) => {
Expand All @@ -85,6 +85,4 @@
}>${deviceInfo.desc}</option>`;
});
}

setInterval(vscode.postMessage, 3000, { type: "updateDeviceList" });
})();
Loading

0 comments on commit 9743cb0

Please sign in to comment.