forked from neurodroid/stimfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.old
4223 lines (3573 loc) · 159 KB
/
ChangeLog.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-01-22 Christoph Schmidt-Hieber <[email protected]>
* src/app/doc.cpp, src/app/parentframe.cpp, src/core/core.cpp,
src/core/filelib/asciilib.cpp,
src/core/filelib/axg/AxoGraph_ReadWrite.cpp,
src/core/filelib/axg/fileUtils.cpp, src/core/filelib/hekalib.cpp:
* wx-2.9 and llvm-gcc build fixes
* zoom selection initialisation bug fix
[f6aa4d42fff5] [tip]
* src/app/app.cpp, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/eventdlg.cpp, src/app/doc.cpp, src/app/graph.cpp,
src/app/unopt.cpp, src/app/usrdlg/usrdlg.cpp, src/core/channel.cpp,
src/core/channel.h, src/core/core.cpp, src/core/filelib/abflib.cpp,
src/core/filelib/asciilib.cpp, src/core/filelib/atflib.cpp,
src/core/filelib/axglib.cpp,
src/core/filelib/axon/AxAbfFio32/abffiles.cpp,
src/core/filelib/axon/Common/unix.h, src/core/filelib/cfslib.cpp,
src/core/filelib/hdf5lib.cpp, src/core/filelib/hekalib.cpp,
src/core/recording.cpp, src/core/recording.h, src/core/section.cpp,
src/core/section.h, src/core/stimdefs.h, src/stfswig/stfswig.cxx:
* Re-established compatibility with wx-2.8 to prepare debian
packages.
[656d80e179da]
2011-01-20 Jose Guzman <[email protected]>
* TODO:
Added my todo
[f43edb6e2cfe]
2011-01-20 Christoph Schmidt-Hieber <[email protected]>
* .hgtags:
Added tag 0.10.5windows for changeset 2a20ae89c68b
[f5d6e314d036]
* .hgtags:
Merged.
[2a20ae89c68b] [0.10.5windows]
2011-01-18 Christoph Schmidt-Hieber <[email protected]>
* .hgtags:
Added tag 0.10.4mac for changeset eb7958be2b8f
[9d97c75467c8]
* m4/lt~obsolete.m4:
Tagged 0.10.4linux.
[eb7958be2b8f] [0.10.4mac]
2011-01-20 Christoph Schmidt-Hieber <[email protected]>
* configure.in, doc/sphinx/conf.py, doc/website/Home.html,
macosx/package.pmdoc/index.xml, nsis/installer.nsi, stfconf.h,
stimfit.plist.in, stimfit_VS03/stfioswig/stfioswig.vcproj,
stimfit_VS03/stfswig/stfswig.vcproj,
stimfit_VS03/stimfit/stimfit.vcproj, stimfit_VS03/stimfit_VS03.suo,
stimfit_VS03/stimfit_exe/stimfit_exe.vcproj:
* Accidentally packaged debug build in Windows
* Bumped version to 0.10.5
[946f8958c212]
2011-01-18 Christoph Schmidt-Hieber <[email protected]>
* .hgtags:
Added tag 0.10.4linux for changeset aaf0c5f75e25
[81bcba2ae953]
2011-01-20 Christoph Schmidt-Hieber <[email protected]>
* .hgtags:
Added tag 0.10.5windows for changeset bd7753c235c2
[a9cca83455cb]
2011-01-18 Christoph Schmidt-Hieber <[email protected]>
* .hgtags:
Removed tag 0.10.4mac
[aaf0c5f75e25] [0.10.4linux]
* .hgtags:
Removed tag 0.10.4mac
[bd7753c235c2]
* .hgtags:
Added tag 0.10.4windows for changeset 87b5a8bb7f13
[8050abf8d3cf]
* configure.in, doc/sphinx/conf.py, doc/website/Home.html,
macosx/package.pmdoc/index.xml, nsis/installer.nsi, stfconf.h,
stimfit.plist.in, stimfit_VS03/stimfit_VS03.suo:
Bumped version to 0.10.4
[87b5a8bb7f13] [0.10.4windows]
* .hgtags:
Added tag 0.10.4mac for changeset bdbc440cbaff
[f153650418ce]
* src/app/doc.cpp, src/app/parentframe.cpp:
Corrected a bug in channel zoom selection. Thanks to Jose for
reporting.
[bdbc440cbaff]
2011-01-16 Christoph Schmidt-Hieber <[email protected]>
* doc/sphinx/manual/python.rst, src/stfswig/extensions.py:
Updated Extensions documentation
[b1c8523aec5f]
* .hgtags:
Added tag 0.10.3mac for changeset 01f137313682
[fc1e5e6b647f]
* .hgtags:
Added tag 0.10.3linux for changeset 13b62604acd8
[01f137313682] [0.10.3mac]
* src/core/filelib/hekalib.cpp:
* Tagged 0.10.3windows
* Warning message for heka binaries
[13b62604acd8] [0.10.3linux]
* .hgtags:
Added tag 0.10.3windows for changeset 92739d9c869b
[b21889a4ec1f]
* src/app/doc.cpp, src/app/doc.h, src/app/parentframe.cpp,
src/app/parentframe.h, src/stfswig/stfswig.cxx,
stimfit_VS03/stimfit_VS03.suo:
Some fixes in Python interface for Windows
[92739d9c869b] [0.10.3windows]
* configure.in, doc/sphinx/conf.py, doc/website/Home.html,
macosx/package.pmdoc/index.xml, nsis/installer.nsi, src/app/app.cpp,
src/app/graph.cpp, src/core/measlib.h, src/core/recording.cpp,
stfconf.h, stimfit.plist.in,
stimfit_VS03/stfioswig/stfioswig.vcproj,
stimfit_VS03/stfswig/stfswig.vcproj,
stimfit_VS03/stimfit/stimfit.vcproj, stimfit_VS03/stimfit_VS03.suo,
stimfit_VS03/stimfit_exe/stimfit_exe.vcproj:
* Some more range checking in maxRise and maxDecay
* Corrected window focusing in Windows
[9becb9f44ebb]
* Makefile.am, src/app/app.cpp, src/app/app.h, src/app/doc.cpp,
src/app/graph.cpp, src/app/parentframe.cpp,
src/app/plugins/plugins.cpp, src/app/plugins/plugins.h,
src/app/unopt.cpp, src/core/measlib.h, src/core/stimdefs.h,
src/stfswig/spells.py:
* Proof of concept for calling Python functions from the menu.
* Some more range checking.
[9a59ac035801]
* nsis/installer.nsi, src/app/app.cpp, src/app/app.h,
src/app/unopt.cpp, src/stfswig/Makefile.am,
src/stfswig/extensions.py, src/stfswig/spells.py:
Started framework for Python extensions that can be called from the
menu
[9c7f538cce52]
2011-01-15 Christoph Schmidt-Hieber <[email protected]>
* nsis/installer.nsi, src/core/measlib.h, src/stfswig/Makefile.am,
src/stfswig/heka.py:
* Added heak.py to package
* Added missing range check in maxRise and maxDecay
[f904f4808447]
* configure.in, doc/sphinx/conf.py, doc/website/Home.html,
macosx/package.pmdoc/index.xml, nsis/installer.nsi, stfconf.h,
stimfit.plist.in:
Bumped version number to 0.10.2
[408c330485e4]
* .hgtags:
Added tag 0.10.2windows for changeset 32a5b1f7c864
[8fa13a4bf408]
* src/app/doc.cpp, stimfit_VS03/stimfit_VS03.suo:
Fixed a buffer overflow
[32a5b1f7c864] [0.10.2windows]
* .hgtags:
Added tag 0.10.1mac for changeset 907d9bd44b09
[e3128f853a03]
* src/core/filelib/hdf5lib.cpp:
Tagged 0.10.1linux
[907d9bd44b09] [0.10.1mac]
* .hgtags:
Added tag 0.10.1linux for changeset 4b7b705d35de
[62edd39c1cf1]
* .hgtags:
Added tag 0.10.1windows for changeset 5b1d091541fc
[4b7b705d35de] [0.10.1linux]
* .hgtags:
Removed tag 0.10.1
[5b1d091541fc] [0.10.1windows]
* .hgtags:
Added tag 0.10.1 for changeset dcc74249d0e4
[ae312006cad2]
* configure.in, doc/sphinx/conf.py, doc/website/Home.html,
macosx/package.pmdoc/index.xml, nsis/installer.nsi, src/app/app.cpp,
src/app/copygrid.cpp, src/app/dlgs/fitseldlg.cpp, src/app/doc.cpp,
src/app/graph.cpp, src/app/parentframe.cpp, src/app/view.cpp,
src/core/filelib/axg/AxoGraph_ReadWrite.cpp,
src/core/filelib/axglib.cpp, src/core/recording.cpp,
src/core/recording.h, stfconf.h, stimfit.plist.in,
stimfit_VS03/stfswig/stfswig.vcproj,
stimfit_VS03/stimfit/stimfit.vcproj, stimfit_VS03/stimfit_VS03.suo,
stimfit_VS03/stimfit_exe/stimfit_exe.vcproj:
* Removed some potential buffer overflows and null pointers
* Windows build fixes
* Bumped version number to 0.10.1
[dcc74249d0e4]
2011-01-14 Christoph Schmidt-Hieber <[email protected]>
* nsis/installer.nsi, stimfit_VS03/stfioswig/stfioswig.vcproj,
stimfit_VS03/stfswig/stfswig.vcproj,
stimfit_VS03/stimfit/stimfit.vcproj, stimfit_VS03/stimfit_VS03.suo,
stimfit_VS03/stimfit_exe/stimfit_exe.vcproj:
Windows toolchain update.
[fb653a6498f0]
* src/app/doc.cpp:
Added units to dialogs to avoid Threshold ambiguities. Thanks to
Janina Kowalski for reporting.
[540321b0bc65]
* Makefile.am, m4/lt~obsolete.m4, src/app/app.cpp, src/app/graph.cpp,
src/app/parentframe.cpp, src/app/view.cpp:
Mac bug fixes: child frame activation, menu bar swap.
[a632df799c1e]
2010-11-30 Christoph Schmidt-Hieber <[email protected]>
* src/app/app.cpp, src/app/app.h, src/app/childframe.cpp,
src/app/childframe.h, src/app/graph.cpp, src/app/view.cpp:
Major bug fixes to window focusing behaviour.
[335feade9b46]
2010-11-29 Jose Guzman <[email protected]>
* doc/sphinx/references/index.rst, src/app/.app.cpp.swo:
Updated references
[e99c3e6f7332]
2010-11-28 Jose Guzman <[email protected]>
* src/app/.app.cpp.swo, src/app/app.cpp:
Removed 'Convert file series' option from Main Menutoolbar under
Linux
[7f912d5486b5]
* src/app/app.cpp, src/app/app.h, src/app/doc.cpp,
src/app/parentframe.cpp:
Remove temporaly latency options from the main toolbar menu
[6c3ad561d777]
2010-11-26 Christoph Schmidt-Hieber <[email protected]>
* doc/sphinx/linux_install_guide/building.rst:
Minor documentation correction.
[814071c9ba6d]
* doc/sphinx/linux_install_guide/building.rst,
doc/sphinx/linux_install_guide/downloads.rst,
doc/sphinx/linux_install_guide/moduleonly.rst,
doc/sphinx/linux_install_guide/requirement.rst,
doc/sphinx/stfio/index.rst:
Considerably shortened and simplified Linux build instructions.
[8fbb1774ab64]
* m4/lt~obsolete.m4, src/app/childframe.cpp:
Fixed scrambled trace selection panel.
[f270882479ac]
2010-11-07 Christoph Schmidt-Hieber <[email protected]>
* configure.in, doc/sphinx/manual/python.rst, m4/lt~obsolete.m4,
macosx/scripts/build-wxpy.sh, macosx/scripts/change_deps_release.sh,
macosx/scripts/conf_mac_release.sh:
OS X build script updates.
[1834a4416ea4]
2010-11-03 Jose Guzman <[email protected]>
* doc/sphinx/linux_install_guide/building.rst:
Small change in Linux installation guide
[84929d2569ff]
2010-10-28 Jose Guzman <[email protected]>
* src/app/childframe.cpp, src/app/childframe.h, src/app/doc.cpp,
src/app/graph.cpp:
cleaning up code
[003df0db325a]
2010-10-28 Jose Guzman <[email protected]>
* src/app/app.h, src/app/childframe.cpp, src/app/childframe.h:
Use either zero-based or 1-based indices in the trace menu
[3248dfe8b815]
* src/app/childframe.cpp, src/app/childframe.h:
Trace menu more user-friendly
[833e72103a83]
* src/app/childframe.cpp, src/app/childframe.h:
Cleaning ugly debugging mensages and unused code
[bdb95cb40a28]
* src/app/childframe.cpp, src/app/childframe.h:
Edition in textcontrol allows to set trace number in the Trace
Selection window
[7f7ead386d0e]
2010-10-26 Jose Guzman <[email protected]>
* src/app/childframe.cpp, src/app/childframe.h:
Added wxSpinCtrl header to allow it use withouth the Python
environment
[395145469ed8]
* src/app/app.h, src/app/childframe.cpp, src/app/childframe.h:
substitution of wxComboBox by wxSpinCtrl in Trace selection menu to
provide a better use
[0b28a4500036]
2010-10-23 Jose Guzman <[email protected]>
* src/app/dlgs/cursorsdlg.cpp, src/app/dlgs/cursorsdlg.h:
'Cleaning debugging sentences'
[a179f074f36c]
2010-10-22 Jose Guzman <[email protected]>
* Merged version with Latency cursor menu
[014b0b76514c]
* src/app/app.cpp, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h, src/core/recording.h:
Latency Cursors Tab finished
[4e000c33b023]
* src/app/dlgs/cursorsdlg.cpp:
Latency cursor tab radiobuttons reoganized
[a6efa95bdc32]
* src/app/app.cpp:
Corrected menu separator in Menu->View when 2 channels are present
[457ea7213744]
2010-10-17 Christoph Schmidt-Hieber <[email protected]>
* src/stfswig/stfio_plot.py:
Add standard 2-axis plot to stfio_plot
[0942450c3493]
2010-10-17 Jose Guzman <[email protected]>
* src/app/app.cpp, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h, src/core/stimdefs.h:
Cursor settings menu can set the mode of the latency cursors. Still
no update from wxStfApp
[e34047d010f9]
* src/app/app.cpp, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h:
Event handling defined for radio buttons in Latency tab
[49872d0aace7]
2010-10-16 Jose Guzman <[email protected]>
* src/app/app.cpp, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h:
Added functionality to Textboxes in latency Tab option of Cursors
Settings menu
[3d76612d4168]
* src/app/dlgs/cursorsdlg.cpp, src/app/dlgs/cursorsdlg.h,
src/app/dlgs/smalldlgs.h, src/app/parentframe.cpp:
Gui for Tab option for latency cursors added (not functional)
[3e14e647ae7d]
2010-10-08 Christoph Schmidt-Hieber <[email protected]>
* src/stfswig/stfio_plot.py:
Some updates to plot module.
[d09b95c2a6ec]
2010-09-30 Christoph Schmidt-Hieber <[email protected]>
* src/core/recording.cpp, src/stfswig/stfio_plot.py:
Some modifications to stfio_plot module.
[73d21af44dda]
2010-09-20 Christoph Schmidt-Hieber <[email protected]>
* src/stfswig/stfio_plot.py:
Updated plotting functions.
[57c615051517]
2010-09-19 Christoph Schmidt-Hieber <[email protected]>
* macosx/scripts/change_deps_release.sh,
macosx/scripts/conf_mac_release.sh, macosx/scripts/mkimage.sh,
src/core/filelib/hekalib.cpp, src/core/filelib/hekalib.h:
* Updated os x scripts.
* Updated authorship in HEKA library.
[874a9f03044b]
* src/core/filelib/hekalib.cpp:
Check for zero before reading sizes.
[dd2339e8673f]
2010-09-16 Christoph Schmidt-Hieber <[email protected]>
* nsis/installer.nsi, stimfit_VS03/stimfit_VS03.suo:
Updated Windows build chain.
[055072cd326a]
* src/core/filelib/hekalib.cpp:
Use for_each throughout.
[1607b73cd762]
* src/core/filelib/hekalib.cpp:
Implement byte swapping for HEKA file written in big endian.
[b9cdaecf9f97]
2010-09-13 Christoph Schmidt-Hieber <[email protected]>
* .hgtags:
Added tag 0.10.0linux for changeset 8d25f28c6e3c
[a7ddefa65fd2]
* Makefile.am:
Updated linux distribution for 0.10.0
[8d25f28c6e3c] [0.10.0linux]
* src/app/copygrid.cpp, src/app/graph.cpp:
Corrected keyboard input behaviour.
[3e7f85fcca9a]
2010-09-11 Christoph Schmidt-Hieber <[email protected]>
* .hgignore, stimfit_VS03/stfioswig/Release/BuildLog.htm,
stimfit_VS03/stfioswig/Release/_stfio.exp,
stimfit_VS03/stfioswig/Release/_stfio.lib,
stimfit_VS03/stfioswig/Release/_stfio.pyd,
stimfit_VS03/stfioswig/Release/_stfio.pyd.intermediate.manifest,
stimfit_VS03/stfioswig/Release/mt.dep,
stimfit_VS03/stfioswig/Release/stfio.exp,
stimfit_VS03/stfioswig/Release/stfio.lib,
stimfit_VS03/stfioswig/Release/vc90.idb:
Removed build files from repository.
[a90cb68fce78]
* nsis/installer.nsi, src/app/app.cpp, src/app/app.h,
src/core/filelib/abflib.cpp, src/core/filelib/axg/fileUtils.cpp,
src/core/filelib/hdf5lib.cpp, src/core/filelib/hekalib.cpp,
src/core/filelib/igorlib.cpp,
stimfit_VS03/stfioswig/Release/BuildLog.htm,
stimfit_VS03/stfioswig/Release/_stfio.exp,
stimfit_VS03/stfioswig/Release/_stfio.lib,
stimfit_VS03/stfioswig/Release/_stfio.pyd,
stimfit_VS03/stfioswig/Release/_stfio.pyd.intermediate.manifest,
stimfit_VS03/stfioswig/Release/mt.dep,
stimfit_VS03/stfioswig/Release/stfio.exp,
stimfit_VS03/stfioswig/Release/stfio.lib,
stimfit_VS03/stfioswig/Release/vc90.idb,
stimfit_VS03/stfioswig/stfioswig.vcproj,
stimfit_VS03/stfioswig/stfioswig.vcproj.cs-s20.cs.user,
stimfit_VS03/stimfit/stimfit.vcproj, stimfit_VS03/stimfit_VS03.sln,
stimfit_VS03/stimfit_VS03.suo:
* Added heka library to WIndows build.
* Added stfio module to Windows installer.
[eafeb656f73e]
* src/core/core.cpp, src/core/filelib/cfslib.cpp,
src/core/filelib/cfslib.h:
Read *.dat files as heka if cfs fails.
[d641ba0cee92]
2010-09-10 Christoph Schmidt-Hieber <[email protected]>
* src/core/filelib/hekalib.cpp:
Preliminary HEKA file reading.
[e8d837406226]
* src/core/core.cpp, src/core/filelib/hekalib.cpp:
Resolve merge conflict
[8917808880f9]
* src/core/filelib/hekalib.cpp, src/stfswig/stfioswig.i,
src/stfswig/stfioswig_wrap.cxx:
Updated HEKA.
[0a0996c3a534]
2010-09-09 Christoph Schmidt-Hieber <[email protected]>
* src/core/filelib/hekalib.cpp:
HEKA update.
[f09b99e79c27]
* src/core/filelib/hekalib.cpp, src/core/filelib/hekalib.h,
src/stfswig/stfio.py, src/stfswig/stfioswig_wrap.cxx:
Minor HEKA modifications.
[57a0f1c6ec36]
2010-09-08 Christoph Schmidt-Hieber <[email protected]>
* src/core/filelib/hekalib.cpp:
Some more work on HEKA library.
[04cc7125e33d]
2010-09-07 Christoph Schmidt-Hieber <[email protected]>
* Makefile.am, src/app/app.cpp, src/core/core.cpp,
src/core/filelib/hekalib.cpp, src/core/filelib/hekalib.h,
src/stfswig/stfio.py, src/stfswig/stfioswig.cxx,
src/stfswig/stfioswig.i:
Some more work on the heka library.
[bcfa0e8a30d5]
* doc/sphinx/references/index.rst:
Updated references.
[0909aa29b116]
* src/app/unopt.cpp:
wxversion.select doesn't return an error code.
[a17ef4278207]
2010-09-06 Christoph Schmidt-Hieber <[email protected]>
* nsis/installer.nsi, stimfit_VS03/stimfit_VS03.suo:
Windows build chain update
[2a1d30231442]
* src/app/app.cpp, src/app/unopt.cpp:
Bug corrections: Registry key error message, keyboard input
failures. Thanks to Imre Vida for reporting.
[e7a2980bdd4d]
2010-08-30 Christoph Schmidt-Hieber <[email protected]>
* src/app/doc.cpp, src/core/core.cpp, src/core/core.h,
src/core/filelib/axglib.cpp, src/core/filelib/axglib.h,
src/core/stimdefs.h, src/stfswig/stfio_plot.py:
Some upgrades to Axograph library.
[16c65e805495]
* nsis/installer.nsi:
Updated nsis installer.
[ba48049fa932]
* nsis/installer.nsi, stimfit_VS03/stimfit/stimfit.vcproj,
stimfit_VS03/stimfit_VS03.suo:
Updated Windows build.
[de212196d650]
2010-08-13 Christoph Schmidt-Hieber <[email protected]>
* doc/sphinx/references/index.rst:
Added some urls to the references.
[10a5968b73fc]
2010-08-02 Christoph Schmidt-Hieber <[email protected]>
* src/app/app.cpp, src/app/app.h, src/app/copygrid.cpp,
src/app/graph.cpp, src/app/parentframe.cpp, src/app/parentframe.h:
Corrected wrong events being fired from the toolbar.
[e91502e4e7ed]
2010-08-01 Christoph Schmidt-Hieber <[email protected]>
* m4/lt~obsolete.m4, src/app/childframe.cpp, src/app/graph.cpp,
src/app/graph.h:
Tidied up graph.cpp.
[6ffd69a96d82]
* configure.in, doc/sphinx/conf.py, doc/website/Home.html,
macosx/package.pmdoc/index.xml, stfconf.h, stimfit.plist.in,
update_version.sh:
Bump version to 0.10.0
[c5f7c162887f]
* src/core/filelib/abflib.cpp, src/core/filelib/abflib.h,
src/core/filelib/axg/AxoGraph_ReadWrite.cpp,
src/core/filelib/axg/AxoGraph_ReadWrite.h,
src/core/filelib/axglib.cpp, src/core/filelib/axglib.h,
src/core/filelib/cfslib.cpp:
Corrected string handling errors.
[b17cef4a4998]
2010-07-31 Christoph Schmidt-Hieber <[email protected]>
* src/app/childframe.cpp:
Prevent setting out-of-range value for second channel.
[dcedd1a4de53]
* nsis/installer.nsi, src/core/filelib/abflib.cpp,
src/core/filelib/axon/AxAtfFio32/fileio2.cpp,
stimfit_VS03/stfswig/stfswig.vcproj,
stimfit_VS03/stfswig/stfswig.vcproj.cs-s20.cs.user,
stimfit_VS03/stimfit/stimfit.vcproj, stimfit_VS03/stimfit_VS03.suo,
stimfit_VS03/stimfit_exe/stimfit_exe.vcproj.cs-s20.cs.user:
Windows build fixes.
[e79585d5d527]
2010-07-30 Christoph Schmidt-Hieber <[email protected]>
* acsite.m4, m4/lt~obsolete.m4, src/app/graph.cpp, src/app/unopt.cpp:
Prevent access to 2nd channel in single-channel files.
[61cfdbb1a728]
2010-07-29 Jose Guzman <[email protected]>
* src/app/dlgs/smalldlgs.cpp, src/app/dlgs/smalldlgs.h:
pslope cursors removed from Batch menu option
[0a7bf9e330b1]
* configure.in, src/app/app.cpp, src/app/app.h, src/app/copygrid.cpp,
src/app/copygrid.h, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h, src/app/graph.cpp,
src/app/parentframe.cpp, src/app/parentframe.h, src/app/unopt.cpp,
src/core/measlib.h, src/core/recording.cpp, src/core/recording.h,
src/core/stimdefs.h, src/stfswig/stfswig.cxx, src/stfswig/stfswig.i:
1) slope cursors are restricted to WITH_PSLOPE preprocessor
directive 2) resolved BUG in PyCrust shell
[f71dcfe8ae26]
2010-07-28 Jose Guzman <[email protected]>
* src/app/unopt.cpp:
modified Function to import Python avoid **compulsive** reload!
[ad0d77df3745]
2010-07-27 Christoph Schmidt-Hieber <[email protected]>
* nsis/installer.nsi:
Updated windows installer.
[198cb8078f14]
* src/app/doc.cpp, src/core/filelib/hdf5lib.cpp,
src/core/recording.cpp:
Corrected some hdf5 string handling bugs.
[28a7777f1e74]
2010-07-25 Jose Guzman <[email protected]>
* src/app/graph.cpp, src/app/graph.h:
added blue cursors again, I need them to debug ..
[cd867e85050e]
2010-07-24 Jose Guzman <[email protected]>
* Makefile.am, src/app/graph.cpp, src/app/graph.h:
removed blue cursors from graph
[decb09d301eb]
* src/app/parentframe.cpp, src/app/parentframe.h:
removed Slope Cursors mode from menu Toolbar
[c68f9975ce2a]
* doc/sphinx/stf_reference/stf.rst, src/stfswig/stfswig.cxx,
src/stfswig/stfswig.h, src/stfswig/stfswig.i:
added get_slope() to the stf Python module
[2c6330cdd989]
2010-07-22 Jose Guzman <[email protected]>
* doc/sphinx/linux_install_guide/moduleonly.rst:
Changed stimfit-module to stimfit directory in the documentation
[9c67e7495fe7]
2010-07-21 Christoph Schmidt-Hieber <[email protected]>
* Makefile.am, nsis/installer.nsi, src/stfswig/Makefile.am,
src/stfswig/unittest_stfio.py, unittest.bz2:
Added unittest for stfio module. Binary data files are too large for
repository.
[d7cb004619b1]
* src/stfswig/stfio.py, src/stfswig/stfioswig.i,
src/stfswig/stfioswig_wrap.cxx:
Added Jose's suggestions.
[80441bcf3b40]
2010-07-21 Jose Guzman <[email protected]>
* unittest.bz2:
Added unittest. Please, remove it as soon as possible
[90b17d5ff7cc]
* doc/sphinx/linux_install_guide/moduleonly.rst, nsis/installer.nsi,
src/stfswig/Makefile.am, src/stfswig/stfio.py:
added suggested modification to stfio module (please, edit it in the
*.i file)
[0338eadc1aa8]
2010-07-19 Jose Guzman <[email protected]>
* doc/sphinx/.build/doctrees/contents.doctree,
doc/sphinx/.build/doctrees/environment.pickle,
doc/sphinx/.build/doctrees/howto/amplitudes.doctree,
doc/sphinx/.build/doctrees/howto/apcounting.doctree,
doc/sphinx/.build/doctrees/howto/cuttingtraces.doctree,
doc/sphinx/.build/doctrees/howto/index.doctree,
doc/sphinx/.build/doctrees/howto/introclass.doctree,
doc/sphinx/.build/doctrees/howto/latencies.doctree,
doc/sphinx/.build/doctrees/howto/resistances.doctree,
doc/sphinx/.build/doctrees/howto/runningmean.doctree,
doc/sphinx/.build/doctrees/links/index.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/building.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/downloads.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/index.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/requirement.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/updates.doctree,
doc/sphinx/.build/doctrees/manual/bibliography.doctree,
doc/sphinx/.build/doctrees/manual/event_extraction.doctree,
doc/sphinx/.build/doctrees/manual/getting_started.doctree,
doc/sphinx/.build/doctrees/manual/index.doctree,
doc/sphinx/.build/doctrees/manual/latency_measurements.doctree,
doc/sphinx/.build/doctrees/manual/preface.doctree,
doc/sphinx/.build/doctrees/manual/python.doctree,
doc/sphinx/.build/doctrees/osx_install_guide/building.doctree,
doc/sphinx/.build/doctrees/osx_install_guide/index.doctree,
doc/sphinx/.build/doctrees/osx_install_guide/prerequisites.doctree,
doc/sphinx/.build/doctrees/references/index.doctree,
doc/sphinx/.build/doctrees/stf_reference/stf.doctree,
doc/sphinx/.build/html/.buildinfo,
doc/sphinx/.build/html/_images/APmodule.png,
doc/sphinx/.build/html/_images/average.png,
doc/sphinx/.build/html/_images/bait_template.png,
doc/sphinx/.build/html/_images/baseline.png,
doc/sphinx/.build/html/_images/batchanalysis.png,
doc/sphinx/.build/html/_images/channelselection.png,
doc/sphinx/.build/html/_images/channelselectiondrop.png,
doc/sphinx/.build/html/_images/cursorsettings.png,
doc/sphinx/.build/html/_images/eventbutton.png,
doc/sphinx/.build/html/_images/eventdetectionsettings.png,
doc/sphinx/.build/html/_images/events.png,
doc/sphinx/.build/html/_images/falsenegative.png,
doc/sphinx/.build/html/_images/finaltemplate.png,
doc/sphinx/.build/html/_images/fit.png,
doc/sphinx/.build/html/_images/fitselection.png,
doc/sphinx/.build/html/_images/fittowindow.png,
doc/sphinx/.build/html/_images/foot.png,
doc/sphinx/.build/html/_images/latency.png,
doc/sphinx/.build/html/_images/latencytraces.png, doc/sphinx/.build/
html/_images/math/0697caad7caa424cb1d6913067117ac1ef4afcfc.png, doc/
sphinx/.build/html/_images/math/0772102cbdf827d21b8343e12c2a8766e0f1
7d97.png, doc/sphinx/.build/html/_images/math/0936df714cc1754db6b256
f7124c88641fdffa2d.png, doc/sphinx/.build/html/_images/math/10ac0238
27bb7b549e882c11b0109030b9d86041.png, doc/sphinx/.build/html/_images
/math/15c811c72fbb238885328c9dc4d880060dceef3f.png, doc/sphinx/.buil
d/html/_images/math/174fadd07fd54c9afe288e96558c92e0c1da733a.png, do
c/sphinx/.build/html/_images/math/3372c1cb6d68cf97c2d231acc0b47b95a9
ed04cc.png, doc/sphinx/.build/html/_images/math/34857b3ba74ce5cd8607
f3ebd23e9015908ada71.png, doc/sphinx/.build/html/_images/math/371cf6
c785f7ed9950174dc1a6fc0cb4aca3ae0b.png, doc/sphinx/.build/html/_imag
es/math/3ed5875026627e21c18c5d905b4b62b75f117b3c.png, doc/sphinx/.bu
ild/html/_images/math/48cb38340548251a81919e1b5547cc672dd63b41.png, d
oc/sphinx/.build/html/_images/math/53828380e66417b92d288f44849b4564c
2aefa34.png, doc/sphinx/.build/html/_images/math/6a47ca0fe7cb276abc0
22af6ac88ddae1a9d6894.png, doc/sphinx/.build/html/_images/math/99fb5
bc1bac149d49d8bf99756ed93173eacbfde.png, doc/sphinx/.build/html/_ima
ges/math/9e0ec34cd8860ceb97113f81ba768ba739ad5166.png, doc/sphinx/.b
uild/html/_images/math/9ee4b825a2e36ae093ed7be5e4851ef453b34914.png,
doc/sphinx/.build/html/_images/math/a041d4af2f54e7490ce650ba9960c7b4
9200a594.png, doc/sphinx/.build/html/_images/math/a1ffc0a012620941fe
660cedabff822ce7162eca.png, doc/sphinx/.build/html/_images/math/ad28
c83c99a8fd0dd2e2e594c9d02ee532765a0a.png, doc/sphinx/.build/html/_im
ages/math/c2ded198ceb12ab7c4b85de9f763e16a0631edce.png, doc/sphinx/.
build/html/_images/math/c384df5165193c1645f53b30f6d4cf65e488a663.png
, doc/sphinx/.build/html/_images/math/dae9fdcd4039896c429769826c4759
2370611d6b.png, doc/sphinx/.build/html/_images/math/e0d2bf360290fd61
d1c1557e763f2622363b3d35.png, doc/sphinx/.build/html/_images/math/e2
a662e2209e4d2ee234a3ae367d5337a31409e0.png, doc/sphinx/.build/html/_
images/math/f37bba504894945c07a32f5496d74299a37aa51c.png, doc/sphinx
/.build/html/_images/math/f5047d1e0cbb50ec208923a22cd517c55100fa7b.p
ng, doc/sphinx/.build/html/_images/math/f8c03b65830c6482e37c5bbc31d3
b19ee646ee06.png, doc/sphinx/.build/html/_images/math/fc2cd2267d4502
2f197cdb870c1642c539c08dde.png,
doc/sphinx/.build/html/_images/overview.png,
doc/sphinx/.build/html/_images/peak.png,
doc/sphinx/.build/html/_images/resultstable.png,
doc/sphinx/.build/html/_images/selectfinaltemplate.png,
doc/sphinx/.build/html/_images/selection.png,
doc/sphinx/.build/html/_images/stimfit_dos.png,
doc/sphinx/.build/html/_images/test.png,
doc/sphinx/.build/html/_images/traceselection.png,
doc/sphinx/.build/html/_images/viewscalebars.png,
doc/sphinx/.build/html/_images/zoom.png,
doc/sphinx/.build/html/_images/zoompopup.png,
doc/sphinx/.build/html/_sources/contents.txt,
doc/sphinx/.build/html/_sources/howto/amplitudes.txt,
doc/sphinx/.build/html/_sources/howto/apcounting.txt,
doc/sphinx/.build/html/_sources/howto/cuttingtraces.txt,
doc/sphinx/.build/html/_sources/howto/index.txt,
doc/sphinx/.build/html/_sources/howto/introclass.txt,
doc/sphinx/.build/html/_sources/howto/latencies.txt,
doc/sphinx/.build/html/_sources/howto/resistances.txt,
doc/sphinx/.build/html/_sources/howto/runningmean.txt,
doc/sphinx/.build/html/_sources/links/index.txt,
doc/sphinx/.build/html/_sources/linux_install_guide/building.txt,
doc/sphinx/.build/html/_sources/linux_install_guide/downloads.txt,
doc/sphinx/.build/html/_sources/linux_install_guide/index.txt,
doc/sphinx/.build/html/_sources/linux_install_guide/requirement.txt,
doc/sphinx/.build/html/_sources/linux_install_guide/updates.txt,
doc/sphinx/.build/html/_sources/manual/bibliography.txt,
doc/sphinx/.build/html/_sources/manual/event_extraction.txt,
doc/sphinx/.build/html/_sources/manual/getting_started.txt,
doc/sphinx/.build/html/_sources/manual/index.txt,
doc/sphinx/.build/html/_sources/manual/latency_measurements.txt,
doc/sphinx/.build/html/_sources/manual/preface.txt,
doc/sphinx/.build/html/_sources/manual/python.txt,
doc/sphinx/.build/html/_sources/osx_install_guide/building.txt,
doc/sphinx/.build/html/_sources/osx_install_guide/index.txt,
doc/sphinx/.build/html/_sources/osx_install_guide/prerequisites.txt,
doc/sphinx/.build/html/_sources/references/index.txt,
doc/sphinx/.build/html/_sources/stf_reference/stf.txt,
doc/sphinx/.build/html/_static/basic.css,
doc/sphinx/.build/html/_static/contents.png,
doc/sphinx/.build/html/_static/default.css,
doc/sphinx/.build/html/_static/doctools.js,
doc/sphinx/.build/html/_static/file.png,
doc/sphinx/.build/html/_static/jquery.js,
doc/sphinx/.build/html/_static/minus.png,
doc/sphinx/.build/html/_static/navigation.png,
doc/sphinx/.build/html/_static/plus.png,
doc/sphinx/.build/html/_static/pygments.css,
doc/sphinx/.build/html/_static/rightsidebar.css,
doc/sphinx/.build/html/_static/searchtools.js,
doc/sphinx/.build/html/_static/sphinxdoc.css,
doc/sphinx/.build/html/_static/stickysidebar.css,
doc/sphinx/.build/html/_static/traditional.css,
doc/sphinx/.build/html/contents.html,
doc/sphinx/.build/html/genindex.html,
doc/sphinx/.build/html/howto/amplitudes.html,
doc/sphinx/.build/html/howto/apcounting.html,
doc/sphinx/.build/html/howto/cuttingtraces.html,
doc/sphinx/.build/html/howto/index.html,
doc/sphinx/.build/html/howto/introclass.html,
doc/sphinx/.build/html/howto/latencies.html,
doc/sphinx/.build/html/howto/resistances.html,
doc/sphinx/.build/html/howto/runningmean.html,
doc/sphinx/.build/html/index.html,
doc/sphinx/.build/html/links/index.html,
doc/sphinx/.build/html/linux_install_guide/building.html,
doc/sphinx/.build/html/linux_install_guide/downloads.html,
doc/sphinx/.build/html/linux_install_guide/index.html,
doc/sphinx/.build/html/linux_install_guide/requirement.html,
doc/sphinx/.build/html/linux_install_guide/updates.html,
doc/sphinx/.build/html/manual/bibliography.html,
doc/sphinx/.build/html/manual/event_extraction.html,
doc/sphinx/.build/html/manual/getting_started.html,
doc/sphinx/.build/html/manual/index.html,
doc/sphinx/.build/html/manual/latency_measurements.html,
doc/sphinx/.build/html/manual/preface.html,
doc/sphinx/.build/html/manual/python.html,
doc/sphinx/.build/html/modindex.html,
doc/sphinx/.build/html/objects.inv,
doc/sphinx/.build/html/osx_install_guide/building.html,
doc/sphinx/.build/html/osx_install_guide/index.html,
doc/sphinx/.build/html/osx_install_guide/prerequisites.html,
doc/sphinx/.build/html/references/index.html,
doc/sphinx/.build/html/search.html,
doc/sphinx/.build/html/searchindex.js,
doc/sphinx/.build/html/stf_reference/stf.html,
doc/sphinx/.build/latex/APmodule.png,
doc/sphinx/.build/latex/Stimfitdocumentation.pdf,
doc/sphinx/.build/latex/Stimfitdocumentation.tex,
doc/sphinx/.build/latex/Stimfitdocumentation.toc,
doc/sphinx/.build/latex/average.png,
doc/sphinx/.build/latex/bait_template.png,
doc/sphinx/.build/latex/baseline.png,
doc/sphinx/.build/latex/batchanalysis.png,
doc/sphinx/.build/latex/channelselection.png,
doc/sphinx/.build/latex/channelselectiondrop.png,
doc/sphinx/.build/latex/cursorsettings.png,
doc/sphinx/.build/latex/eventbutton.png,
doc/sphinx/.build/latex/eventdetectionsettings.png,
doc/sphinx/.build/latex/events.png,
doc/sphinx/.build/latex/falsenegative.png,
doc/sphinx/.build/latex/finaltemplate.png,
doc/sphinx/.build/latex/fit.png,
doc/sphinx/.build/latex/fitselection.png,
doc/sphinx/.build/latex/fittowindow.png,
doc/sphinx/.build/latex/fncychap.sty,
doc/sphinx/.build/latex/foot.png, doc/sphinx/.build/latex/howto.cls,
doc/sphinx/.build/latex/latency.png,
doc/sphinx/.build/latex/latencytraces.png,
doc/sphinx/.build/latex/manual.cls,
doc/sphinx/.build/latex/overview.png,
doc/sphinx/.build/latex/peak.png,
doc/sphinx/.build/latex/python.ist,
doc/sphinx/.build/latex/resultstable.png,
doc/sphinx/.build/latex/selectfinaltemplate.png,
doc/sphinx/.build/latex/selection.png,
doc/sphinx/.build/latex/sphinx.sty,
doc/sphinx/.build/latex/stimfit_dos.png,
doc/sphinx/.build/latex/tabulary.sty,
doc/sphinx/.build/latex/test.png,
doc/sphinx/.build/latex/traceselection.png,
doc/sphinx/.build/latex/viewscalebars.png,
doc/sphinx/.build/latex/zoom.png,
doc/sphinx/.build/latex/zoompopup.png, src/core/filelib/cfs.cpp,
src/core/recording.cpp, src/core/recording.h, src/core/stimdefs.h,
src/stfswig/plottools.py:
merged changes from my User Dialog additions
[804130f43180]
* BUGS, TODO:
added my TODO list
[3f268583366b]
* src/app/app.cpp, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h:
Status of PSlope cursor mode without extra wxStrCursorsDlg attribute
[bc460c04d901]
2010-07-18 Jose Guzman <[email protected]>
* src/app/app.cpp, src/app/app.h, src/app/dlgs/cursorsdlg.cpp,
src/app/dlgs/cursorsdlg.h, src/core/stimdefs.h:
Added option to set the second slope cursor to a given distance (in
x-units) from the first slope cursor
[2d1ab28e0346]
2010-07-16 Jose Guzman <[email protected]>
* src/core/recording.cpp, src/core/recording.h, src/core/stimdefs.h:
Added DeltaT property to the Recording class
[2d3049fd501b]
2010-07-18 Christoph Schmidt-Hieber <[email protected]>
* .hgignore, Makefile.am, doc/sphinx/.build/doctrees/contents.doctree,
doc/sphinx/.build/doctrees/environment.pickle,
doc/sphinx/.build/doctrees/howto/amplitudes.doctree,
doc/sphinx/.build/doctrees/howto/apcounting.doctree,
doc/sphinx/.build/doctrees/howto/cuttingtraces.doctree,
doc/sphinx/.build/doctrees/howto/index.doctree,
doc/sphinx/.build/doctrees/howto/introclass.doctree,
doc/sphinx/.build/doctrees/howto/latencies.doctree,
doc/sphinx/.build/doctrees/howto/resistances.doctree,
doc/sphinx/.build/doctrees/howto/runningmean.doctree,
doc/sphinx/.build/doctrees/links/index.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/building.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/downloads.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/index.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/requirement.doctree,
doc/sphinx/.build/doctrees/linux_install_guide/updates.doctree,
doc/sphinx/.build/doctrees/manual/bibliography.doctree,
doc/sphinx/.build/doctrees/manual/event_extraction.doctree,
doc/sphinx/.build/doctrees/manual/getting_started.doctree,
doc/sphinx/.build/doctrees/manual/index.doctree,
doc/sphinx/.build/doctrees/manual/latency_measurements.doctree,
doc/sphinx/.build/doctrees/manual/preface.doctree,
doc/sphinx/.build/doctrees/manual/python.doctree,
doc/sphinx/.build/doctrees/osx_install_guide/building.doctree,
doc/sphinx/.build/doctrees/osx_install_guide/index.doctree,
doc/sphinx/.build/doctrees/osx_install_guide/prerequisites.doctree,
doc/sphinx/.build/doctrees/references/index.doctree,
doc/sphinx/.build/doctrees/stf_reference/stf.doctree,
doc/sphinx/.build/html/.buildinfo,
doc/sphinx/.build/html/_images/APmodule.png,
doc/sphinx/.build/html/_images/average.png,
doc/sphinx/.build/html/_images/bait_template.png,
doc/sphinx/.build/html/_images/baseline.png,
doc/sphinx/.build/html/_images/batchanalysis.png,
doc/sphinx/.build/html/_images/channelselection.png,
doc/sphinx/.build/html/_images/channelselectiondrop.png,
doc/sphinx/.build/html/_images/cursorsettings.png,
doc/sphinx/.build/html/_images/eventbutton.png,
doc/sphinx/.build/html/_images/eventdetectionsettings.png,
doc/sphinx/.build/html/_images/events.png,
doc/sphinx/.build/html/_images/falsenegative.png,
doc/sphinx/.build/html/_images/finaltemplate.png,
doc/sphinx/.build/html/_images/fit.png,
doc/sphinx/.build/html/_images/fitselection.png,
doc/sphinx/.build/html/_images/fittowindow.png,
doc/sphinx/.build/html/_images/foot.png,
doc/sphinx/.build/html/_images/latency.png,
doc/sphinx/.build/html/_images/latencytraces.png, doc/sphinx/.build/
html/_images/math/0697caad7caa424cb1d6913067117ac1ef4afcfc.png, doc/
sphinx/.build/html/_images/math/0772102cbdf827d21b8343e12c2a8766e0f1
7d97.png, doc/sphinx/.build/html/_images/math/0936df714cc1754db6b256
f7124c88641fdffa2d.png, doc/sphinx/.build/html/_images/math/10ac0238
27bb7b549e882c11b0109030b9d86041.png, doc/sphinx/.build/html/_images
/math/15c811c72fbb238885328c9dc4d880060dceef3f.png, doc/sphinx/.buil