Skip to content
Snippets Groups Projects
  1. Apr 05, 2013
  2. Mar 29, 2013
    • Josh Siegle's avatar
      Switch to manual font loading · e176ce1d
      Josh Siegle authored
      For some reason, "getCustomTypefaceForFont" wasn't being called on OS X.
      It probably has something to do with platform-specific code for loading
      fonts. Now, in cases where custom fonts are needed, loading requires
      4 lines instead of 1. Kind of a pain, so hopefully this is a temporary
      solution until we can figure out what's different about Macs.
      e176ce1d
  3. Mar 21, 2013
    • jsiegle's avatar
      Continue to make visualizers indepedent from OpenGL · 2a94f110
      jsiegle authored
      The Visualizer class no longer inherents from OpenGLCanvas. In the future,
      scrolling will be handled by a Viewport object.
      2a94f110
    • 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
    • jsiegle's avatar
      Switch pointers to ScopedPointers · 34ccc510
      jsiegle authored
      The main UI components now use ScopedPointers for their children,
      alleviating the need to call "deleteAllChildren" or "deleteAndZero"
      in the destructor.
      34ccc510
    • jsiegle's avatar
      Updated JUCE library · 637baf17
      jsiegle authored
      637baf17
  4. Mar 20, 2013
  5. Feb 12, 2013
  6. Dec 27, 2012
  7. Nov 24, 2012
  8. Nov 10, 2012
  9. Oct 30, 2012
  10. Oct 06, 2012
  11. Jul 31, 2012
  12. Jul 08, 2012
  13. Jul 07, 2012
  14. May 23, 2012
  15. May 21, 2012
  16. May 20, 2012
  17. May 19, 2012
  18. May 18, 2012
  19. May 17, 2012
  20. May 16, 2012
  21. May 07, 2012
  22. Apr 05, 2012
  23. Mar 03, 2012
    • jsiegle's avatar
      Updated audio editor. · 228ad596
      jsiegle authored
      The control panel now holds an "AudioEditor" to adjust volume
      and open a window to alter device settings. Audio output is definitely
      working, but different buffer sizes make it sound really weird. The
      same problem is present in the Juce demo app, however, so I don't
      think it's a problem inherent in the GUI.
      228ad596
  24. Mar 01, 2012
    • jsiegle's avatar
      Major refactoring. · a66d703f
      jsiegle authored
      Three important changes:
      - The FilterList is now the ProcessorList
      - The FilterViewport is now the EditorViewport
      - Any classes that need to access important UI objects have become subclasses
        of the "AccessClass". Such objects automatically obtain pointers from
        the UIComponent and register the MessageCenter as an ActionListener. This
        will make it much easier to allocate pointers to objects.
      a66d703f
    • jsiegle's avatar
  25. Feb 21, 2012
  26. Feb 19, 2012
Loading