Skip to content

Commit

Permalink
Merge pull request #732 from int-brain-lab/iblrigv8dev
Browse files Browse the repository at this point in the history
8.24.5
  • Loading branch information
bimac authored Oct 18, 2024
2 parents 60403a3 + 57f2df4 commit 6491e9f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
Changelog
=========

8.24.5
------
* fix: visual stimulus not showing for first trial

8.24.4
------
* fix: correct gain for rotary encoder thresholds in trainingChoiceWorld
* fix: replace `np.NaN` with `np.nan`
* overhaul of rotary encoder object

8.24.3
------
* fix: create the `raw_ephys_data` folder even if there are no probes (when running behavior sessions on ephys rig)
* fix: replace `np.NaN` with `np.nan`
* move some Qt related code to `iblqt` repository

8.24.2
Expand Down
2 changes: 1 addition & 1 deletion iblrig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# 5) git tag the release in accordance to the version number below (after merge!)
# >>> git tag 8.15.6
# >>> git push origin --tags
__version__ = '8.24.4'
__version__ = '8.24.5'


from iblrig.version_management import get_detailed_version_string
Expand Down
2 changes: 2 additions & 0 deletions iblrig/base_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,8 @@ def choice_world_visual_stimulus(self):
'Stim.TranslationZ': -self.task_params.STIM_TRANSLATION_Z, # MINUS!!
}
call_bonsai(workflow_file, parameters, wait=False, editor=self.task_params.BONSAI_EDITOR, bootstrap=False)
log.info('Giving Bonsai some extra time to start ...')
time.sleep(5)
log.info('Bonsai visual stimulus module loaded: OK')


Expand Down

0 comments on commit 6491e9f

Please sign in to comment.