Skip to content

Commit 06f9f91

Browse files
authored
Subprotocol looping (#543)
stim protocol looping
1 parent f37836e commit 06f9f91

40 files changed

+971
-302
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
Changelog for Mantarray Frontend Components
22
===========================================
33

4-
1.5.1 (unreleased)
5-
-------------------
4+
1.6.0 (2023-05-25)
5+
------------------
66

77
Added:
88
^^^^^^
99
- Recording snapshot error modal when unable to converge during data analysis
10+
- Stimulation subprotocol looping
1011

12+
Changed:
13+
^^^^^^^^
14+
- Minimum phase duration is now 25μs instead of 20μs
1115

1216
1.5.0 (2023-05-12)
1317
------------------

components/basic_widgets/ButtonWidget.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
v-for="btn_index in num_of_btn"
66
:key="btn_index"
77
:ref="btn_index.toString()"
8-
class="span__button_label"
8+
class="span__button-label"
99
:style="btn_stateprop(btn_index)"
1010
@click="selected(btn_index)"
1111
@mouseenter="hover_active(btn_index)"
@@ -147,7 +147,7 @@ body {
147147
overflow: hidden;
148148
}
149149
150-
.span__button_label {
150+
.span__button-label {
151151
pointer-events: all;
152152
line-height: 100%;
153153
transform: rotate(0deg);

components/playback/waveform/Waveform.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ export default {
256256
plot_stim_data() {
257257
const x_axis_scale = this.x_axis_scale;
258258
const stim_data = this.stim_fill_assignments;
259+
259260
const area = d3_area()
260261
.x(function (d) {
261262
return x_axis_scale(d[0] / 1e6);

0 commit comments

Comments
 (0)