Skip to content
Snippets Groups Projects
  1. Aug 11, 2013
  2. Jun 19, 2013
  3. Jun 15, 2013
  4. May 30, 2013
  5. Apr 08, 2013
  6. Apr 05, 2013
    • jsiegle's avatar
      Run astyle to make code format more consistent · ea8c1c90
      jsiegle authored
      To run this in the future, install astyle (sudo apt-get install astyle),
      then enter the following from the top-level project directory:
      
      astyle --options=astyle.options --recursive "./Source/*.cpp" "./Source/*.h"
      
      This will convert tabs to 4 spaces and ensure that brackets are on
      their own lines.
      ea8c1c90
  7. Apr 03, 2013
    • aacuevas's avatar
      Windows.h include not needed with juce 2 · 3f56af92
      aacuevas authored
      With new jucer, windows.h is not only unnecesary, but can cause conflicts with some definitions.
      Also, OpenGL.h includes disabled, as it's no longer needed and it, by itself, needs windows.h
      3f56af92
  8. Mar 21, 2013
    • jsiegle's avatar
      Change copyright year to 2013 · e36119a1
      jsiegle authored
      Use the following command to update the copyright year in all files,
      starting in the Source/ directory:
      
      find . -type f -print0 | xargs -0
         sed -i 's/Copyright (C) 2012/Copyright (C) 2013/g'
      
      Works like a charm!
      e36119a1
  9. Jan 18, 2013
  10. Oct 06, 2012
  11. Sep 20, 2012
  12. May 21, 2012
  13. Apr 22, 2012
  14. Apr 21, 2012
  15. Mar 29, 2012
  16. Mar 23, 2012
  17. Mar 19, 2012
  18. Mar 15, 2012
    • Stuart Layton's avatar
      The spikeviewer shows up without segfaults! That was more painful than it should have been. · 167a58d7
      Stuart Layton authored
      The SpikeDisplayNode object isn't working properly. Queueing of spikes there appeared to be what was causing the problem.
      
      I need to consider an alternative way of handling the SpikeObjects. In the past I've used a circular buffer but that has
      problems with having a set size. I can use an stl::queue but queues are not thread safe, which is something that we
      definitely need.
      
      Anyway the plots show up and dance when the viewer is turned on.  I still need to implement a Stereotrode plot and then the
      tetrode plot. I'll probably derive them from the ElectrodePlot base class instead of creating a base classs from which all
      three plot types are derived from.
      
      Finally I need to get a better handle on the setup of the OpenGLCanvas and how its sized.  How the "Magical" scroll bars work
      and how to auto place the plots.
      
      Do we force all the plots to be of the same type? Or do we mix in Electrode Plots with Tetrode Plots?  If so how do we orient them all?
      167a58d7
  19. Mar 13, 2012
  20. Mar 11, 2012
  21. Mar 10, 2012
  22. Feb 22, 2012
  23. Feb 21, 2012
    • jsiegle's avatar
      Minor bug fixes in LfpDisplayNode · c5b644c7
      jsiegle authored
      The LfpDisplayNode/LfpDisplayCanvas are more stable now, although there's
      still a bug in the DisplayNode causing small gaps to appear in the buffer.
      c5b644c7
  24. Feb 20, 2012
  25. Feb 19, 2012
  26. Feb 11, 2012
Loading