- Sep 21, 2015
-
-
Aaron Cuevas Lopez authored
-
- Sep 15, 2015
-
-
Aaron Cuevas Lopez authored
-
- Jun 04, 2015
- May 15, 2015
-
-
Aaron Cuevas Lopez authored
-
- Oct 09, 2014
-
-
jsiegle authored
-
- Sep 29, 2014
-
-
Josh Siegle authored
-
- Sep 23, 2014
-
-
jsiegle authored
-
- Aug 04, 2014
-
-
Ronny Eichler authored
-
- Apr 05, 2014
-
-
jsiegle authored
-
- Jan 31, 2014
-
-
jsiegle authored
-
- Jan 28, 2014
-
-
jsiegle authored
-
- Jan 18, 2014
-
- Jan 11, 2014
-
-
Josh Siegle authored
-
- Oct 03, 2013
-
-
Josh Siegle authored
-
- May 05, 2013
-
-
jsiegle authored
- Clean up methods in GenericProcessor - File selection now happens outside of EditorViewport - Add mechanism for saving custom parameters for individual channels - Settings file is automatically saved at the start of recording
-
- Apr 05, 2013
-
-
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.
-
- Apr 03, 2013
-
-
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
-
- Mar 21, 2013
-
-
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!
-
jsiegle authored
The main UI components now use ScopedPointers for their children, alleviating the need to call "deleteAllChildren" or "deleteAndZero" in the destructor.
-
jsiegle authored
-
- Mar 20, 2013
-
-
jsiegle authored
-
- Dec 27, 2012
-
-
Josh Siegle authored
-
Josh Siegle authored
-
Josh Siegle authored
-
- Oct 06, 2012
-
-
Josh Siegle authored
-
- Sep 20, 2012
-
-
unknown authored
-
- Jul 07, 2012
-
-
jsiegle authored
-
- May 19, 2012
- May 18, 2012
-
-
Josh Siegle authored
-
- May 16, 2012
- May 07, 2012
-
-
Josh Siegle authored
Now, when the user clicks on a tab in the DataViewport, the corresponding Editor becomes active. Likewise, when the user selects an Editor with a Visualizer, the corresponding tab becomes active in the DataViewport.
-
- Apr 05, 2012
-
-
jsiegle authored
UIComponent, ProcessorGraph, etc. were still referencing the configuration class (but not using it). Those references have now been removed, as the configuration object will be replaced by a set of parameter and channel objects.
-
- Mar 03, 2012
-
-
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.
-
- Mar 01, 2012
-
-
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.
-
jsiegle authored
-
- Feb 19, 2012