You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Tiny changes to appease MATLAB
* Started installation section
* Added matlabdomain extension
* Added infomation for remote location in reposPath
* Started a setup page
* Added parameters walkthrough
* HOTFIX changed Alyx Panel login timer to 90 mins
* 2.3 <- 2.2.1 (#198)
* updated signals submodule
* updated signals submodule (eb71b1f)
* Added test for ensureCell
* Fix'd typo in ensureCell_test
* Future-proofing runall to ignore tests with specific hardware requirements
* Added tests for nop, iff and emptyElems
* Added tests for cellsprintf and num2cellstr; bug fix in num2cellstr
* Submodule update
* mapToCell test
* Removed complete todos
* Added test for dat.expExists
* Restore changes made in commit
247060a
* Expanded test for dispWaterReq
* assert -> verifyMatches
* Added catStructs test
* Added tabulateArgs test
* superSave test added
* added an informative error message in the case that dat.paths is missing
* Attempting to construct a branch that doesn't differ from dev in its submodules
* Revert "Attempting to construct a branch that doesn't differ from dev in its submodules"
Reverting a commit that should have been to dev_kevin, not to dev
* Revert "added an informative error message in the case that dat.paths is missing"
Reverting a commit that should have been to dev_kevin, not to dev
This reverts commit a492bd2.
* Added file package test
* Added test for pick
* Added test for namedArg
* Added varName test
* Added back tolerance change
* Dev kevin (#192)
* added an informative error message when dat.paths is not present
* added an identifier to the error message
* Added warnings and errors to deal with the case that hardware.mat is not found
* fixed identifier
* Changed error identifiers following Miles' suggestion of module:package:function:error
* added more info to error for empty rig
* added more info to no dat.paths error
* Bug fix in namedArg test
* Removed old function -> now a method of Alyx
* Started +fun package test; added fileFunction test
* No longer using 'which' to assert function existence
* Bug fixes for tests
* Bug fix for wiringInfo method
* Added KeyedSeq test
* Added docs for apply and applyForce
* Added loadVar test
* Issue #168
* Added mergeStructs test
* Added performance tests; reorganized tests; updated changelog
* Added parameters walkthrough
* Added timeline walkthrough; bug fix for wiringInfo in Timeline
* added informative error messages to calibration code
* Added documentation for setting up Window; documentation for Window class; Minor bug fixes
* Added a few examples to hardware docs
* Added Viewing model walkthrough and expanded FAQ
* Updated changelog
* Updates to docs
* Added test for +hw/calibrate.m
* deleted exp.construct
* Added documentation for calibration test
* Updated docs; added services guide
* Updates docs
* Fix for Communicator WTF mode; increased test coverage for iff
* Update to changelog and signals
* HOTFIX changed Alyx Panel login timer to 90 mins
* Removed readthedocs, updated submodules
* Update Shields
* HOTFIX: Correct location of docs in README; Stronger wording in install instructions
* Added issue templates (#179)
* Added troubleshooting docs and error id list
* Using signals error handling branch; added troubleshooting doc
* Re-factoring SignalsExp for test subclassing
* Started expServer tests
* Added more tests; bug fix for older versions
* Removed validation functions for old MATLAB versions; added documentation
* More coverage, documentation
* Draws text to screen during calibration #128
* Fix for #4
* Added structAssign test; rewardId tests
* Typo fix in structAssign_test
* Finished tests for expServer
* #156
* Returned listener delete to cleanup
* Stricter tolerance in AlyxPanel_test; bug fix for rounding negative numbers
* Update alyx-matlab submodule
* Minor changes to documentation
* Update CHANGELOG.md
* Added tests for tl.bindMpepServer and pnet spy
* Fixture path fix
* Moved audioDevices default to devices mock
* WIP
* #100#202
* Updated tests with share fixtures; added pause/resume to SignalsExp; added further tests for SignalsExp; updated tests README; SessionURL fetched from database when necessary
* Added better update of keyboard input signal
* Potential fix for #213
* Updates to submodules
* Update to alyx-matlab
* Context menu for hiding event updates in ExpPenel
* trialCondition index can be reset with signal
* Improvements to test UI
* Documentation
* README for +eui package (#156)
* WIP
* Removed warning from updateLogEntry when Alyx deactivated #202
* Added hide option for ExpPanel; ExpPanel guide in docs
* Added utils; started docs
* #218
* Support for ids in errOnFail
* Removed old commented-out code
* Scale port closed on errors
* Added brief PTB install instructions (#228)
* cleanup
* Documentation; #229
* More flags for addRigboxPaths
* started updating README after Anwar's comments
* updated some instructions in README
* Revert "started updating README after Anwar's comments"
This reverts commit 9f5a456.
* Updated documentation
* Removed PTBDebug call and added example to docstring
* Update to CHANGELOG and signals
* #205 - refactored
* Update to tests
* Warning supression in tests
* CHANGELOG
Co-authored-by: Jai Bhagat <j.bhagat@ucl.ac.uk>
This `+eui` package contains all code pertaining to graphical user interfaces in Rigbox.
3
+
There are five base classes in this folder:
4
+
5
+
1.`eui.MControl` - The class behind the Master Control (MC) GUI.
6
+
2.`eui.ExpPanel` - The superclass for UI panels that process and plot remote experiment event updates (i.e. the panels under the Current Experiments tab of MC).
7
+
3.`eui.Log` - UI control for viewing experiment log entries (the table under the Log tab of MC).
8
+
4.`eui.AlyxPanel` - UI for interacting with the Alyx database (the Alyx panel in the New Experiments tab of MC). Can be run as a stand-alone GUI.
9
+
5.`eui.ParamEditor` - UI for viewing and editing parameters (the Parameter panel in the New Experiments table of MC). Can be run as a stand-alone GUI.
10
+
11
+
## Contents:
12
+
13
+
Below is a list of all files present:
14
+
15
+
-`MControl.m` - Whatever it is, take control of your experiments from this GUI
16
+
-`AlyxPanel.m` - A GUI for interating with the Alyx database.
17
+
-`SignalsTest.m` - A GUI for testing a Signals Experiment.
18
+
-`ExpPanel.m` - Basic UI control for monitoring an experiment.
19
+
-`SqueakExpPanel.m` - Basic UI control for monitoring a Signals Experiment.
20
+
-`ChoiceExpPanel.m` - An eui.ExpPanel subclass for monitoring ChoiceWorld experiments.
21
+
-`MappingExpPanel.m` - Preliminary UI for monitoring a mapping experiment.
22
+
-`ParamEditor.m` - GUI for visualizing and editing experiment parameters.
23
+
-`ConditionPanel.m` - A class for displaying the trial condition parameters in eui.ParamEditor.
24
+
-`FieldPanel.m` - A class for displaying global parameters in eui.ParamEditor.
25
+
-`Log.m` - UI control for viewing experiment log entries.
26
+
27
+
## See Also:
28
+
29
+
-`docs/html/using_mc.m` - A guide to using MC.
30
+
-`docs/html/using_ParamEditor.m` - A guide to using the eui.ParamEditor UI.
0 commit comments