The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

727 lines
66KB

  1. ==============================================================================
  2. JUCE version 1.46
  3. ==============================================================================
  4. Changelist for version 1.46
  5. - Mac: the project now requires at least XCode V2.5
  6. - new class: ScopedTryLock
  7. - added AudioUnit support to the audio hosting code
  8. - any top-level components will now have their parentSizeChanged() method called when the screen res is changed (not on linux yet though..)
  9. - jucer: added support for ImageButtons
  10. - audio devices - a few tweaks to the various audio drivers to try to make the best possible guess at the input and output latencies that they introduce
  11. ==============================================================================
  12. Changelist for version 1.45
  13. - big new project in the "extras" folder - a basic audio plugin host! Currently it loads VSTs on PC/Mac, and lets you put them together in a filter graph, which it plays. Hosting functionality is very basic at the moment, but I'm laying down a good architecture to hopefully develop into a full cross-platform plugin host.
  14. - audio plugins: The AudioFilterBase and AudioFilterEditor classes have moved into the main juce tree, and been renamed as AudioProcessor and AudioProcessorEditor. This means you can remove these files from your plugin projects, and should search-and-replace any instances of the old names with the new ones.
  15. - audio plugins: the processBlock() call in AudioFilterBase has been simplified in AudioProcessor. It now just takes a single buffer for all input and output channels, and the accumulate parameter has gone. This will mean tweaking your plugin code, but will probably make it much less complicated.
  16. - audio plugins: AudioProcessor requires a few more methods to be implemented by your plugin than AudioFilterBase did: getInputChannelName, getOutputChannelName, isInputChannelStereoPair, isOutputChannelStereoPair, getLatencySamples (which supersedes the old macro for setting the latency). These are all quite simple to add.
  17. - audio plugins: new methods AudioProcessor::beginParameterChangeGesture() and endParameterChangeGesture() let you tell the host when a parameter-change action starts and finishes.
  18. - audio plugins: new method AudioProcessor::updateHostDisplay() to tell the host that something about your plugin has changed and that it should refresh its display.
  19. - new class: FileSearchPathListComponent, for letting the user edit a FileSearchPath.
  20. - new class: FileDragAndDropTarget, which replaces the old method Component::filesDropped. To use it, just make your component inherit from FileDragAndDropTarget, and it'll receive external file drops. This provides more functionality than the old method, allowing you to track the drag enter/exit/movements as well as just reacting to the drop itself.
  21. - added a critical section option to ReferenceCountedArray
  22. - refactored and added features to the Socket class, replacing it with StreamableSocket (basically the same as the original class), and DatagramSocket.
  23. - refactored the OpenGLComponent, adding new classes OpenGLPixelFormat and OpenGLContext
  24. - A component's KeyListeners are now called before its keyPressed method, so if you want to intercept keys and stop them getting sent to the component, you can add a keylistener and comsume the events.
  25. - added an option to choose a Midi output device to the AudioDeviceManager and AudioDeviceSelectorComponent
  26. - updated the included version of libpng
  27. ==============================================================================
  28. Changelist for version 1.44
  29. - added a method Desktop::setScreenSaverEnabled(), which lets you prevent the screen-saver from being activated - handy if your app is doing some kind of presentation. (only implemented on windows/mac - anyone know how to do this on linux?)
  30. - new Mac-only class: AppleRemoteDevice, which lets you grab and listen for events from your Apple remote control. (Only works if you build for 10.3 or above).
  31. - tweaks to get it working under Wine.
  32. - change to the keyPressed() and keyStateChanged() callbacks in Component and KeyListener. These used to be void, but they now return a bool to indicate whether the key event was needed or not. Any existing code you've got will break in the compiler, so just change it to return true if the key was used, or false to allow the event to be passed up to the next component in the chain. (This change is a better architecture than before, and was also needed so that plugins can allow unused key events to be passed on to the host application)
  33. - swapped the look and feel classes around, so that the basic LookAndFeel class is now what used to be the "shiny" one. The ShinyLookAndFeel class has been removed, and for that old fashioned look, I've added an OldSchoolLookAndFeel that you can use if you need the original L+F. This means that any custom looks that you were using may need to change their base class.
  34. - changed the MouseEvent structure so that it now contains a pointer to the event component and also the original component.
  35. - added a PopupMenu::dismissAllActiveMenus() method.
  36. - added the JUCE_LOG_ASSERTIONS flag, which can automatically log assertion failures, even in release builds.
  37. - new classes DirectoryContentsDisplayComponent and FileTreeComponent, allow a view of a directory as either a list or treeview. I've added a demo of the FileTreeComponent to the treeviews section of the Juce Demo. There's also now an option in the FileBrowserComponent constructor to use a treeview.
  38. - small change to the strictness of the way TreeViews handle their root items. Be careful now to never delete a tree's root item until either the treeview has been deleted, or until you've removed the root from the tree using setRootItem (0). Not doing this can now cause a crash in the tree's destructor, where it expects the root to still be valid.
  39. - added some virtual methods to TextEditor to allow customisation of its popup menu.
  40. - added a Component::setExplicitFocusOrder() method for specifying the order in which components have their focus traversed, and added Jucer support for setting this value.
  41. - made slider skew factor editable in the jucer
  42. - added a background thread to the MidiOutput class, so it can be given a batch of midi events and will dispatch them itself based on their timestamps.
  43. - added MultiDocumentPanel::createNewDocumentWindow() method to allow creation of custom document windows in a MultiDocumentPanel
  44. - added a Thread::getCurrentThread() method
  45. - added an option to MessageManagerLock that can check for thread termination, to avoid deadlocks.
  46. - new method: PropertySet::setFallbackPropertySet()
  47. - some simplifications to ApplicationProperties, because of problems it was causing when there were read-only common property files.
  48. ==============================================================================
  49. Changelist for version 1.43
  50. - I've done a bit of tidying up of the juce tree, moving things like the demo, the jucer, etc into a folder called "extras", and this also now includes the audio plugin code and BinaryBuilder, rather than having those available as separate downloads.
  51. - native menu bar support for the Mac! See MenuBarModel::setMacMainMenu().
  52. - a few changes to the MenuBarModel class and MenuBarComponent - the model object now has listeners, and when a menu changes, you should call MenuBarModel::menuItemsChanged() rather than calling the old equivalent method on the bar component. Also, the MenuBarModel virtual methods have changed slightly and no longer have a menu bar component as one of their parameters. One other related change is that DocumentWindow::setMenuBar() no longer takes a command manager - you should register the command manager directly using MenuBarModel::setApplicationCommandManagerToWatch
  53. - horizontal mouse-wheel support - this involves a change to the Component::mouseWheelMove method, to add an extra parameter. If you've got existing code that uses the old form of this method, it should fail to compile with an error, and you just need to tweak it to add the new parameter
  54. - sorted out some problems with the jucer's colour swatch menus
  55. - fixes for AudioDeviceManager forgetting channel selection
  56. - added a textCharacter member to the KeyPress class - this allows a unicode printing character to be stored separately from the keycode.
  57. - added support for extra numeric keypad keys like add, subtract etc, and F13-F16
  58. - added a radio group ID field to buttons in the jucer
  59. - renamed TaskbarIconComponent as SystemTrayIconComponent to make it more obvious what it does, and added support for tray icons on linux (thanks to kraken for the code for that one)
  60. - new class: ChannelRemappingAudioSource, which lets you take a source and remap its input and output channels.
  61. - some tweaks to the Time functions on win32 to make them slightly more efficient
  62. - new method: Slider::setIncDecButtonsDraggable(), which adds a hybrid click/drag mode to the inc/dec button slider
  63. - added some linux-specific methods for creating new midi in/out devices (ta to kraken)
  64. ==============================================================================
  65. Changelist for version 1.42
  66. - jucer: fix for crash when trying to add items to a button
  67. - optimisation for UndoManager when there's a lot of items
  68. - added multiple file selection as an option for the FileChooser (using native dialogs, not yet juce file browsers)
  69. - added some colour IDs for rotary slider colours
  70. - new method: PopupMenu::addSectionHeader()
  71. - tweaked the way that options are passed to the PropertiesFile constructor, and added an option to save the file as XML.
  72. - new method: Slider::setSkewFactorFromMidPoint()
  73. - jucer: added an option to specify a virtual parent class for components, so that you can edit a component of your own class using a built-in type (e.g. edit your own slider subclass using the slider class). Thanks to kraken for this idea.
  74. - plugins: added support for current-program-only settings to be saved for VSTs
  75. - changes to the way events are dispatched on the mac, to make use of mouse-tracking. This was necessary to avoid problems embedding HIViews in juce windows, and hopefully shouldn't cause any problems anywhere else in the code
  76. - altered the way Files are stored internally to avoid ambiguity between "/" (on mac/linux) and File::nonexistent. Previously all files were stored without a trailing slash, but now in the case of the root dir, the slash is kept.
  77. ==============================================================================
  78. Changelist for version 1.41
  79. - handy new macro: numElementsInArray()
  80. - improved menu highlighting of custom menu components
  81. - win32 windowing changes to avoid problems with plugins messing up their host's keyboard accelerators
  82. - new class: ApplicationProperties - this is a handy singleton for managing PropertyFile objects when you need both user-specific settings and settings that are common to all users of a machine
  83. - extra options for PopupMenu to allow more control over the width and number of columns used. Note that there's a small change to the prototype of LookAndFeel::getIdealPopupMenuItemSize, in case you've overridden this in your code
  84. - for consistency, changed the ComboBox to use a normal menu as its popup component, instead of the slightly-different component it had been using. This also involved ditching a load of LookAndFeel methods that were for drawing the old popup.
  85. - the FLAC and Ogg-Vorbis libraries are now embedded and integrated into the juce build. Previously these could only be used if you linked to their library files, which needed building separately, but now it all just works without any external dependencies.
  86. - tweaked the AudioDeviceSelectorComponent to give more flexible control over which channels are enabled in a multi-channel soundcard
  87. - Linux + Mac: added a sockets-based HTTP stream class, so that linux now has this functionality. On the Mac, this replaces the old version which used deprecated OS functions (and which kept randomly crashing deep inside Apple's HTTP code)
  88. - altered the AudioFormat::createWriterFor method to take an OutputStream rather than a FileOutputStream - if you've written a custom AudioFormat you'll have to tweak your method prototypes
  89. - more efficient zip file parsing
  90. - renamed MemoryBlock::to64BitEncoding and MemoryBlock::from64BitEncoding because they're a misnomer, and I must have been a bit muddled when I wrote those. They're now called toBase64Encoding and fromBase64Encoding.
  91. - new methods: String::indexOfAnyOf and lastIndexOfAnyOf
  92. - changes to the prototype of File::findChildFiles, DirectoryIterator, and a couple of other related methods, so that you can use an enum to specify whether to search for files, directories, or both.
  93. - added some methods to ListBox and TableListBox to return the position of rows and cells
  94. - added a method to allow easy drag-and-dropping of treeview items
  95. - added support for the numeric keypad in KeyPress
  96. - added methods to create custom buttons in TabbedComponents, and to save/restore the scroll position of a ListBox
  97. - fixed whitespace display in a password textbox
  98. - jucer: a very useful change allows each co-ordinate of a component to now be made relative to another component instead of the parent, allowing some complex layout behaviour.
  99. - linux: added support for dealing with drag-and-dropped files (thanks to kraken for the code behind that one!)
  100. ==============================================================================
  101. Changelist for version 1.40
  102. - Audio Plugins: added an initial release of an RTAS wrapper!
  103. - new classes: IIRFilter and IIRFilterAudioSource
  104. - changed the Synthesiser to use reference counting for SynthesiserSound objects, so that sounds can be allowed to play on after being removed.
  105. - added some colour options to the GroupComponent and Toolbar classes
  106. - added a mouse-sensitivity setting to sliders
  107. - Linux: added support for XShm, which uses shared memory to improve rendering speed
  108. - Added a new method File::getSpecialLocation(), which lets you find out various system paths, e.g. home folders, documents folders, etc. This replaces a bunch of existing static method calls in SystemStats.
  109. - Added a TableListBoxModel::getDragSourceDescription() method to allow easier dragging of table rows
  110. - Added an option to PropertiesFile for creating files that are common to all users. Also tweaked a couple of methods in this class.
  111. - Mac: added a PlatformUtilities method to convert unicode strings to their precomposed form, and used this in lots of file handling routines to avoid mix-ups between encodings of extended characters.
  112. - Altered the directory search code to optimise fetching of file attributes - this should help when browsing directories on slower network drives
  113. - couple of small fixes for TableHeaderComponent in stretch-to-fit mode
  114. - added a new virtual method to OpenGLComponent to provide a callback for setting-up a new GL context
  115. - some improvements to the AudioDeviceManager to make it do a better job of saving and restoring its state
  116. - Jucer: some fixes for embedded jucer components
  117. - changed the PNG loading code to correctly handle interlaced PNG formats
  118. - added methods to convert a Path into a simple string of co-ordinates that can be reloaded. Also added a button to the font demo to turn glyphs into these strings
  119. - added a multi-select option flag to treeviews
  120. - mac + linux: implemented the InterProcessLock class
  121. - fixed DirectSound handling of unicode driver names
  122. ==============================================================================
  123. Changelist for version 1.39
  124. - change to the way Components and LookAndFeel objects handle colour. Preset colours are now identified by a unique ID number, and can be retrieved or set either for the lookandfeel object or overridden for an individual component. See the new Component::findColour and LookAndFeel::findColour methods for more info on this.
  125. - new classes: SamplerSound and SamplerVoice, which are used with the Symthesiser class to form a very simple sampler. I've added an example of this to the audio demo.
  126. - some Win32 changes to enable window maximising via the native system menu
  127. - added an option to the Slider class for showing min/max values
  128. - added ALSA midi output support for Linux
  129. - support for Linux displays with only 16-bit colour, and fixes for handling of exteneded keycode input
  130. - added some more string constructors, for creating strings from unsigned integers as well as signed ones
  131. - new class: ComponentMovementWatcher, for keeping track of movements of deeply nested components (probably quite esoteric, but needed for things like OpenGL and ActiveX windows)
  132. - Jucer: made references to embedded jucer files use relative pathnames rather than absolute, so directories of jucer files can be moved easily without breaking links
  133. - Jucer: added constructor parameters properties for the components inside tabbed components, viewports and jucer components.
  134. - Jucer: SVG files can now be dropped in as image resources
  135. - changed the ApplicationCommandManager::getFirstCommandTarget() method to add a command ID parameter
  136. - MemoryBlock::to64BitEncoding now returns a string rather than taking a dest string parameter
  137. - tweaked the ImageCache class to use 64-bit hash-codes
  138. - Plugin toolkit: added a class StandAloneFilterWindow, which is a window object you can use to build a plugin as a standalone app
  139. ==============================================================================
  140. Changelist for version 1.38
  141. - Windows: mouse cursors and taskbar icons now use a full 8-bit alpha channel when running on WinXP
  142. - Fixed some SVG bugs and made the parser more efficient
  143. - got rid of the Component::setDragRepeatInterval() method and replaced it with a static method beginDragAutoRepeat(). This makes it easier for a parent component to enable auto-repeat when its children are clicked.
  144. - bugfixes for some keyboard codes on Windows, RelativeTime rounding accuracy, Linux opengl repainting, mac window repainting, BWAV history chunk parsing, Table components, Mac fonts, Mac CoreAudio built-in device pairing, nested modal state return values, full-screen windows using native title bars, linux filenames with extended character sets.
  145. - Windows: updated the network MAC address function, which wasn't correctly finding all network cards on some systems
  146. - changes to allow a 64-bit build on Windows, including greater use of compiler intrinsics
  147. - two new header files: juce_WithoutMacros.h and juce_DefineMacros.h (in the juce/src directory) - these make it easy to include juce.h without it defining macros that may conflict with other 3rd party header files. See the comments in these files for more info.
  148. - tidied up the SystemStats operating system detection detection, to use an enum instead of strings, added Windows Vista detection, and renamed some of the methods. If you use these, you'll probably have to change the method you're calling, but it's not difficult.
  149. - added an option to TreeView to set the indent size
  150. - updated the build instructions for Windows compilers
  151. ==============================================================================
  152. Changelist for version 1.37
  153. - new classes: Toolbar and a bunch of related classes. For creating and dynamically customising toolbars.
  154. - new class: ComponentAnimator, which will move and resize components to new positions, taking a specified length of time to get there. There's a button to demonstrate this in the jucedemo widgets section, on the buttons page
  155. - new class: MultiTimer, which is like a Timer, but allows multiple independent timers with different frequencies to share a callback
  156. - fixed a few bugs in the SVG parser and a gradient-rendering bug, and added an SVG object to the "paths + transforms" demo page
  157. - added some assertions to warn people about adding components directly to a ResizableWindow rather than using setContentComponent()
  158. - to improve performance of the ElementComparator class, I've changed the sort routines to use a templated class rather than a virtual method. If this breaks your code, all you need to do is to no longer derive your class from ElementComparator and everything else should continue to work as normal.
  159. - finished off the ThreadPool class, and souped-up the threading page of the demo app to show how to use it.
  160. - added some static methods to Drawable to automatically load Drawables from some kind of image or SVG file
  161. - fixes for some Mac VST and AU windowing bugs
  162. - new method Component::canModalEventBeSentToComponent(), which allows a modal component to selectively allow events to reach components that it is blocking
  163. - fixed deprecated function warnings in MSVC8
  164. - all projects and solutions are now compatible with MS Visual Studio 2005 - I've renamed some of the vcexpress directories to "vc7", and the projects in them will load with either VCexpress or VC8
  165. - updated the "hello world" projects to use a document window
  166. - altered the AudioFileFormat::createReaderFor() method to specify whether the input stream should be preserved if opening fails
  167. ==============================================================================
  168. Changelist for version 1.36
  169. - Windows: ActiveXComponents (and QuickTime components) now get told about any mouse events that happen inside the control
  170. - Graphics::saveState() now saves the colour and brush as well as the clip region and origin
  171. - SimpleListBox now prevents mouse clicks from getting sent to the list if the component is disabled
  172. - new classes: TableListBox, TableHeaderComponent - these are for creating table components with column headings that can be re-ordered, resized, etc. I've added a table demo to the juce demo to show how to use it, and the Jucer's resources panel also now uses a stretch-to-fit table.
  173. - removed class SimpleListBox: I've got rid of the separate SimpleListBox class, and merged its functionality with ListBox. If you're currently using a SimpleListBox, the only change you should need to make is to replace "SimpleListBox" in your code with "ListBox".
  174. - Changes to ListBox: if you're using a ListBox with custom row components, you'll need to change your class to also derive from ListBoxModel, and make sure you call ListBox::setModel() to make it use your model class. Then you'll need to replace the old createRowComponent() and updateRowComponent() methods with the new refreshComponentForRow() method.
  175. - new handy macro: forEachXmlChildElement, which is a neat way of iterating the child elements of an XmlElement
  176. - new class: StretchableObjectResizer, which is for calculating how to fit a set of resizable items into a given space
  177. - new class: TaskbarIconComponent, on Windows only, this lets you show an icon in the system tray.
  178. - fixes for using a DLL build on Windows - I've moved all the allocators into the juce DLL, so this should now work ok
  179. - added a bit of SSE optimisation in the graphics rendering code (just for blending large blocks of solid colour)
  180. ==============================================================================
  181. Changelist for version 1.35
  182. - added a simple SVG parser to the Drawable class - this can parse SVG into a graph of Drawable objects that you can then render. The parser's pretty basic, and doesn't support much of the (very large) SVG spec, but I'll keep adding features to it as they're needed
  183. - fixed the updating of ToggleButtons that are connected to app commands so that they correctly reflect the command's 'ticked' state.
  184. - fixed the XML parser's handling of non-text element entities
  185. - added a few handy static methods to AffineTransform
  186. - gradient fills can now have a transform matrix specified, to deform their shape
  187. - new class: RectanglePlacement, which is a bit like Justification, but specifically for fitting rectangular graphics within a viewport with various positioning options. This will break a few places where you call methods like drawImageWithin(), but is easy to update and the result is more readable code.
  188. - new method Colours::findColourForName() for looking up colour names from a string
  189. - added a flag to ApplicationCommandInfo to stop menus and buttons getting flashed when particular commands are invoked
  190. - new class: CharacterFunctions, which contains a set of static functions for manipulating ascii and unicode characters and null-terminated strings. This is intended to replace any use of functions like strlen, etc, with a set of safe, platform-independent ones.
  191. - some fixes and optimisations to the file chooser components
  192. - altered the Graphics and LowLevelGraphicsContext classes to use a stack for pushing and popping the clip regions, instead of setting these explicitly with a RectangleList. (This change is needed for future support of OS contexts that can't retrieve the clip path as a set of rectangles)
  193. - removed the Graphics class's copy constructor (use the saveState/restoreState methods instead of a temporary copy)
  194. - added method String::indexOfWholeWord()
  195. - tidied up some of the header files, moving all inline functions (like jlimit, jmax, etc) into the juce namespace
  196. - Mac: complete rewite of the windowing code. Components are now placed in HIViews, rather than directly in Windows. As well as being more futureproof, this is vital for support of AudioUnits and VSTs on Intel Macs.
  197. - Mac: tidied up the build environment. It now compiles a universal binary which is compatible with any system from 10.2 onwards, including intel on 10.4
  198. - Windows: new ActiveXControlComponent class, which lets you embed an ActiveX control in a Juce window. I wrote this to get the new Quicktime control working, but made it generic so you could use it for other things like embedding a web browser, etc.
  199. - Windows: completely rewritten Quicktime support. This now requires QT7 (on windows, not Mac), but it now uses the new ActiveX QT control, which is much better than the archaic way it used to be done. Would like to update the Mac version too, but that'd only work on 10.4, so will wait until older OS versions are less common.
  200. - Windows: fixes for non-western keyboard input sometimes not working in textboxes
  201. - Linux: added a MIDI input device, using ALSA
  202. - Linux: made launching of URLs in the default browser work properly
  203. - Jucer: added an option to view a semi-transparent overlay of the components while editing the background graphics
  204. - Jucer: better positioning of new objects when zoomed-in
  205. - Jucer: added a "common background" graphics layer to buttons, which is drawn behind all the other button states
  206. - Jucer: added key shortcuts for nudging component's position and size around
  207. - JuceAudioPlugin: rewrote the mac VST and AU wrappers to embed a HIView rather than the old window hackery it was using.
  208. ==============================================================================
  209. Changelist for version 1.34
  210. - a bunch of changes to continue improving the expressiveness and consistency of listener classes, (and moving away from generic listeners like ChangeListener):
  211. - new class: LabelListener class now replaces Label's use of ChangeListeners
  212. - new class: ComboBoxListener for ComboBoxes, replacing the old use of ActionListener
  213. - new class: ScrollBarListener for ScrollBars, replacing the old use of ChangeListener
  214. - new class: KeyboardFocusTraverser, to take the logic of keyboard focus traversal out of the component class.
  215. - removed the Component::setFocusOrder method - instead, a KeyboardFocusTraverser object now decides the focus order (and can be overridden to support custom behaviours)
  216. - new class: ApplicationCommandManagerListener - this is used to listen for commands being invoked, and for changes to the status of commands. The Button class now uses this so that when a button is linked to a command, it enables itself only when the command is active, and flashes when it's invoked.
  217. - new class: FocusChangeListener - this can be registered with the Desktop class to receive callbacks whenever the focused component changes
  218. - new class: FilenameComponentListener - for getting events from FilenameComponents, replacing the use of ActionListener
  219. - new class: BooleanPropertyComponent - a property component with a toggle button in it
  220. - some fixes to DLL builds on windows
  221. - couple of additions to the MidiKeyboardComponent class
  222. - fix for large menus not scrolling correctly
  223. - got rid of Component::getMouseX() and getMouseY() - this functionality is already available in Desktop::getMousePosition(), so not needed here as well
  224. - replaced the Component::getMouseXRelative() and getMouseYRelative() method with a single method getMouseXYRelative() that returns both co-ordinates at once (this is a more efficient way of doing things)
  225. - added new methods Component::relativePositionToGlobal, globalPositionToRelative and relativePositionToOtherComponent for converting co-ordinates to and from screen co-ords. These replace the old getXRelativeTo() method.
  226. - new class: MagnifierComponent, which magnifies or shrinks any component that you put inside it
  227. - added colour swatches to the ColourSelectorComponent
  228. - Jucer: literal text strings can now contain special strings which are treated as c++ code - anything inside a pair of %% characters counts as c++, so %%getName()%% gets translated into the name of the component; %%getButtonText()%% into getButtonText(), and these are concatenated with the rest of the string.
  229. - Jucer: Button documents now have a list of the various over/down/toggled states for which you want to design paint routines, and any combination of these can be enabled
  230. - Jucer: you can now drag-and-drop a Jucer .cpp file into a component's layout window, and it will add it as a Jucer component
  231. - Jucer: highlighted object borders can now go beyond the edges of the component, making it easier to edit comps that are slightly off-screen or aligned with the edges of the parent comp
  232. - Jucer: new command to bring any items that are off the edges of the screen back into the middle
  233. - Jucer: ComboBoxes and Labels now create callback methods
  234. - Jucer: Zoom mode! As well as the zoom in/out commands on the menus and keyboard, you can use the mouse-wheel with ctrl or alt held down to zoom.
  235. - Jucer: Holding down the space bar now lets you scroll around the component
  236. - Jucer: ability to group paint elements together to treat them as a single entity
  237. ==============================================================================
  238. Changelist for version 1.33
  239. - fixed some graphics error with path strokes, and optimised the stroke creation code
  240. - improved the ellipse and rounded rectangle path routines by using cubic approximations
  241. - couple of extra methods for the AsyncUpdater class
  242. - changed sliders so that they now use a SliderListener class to receive callbacks instead of using ChangeListeners
  243. - Jucer: lots and lots of bugfixes
  244. - Jucer: added options for converting text and other graphics elements into paths
  245. - Jucer: Viewports can now have a content component specified, which may be a Jucer component
  246. - Jucer: TabbedComponents can now be edited and have the contents of each tab specified
  247. - Jucer: Added a list of extra callback methods that can be added to the code automatically
  248. - Jucer: Added an option to images to change the stretch mode
  249. - Jucer: Graphic objects can now use an ImageBrush for their fill or stroke
  250. - Jucer: You can now drag-and-drop image files onto the graphics element editor page
  251. - Jucer: Added a tooltip property to those components that implement the SettableTooltipClient interface
  252. - Jucer: Gave it an icon
  253. - Jucer: Sliders now create a SliderListener callback
  254. ==============================================================================
  255. Changelist for version 1.32
  256. - Jucer: added undo/redo support!
  257. - Jucer: restructured most of the project, adding support for documents of different types, so now it can create either normal components, or buttons with normal/over/down graphics. More document types can be added in future
  258. - Jucer: added a VC6 project, and fixed some things that didn't build because of VC6 compiler bugs
  259. - Jucer: holding down shift when resizing things now fixes the aspect ratio
  260. - Jucer: holding down ctrl when dragging disables/enables grid-snapping
  261. - added a couple of options to MultiDocumentPanel
  262. - fixed a graphics bug with thick path strokes not being created correctly
  263. - mac: managed to stop it repainting windows unnecessarily while dragging them around
  264. ==============================================================================
  265. Changelist for version 1.31
  266. - First release of the Jucer! This is a component development tool that lets you design Juce components and produces c++ code. This initial release is functional but still a work-in-progress - it will be an ongoing project, adding more and more functionality and shortcuts for creating juce-based code. The Jucer source code lives inside the Juce tree, in the juce/jucer folder.
  267. - new class: PositionedRectangle, which specifies a rectangle using either absolute or proportional co-ordinates, and giving flexible control over the anchor points used. Handy for positioning components.
  268. - new set of classes: PropertyComponent, PropertyPanel and various basic subclasses of PropertyComponent. These allow you to quickly set up a properties panel for something, e.g. a selected object, which shows a list of named properties of various types, e.g. text, sliders, combo boxes, etc.
  269. - added a method ApplicationCommandManager::setFirstCommandTarget() to make it easier to set up non-component command targets
  270. - change to the FileBasedDocument load/save methods so that they can return an error message on failure
  271. - new method: Graphics::fillCheckerBoard()
  272. - added options to FileChooser and FileChooserDialogBox to prompt the user about overwriting files that already exist
  273. - change to TabbedComponent, so that instead of using a virtual method to create the components for the tabs, you add components using the addTab method and the TabbedComponent looks after them for you.
  274. - fixes to some focus issues, such as popup menus temporarily moving focus away from the main window
  275. - new class: MultiDocumentPanel to hold multiple document windows as either floating DocumentWindows or in a TabbedComponent.
  276. ==============================================================================
  277. Changelist for version 1.30
  278. - major set of new classes to introduce "application commands". This is a powerful mechanism for despatching commands to command targets. It allows commands to be bound to keystrokes and easily triggered by menus, buttons, etc. New classes to support this include ApplicationCommandManager, ApplicationCommandTarget, ApplicationCommandInfo. I've rewritten the Juce demo to use commands to control its menu system, and added key-shortcuts to select the various demos.
  279. - the new app command stuff replaces a lot of the functionality that was in KeyPressMappingSet, so this class has been slimmed down with some functionality moving into the new classes. I've renamed the createXml() and restoreFromXml() methods to draw attention to the slight difference in the way they're used, (and to make the names more consistent with other code)
  280. - new class SettableTooltipClient, and made a lot of the existing widgets inherit from this, to make it easy to set tooltips for them
  281. - new flag in the Justification class - horizontallyJustified, which spreads text out to align both its left and right margins
  282. - tidied up the Uuid class and got rid of any platform-dependent libraries it was using
  283. - the constructor for the Thread class now takes a name, and on windows this gets passed to the debugger to make it easy to see which thread is which. (Haven't got mac or linux implementations for this yet)
  284. - some UI fixes for running under KDE on Linux
  285. - added a File::areFileNamesCaseSensitive() method
  286. - added a method to the MidiInputCallback class to handle incoming sections of a long sysex message. (This is only currently supported on the mac)
  287. - the XML parser now loads extended UTF-8 characters correctly
  288. ==============================================================================
  289. Changelist for version 1.29
  290. - moved the Juce demo app into the main Juce tree, to make it all easier to download
  291. - added classes for FLAC and Ogg-Vorbis audio formats
  292. - added support for native window title bars and borders
  293. - moved the window style flag enum out of Component and into ComponentPeer, adding lots of new flags.
  294. - changed some of the methods in ComponentBoundsConstrainer so it'd work with the new windowing stuff
  295. - couple of minor fixes to named pipes on windows
  296. - some Quicktime component fixes and optimisations
  297. - changed the AudioFormat class to allow multiple file extensions, and added a method AudioFormatManager::getWildcardForAllFormats() to make it easy to show browsers for audio files
  298. - on OSX, added a juce.xcconfig file to the XCode build, to make it easier to select whether to build for gcc3 or 4
  299. - made the TabBarButton class public to allow customised tab bar components
  300. - changed the default font on OSX from Verdana to Lucida Grande, as Verdana isn't actually guaranteed to be installed on all systems
  301. ==============================================================================
  302. Changelist for version 1.28
  303. - Cleaned up the audio device driver architecture, adding an AudioIODeviceType class to represent the different types, (e.g. DSound, ASIO, CoreAudio, ALSA, etc). The AudioIODevice class is now an abstract base class, and instances can only be created by using an AudioIODeviceType object. This means that user code no longer needs to care whether support for ASIO is enabled or not.
  304. - Fixes to the ReadWriteLock class
  305. - Couple of bugfixes to stop older VC7 compilers complaining
  306. - Finally found a way of making the windows come to the front correctly under Gnome on Linux
  307. - Fixed a linux mouse focus bug that messed up menus
  308. - New class: Socket, which is.. you guessed it.. a socket.
  309. - New class: NamedPipe, which is, unsurprisingly, a named pipe, for interprocess comms.
  310. - new class: InterprocessConnection, which manages a simple two-way socket or pipe-based message passing connection to another process or machine on the network.
  311. - Added a new interprocess comms page to the demo, to demonstrate InterprocessConnections.
  312. - Improvements to repaint speed on win32 when there are complex repaint regions
  313. - Fix for a mac windowing bug that stopped modal windows coming to the front correctly
  314. ==============================================================================
  315. Changelist for version 1.27
  316. - lots of new file selector classes: DirectoryContentsList, FileListComponent, FileChooserDialogBox, FileBrowserComponent, FileFilter, etc. These can be used either as separate components or as a ready-made dialog box file chooser, which means that the Linux build finally has a file chooser!
  317. - jazzed-up the colour selector to give more control over how it looks
  318. - added a simple pattern match (for matching filenames, mainly) to the String class
  319. - fixes to avoid problems with drifting clocks on the new dual-core intel cpus
  320. - added UTF-8 conversion methods to the String class
  321. - made PropertiesFile support unicode strings
  322. - new class: BorderSize, which is used to represent the gaps around things - I've changed a few methods in classes like LookAndFeel, ResizableWindow, Component to use this instead of specifying the gaps manually, which was a bit messy.
  323. - new class: AudioDataConverters, which contains methods for converting floating point audio to various integer formats
  324. - new static_jassert macro for doing compile-time assertions
  325. - fixes for mac MidiInput with certain drivers
  326. - tidied up the MemoryBlock class and got rid of its virtual base class to make it quicker. Also dumped the AlignedMemoryBlock class: if anyone wants it back, let me know and I'll do a new version!
  327. - optimised repainting for cases where there are a lot of deeply-nested components
  328. - tweak to the broadcast message code on win32 to avoid deadlocks
  329. - fixes for GCC4.0 optimised build under linux - the crashes here were due to strict aliasing in some numeric conversion functions. I've been through and made them more complient now.
  330. ==============================================================================
  331. Changelist for version 1.26
  332. - Linux audio support using ALSA! This is a first stab at an implementation, so I've only had chance to try it on one soundcard - linux audio experts, please let me know what I've done wrong!
  333. - Restructured the way components are housed in windows, getting rid of NativeDesktopWindow and instead having a ComponentPeer base class, of which there may be more than one implementation. (This won't make any difference to most people, only power-users)
  334. - Graphics contexts now work with a RectangleList as their clip region, instead of just a single rectangle
  335. - added some methods to Desktop to access a list of top-level desktop components
  336. - fixes and improvements to TextEditor, improving its handling of word-wrapping
  337. - added a QuickTime page and an audio input monitor to the demo app.
  338. ==============================================================================
  339. Changelist for version 1.25
  340. - new class: TopLevelWindow to handle the concept of "active" windows
  341. - new class: MidiMessageCollector helper for realtime midi input, and created a midi folder to tidy up the directory structure of the midi classes.
  342. - added a JUCE_CATCH_UNHANDLED_EXCEPTIONS config to turn off the juce exception logging
  343. - renamed JUCEApplication::getApplicationInstance() to JUCEApplication::getInstance(), for consistency with all the other singletons. Sorry for the hassle, but it's easy to find-and-replace it in your code.
  344. - finished keyboard navigation for menu bars
  345. - new class: Synthesiser, which is an abstract base class for multitimbral synths. Also added one of these to the audio page of the Juce demo
  346. - TreeViews now have an extra item width parameter for each item, and horizontal scrollbars if items are too wide to fit on screen.
  347. ==============================================================================
  348. Changelist for version 1.24
  349. - more flexible gradient control, allowing sequences of colours
  350. - new class: DocumentWindow, which is a resizable window with a titlebar, nice-looking maximise/minimise/close buttons, a menubar, and lots of cool options.
  351. - improved the ability for ResizableWindows to be used as child components as well as on the desktop, without them losing their drop-shadows
  352. - eye-candy changes to ShinyLookAndFeel, adding glassy-looking buttons
  353. - added a JUCE_VERSION macro to allow conditional builds against different juce versions
  354. - added an option to PopupMenu that allows any component to be easily added as a custom component, rather than only ones derived from PopupMenuCustomComponent.
  355. - made the win32 crt memory debugging overrides conditional with JUCE_CHECK_MEMORY_LEAKS macro in juce_Config.h
  356. - new class: LassoComponent for easy lassoing of groups of UI objects
  357. - additions to SelectedItemSet to improve the logic used when multi-selecting items that might be dragged.
  358. - handy new method: File::replaceWithText()
  359. - new class: RecentlyOpenedFilesList
  360. - updated some crt function names for compatibility with the latest msvc pro
  361. - misc fixes to glyph layout, text editor listener callbacks + lots of other things.
  362. - new class: ComponentBoundsConstrainer for more flexible control over resizing and dragging components around. This replaces the ResizableBase class.
  363. - popup menus now accept keyboard navigation (not done this for jumping between them on menubars yet, though)
  364. ==============================================================================
  365. Changelist for version 1.23
  366. - new class AudioDeviceManager - this makes it super-easy for audio applications to manage the user's choice of audio and midi devices, and to save and load the user's audio settings.
  367. - new class AudioDeviceSelectorComponent - goes with the AudioDeviceManager to make it easy to let the user change the audio settings. I've also updated the JuceDemo audio section to use these new features.
  368. - fix to ProgressBar
  369. - a few graphics rendering fixes, and some optimisations for pixel blending operations
  370. - change to AudioIODeviceCallback class to add methods to tell the callback when the device starts and stops
  371. - small tweak to AudioSourcePlayer now that it no longer needs to be told the sample rate and buffer size
  372. - a few more tweaks for 64-bit compatibility on linux
  373. - added a checkNewSize() method to ResizableBase and ResizableWindow to allow custom resize constraints.
  374. - fix for a mac midi input bug that could freeze the system when malformed midi packets arrive
  375. - optional drop-shadows on menus via the LookAndFeel class
  376. ==============================================================================
  377. Changelist for version 1.22
  378. - new class: AudioFormatManager
  379. - removed any dependencies on DSound.h or DSound.lib so Juce can be built with the latest Platform SDK without needing the DX SDK as well.
  380. - fixed a mac drag-and-drop bug
  381. - made drop-shadows optional for alert boxes + splash screens
  382. - added some fixes for compiling on gcc4.0.2 in mandriva linux
  383. - big restructuring of the graphics code to make it ready for adding OS or hardware-accelerated UI rendering. In its current state it should be pretty much the same speed as before, but I've moved all the software rendering into one class. Small changes to the Image class mean that you can no longer get a pointer to its pixels, you need to lock and unlock a section of the image, so that this will also work in future for images that aren't kept in main memory.
  384. ==============================================================================
  385. Changelist for version 1.21
  386. - new class: MidiBuffer - an efficient array of midi messages for use in audio filters
  387. - new class: MidiKeyboardComponent - a UI comp that shows a piano keyboard and has lots of groovy features
  388. - additions to DragAndDropContainer to allow files to be dragged to external applications
  389. - fix to Array::move()
  390. - added a couple of accessor methods to TreeViewItem
  391. - changed the colour selector component to make the alpha-channel optional
  392. - fixed a layout bug with some tooltips
  393. - fixes to the AIFF file format handler
  394. - efficiency improvements to the Timer class
  395. - add a Component::visibilityChanged() callback method
  396. - added file and line info to the internal exception handling code
  397. - linux window focus bugfix
  398. ==============================================================================
  399. Changelist for version 1.20
  400. - changes to support the latest XCode 2.2 on the Mac, and some changes ready for Intel-based macs
  401. - changes to support the latest version of VSExpress
  402. - optimisations to DirectoryIterator - should make it much faster when scanning slow disks
  403. - optimised the way Timers are triggered
  404. - mac fixes for repainting transparent windows on 10.4
  405. - some tweaks necessary for AudioUnit support
  406. ==============================================================================
  407. Changelist for version 1.19
  408. - added some more translation macros for various strings that were missing
  409. - translation files can now contain escaped characters, e.g. "\t" or "\n"
  410. - added a method to the QuickTimeMovieComponent to manually unload QT, as the automatic method it was using could interfere with other uses of QT in your app
  411. - on the mac, minimising windows now animates and properly minimises them rather than just hiding them
  412. - on the mac, hide/show application now works correctly
  413. - small fix to ComboBox/FilenameComponent
  414. - updated to include the latest versions of all 3rd party libraries - i.e. libjpeg, libpng and zlib, so lots of speed and security improvements there
  415. - added ImageFileFormat::writeImageToStream() method, currently supporting writing of JPEG and PNG files
  416. - fixed a bug in PopupMenus with a large number of items on them
  417. - fixed a mac audio cd reading bug that could mix up the track order
  418. - option for ComponentDragger to keep the entire thing on-screen
  419. ==============================================================================
  420. Changelist for version 1.18
  421. - fixes to the audio resampler, and also to some looping bugs in the audio sources
  422. - ComboBox::getSelectedId() was returning -1 if nothing was selected - changes this to be 0 instead, (it should always have been 0, as item IDs must be non-zero, but -1 is a valid ID)
  423. - added a tryEnter() method to CriticalSection
  424. - some tweaks to DirectSound support to allow the names of input devices to be used as well as those of output devices
  425. - got rid of deprecated calls to strcpy
  426. - a few fixes for gcc4.0 compatibility on linux
  427. - new instructions for linking to the library in XCode
  428. ==============================================================================
  429. Changelist for version 1.17
  430. - fixes for the Mac in string parsing and windowing
  431. - fix for initial folder in the directory chooser on windows
  432. - better unicode font name handling for winXP
  433. - added some code for handling uncaught exceptions on the message thread
  434. - made the DialogWindow::closeButtonPressed a pure virtual to force subclasses to handle it properly
  435. - fixes for some keypresses that didn't work on foreign keyboards on the mac
  436. ==============================================================================
  437. Changelist for version 1.16
  438. - added some methods to the ComboBox class to allow it to have disabled items in its drop-down list, and also to have separator lines and subheadings for different sections.
  439. - new class: ToneGeneratorAudioSource
  440. - more bugfixes for win98 support, XML, unicode, etc.
  441. - on the mac, added DEBUG macros to the project, as these weren't being properly set up before and assertions were left in the release build
  442. - on the mac, the project now creates two separate lib files for release and debug: libjuce.a and libjucedebug.a. Unfortunately there's no obvious way of making an app link to the correct one depending on whether you're doing a debug build, so you'll need to manually set the one you want in your project.
  443. - on linux, fixed up a SUPPORT_AFFINITIES macro because some distros have obsolete APIs that won't compile the cpu affinity code
  444. - methods to add XML elements to a PropertySet
  445. ==============================================================================
  446. Changelist for version 1.15
  447. - got rid of the separate unicode/ansi builds, deleted juce_unicode.h and introduced a JUCE_STRINGS_USE_UNICODE macro which is defined in juce_Config.h. This is now turned on by default, so if there's some reason why you don't want your app to use unicode, you'll need to opt-out by disabling the macro.
  448. - a bunch of unicode fixes and tweaks
  449. - changed the method KeyPressMappingSet::isSafeToInvokeCallbacks() into isSafeToInvokeCommand() so it can choose whether particular commands are safe to run
  450. - added an option to the ResizableBorderComponent and ResizableCornerComponent so that they can enforce a fixed aspect ratio
  451. - new helper method for logging: FileLogger::createDefaultAppLogger()
  452. - new class ResizableBase, as a base class for various resizable components
  453. - various win98 fixes
  454. - made the name of the juce namespace optional
  455. - added methods Rectangle::toString() and fromString() to save/load rectangles easily
  456. - fixed a stupid bug in FilenameComponent
  457. - fixed mac file handling to fully support unicode filenames
  458. - added drag-and-drop functionality to SimpleListBox, with helper methods in ListBox and also a few tweaks to DragAndDropContainer to help it deal with drag sources that are different from the component currently under the mouse. Also updated the demo drag-and-drop to use a listbox.
  459. - various mac UI fixes, including some focus gain/loss improvements
  460. - fixed the Dev-Cpp build, and added a Dev-Cpp project for building the demo app
  461. ==============================================================================
  462. Changelist for version 1.14
  463. - tweaks to ComboBox to make it look and work better, and also to give control over the text justification
  464. - buttons and menu items can now be linked to a command in a KeyPressMappingSet, to trigger commands automatically
  465. - change to Buttons - rather than using an ActionListener, buttons now use a special ButtonListener to respond to callbacks. This allows for up/down messages as well as clicks, and provides a pointer to the button that triggered the event. You might have to alter a few of your classes to deal with this - sorry! but it's not too difficult to change and it does make your code neater and more readable.
  466. - Rewrote BubbleComponent to now be a base class for drawing arbitrary graphics inside a speech bubble shape. Created BubbleMessageComponent as a subclass for showing a text message in a bubble (like the old BubbleComponent used to do).
  467. - Sliders now have an optional pop-up bubble that shows you their current value while they're being dragged. This is handy for sliders which don't have a text box. See Slider::setPopupDisplayEnabled()
  468. - Sliders can now have a suffix which they append to the text string that they display, to make it easy to show units without having to write a subclass
  469. - cosmetic improvements to combo-boxes, menus, textboxes, sliders, and a few other bits + pieces
  470. - mouse events now have a click counter to detect triple and quadruple clicks, and the TextEditor uses these to select the current paragraph or entire document
  471. - added methods to the Desktop class to allow "global" MouseListeners to be registered, that will be told about all mouse events to all components
  472. - new classes : MenuBarComponent and MenuBarModel for doing menu bars (obviously). This is a lightweight menu bar component, not yet an OS-specific menubar, which I'll eventually implement on the Mac, but the same model will apply to both.
  473. - A few 64-bit compatibility tweaks, and the MessageCallbackFunction definition (used in MessageManager::callFunctionOnMessageThread()) now returns a void* instead of an int. This shouldn't affect many people.
  474. - new class: FileBasedDocument - writing all the load/save/save-as logic for documents is pretty tedious, so this handy base-class takes care of all that stuff for you, doing all the file dialog boxes and asking whether to overwrite existing files, etc.
  475. - on Windows, you can now build juce as a DLL, and your app can link to the DLL version by simply defining the JUCE_DLL macro before including the juce headers
  476. ==============================================================================
  477. Changelist for version 1.13
  478. - tidied up the components directory, recategorising the components that were there and putting them into more appropriate folders
  479. - new class: PreferencesPanel for doing mac-style prefs panels.
  480. - improved the KeyMappingEditorComponent to use a treeview instead of a list, and to just look a bit nicer.
  481. - added parameters to DrawableButton to allow it to show another set of images when used as a toggle button.
  482. - changed DrawableText to use a GlyphArrangement. (Not sure why I didn't do that in the first place)
  483. - new class: ColourGradient for specifying a colour gradient (obviously..)
  484. - DrawablePath now uses a ColourGradient to specify its fill type
  485. - tweaked DrawableButton to make it a bit more flexible
  486. - slider thumb size can now be specified in the lookandfeel class
  487. - sliders now hide the mouse when in velocity-sensitive mode
  488. - completely all-new TabbedComponent class, bearing no resemblence to the old one. This one's much easier to use, has look-and-feel support and looks nicer. I've also split out a TabbedButtonBar class so you can just use the bar on its own, rather than using the TabbedComponent, which manages the whole panel.
  489. - fixed a leak when using modal components
  490. - added a new slider style: LinearBar, which is a left-right bar with the text label over the top
  491. - new class: ProgressBar, and a demo of the ThreadWithProgressWindow class (in jucedemo, widgets page, click the "show a popup menu" and it's under "alert windows")
  492. - more refactoring of the LookAndFeel class, in particular moving colours into the base class so you can create looks with customised colours without needing to override any functions
  493. - added an extra clicked() method to buttons so you can handle right clicks and modifier keys
  494. - added a text colour option to the TextButton
  495. - on Linux, sorted out setting the mouse position and invisible mouse cursors
  496. ==============================================================================
  497. Changelist for version 1.12
  498. - fixes to OpenGLComponent to make it work when parent components are moved
  499. - added a flag to allow building of non-GUI apps under linux where UI libraries aren't present
  500. - popup menus can now be positioned to align with a button or other component
  501. - created some static initialiseJuce() functions in juce_Initialisation.h, to make it easy to embed juce in command-line apps or apps that use their own event-loop.
  502. - new class: GroupComponent for drawing a line around a group of components
  503. - new sliders! Completely revamped the Slider class so that it can now do vertical and rotary sliders, as well as allowing user-defined scaling and snapping.
  504. - updated the Mac projects for XCode 2.1 and fixed the GCC4 problems. Apple have just changed the project format for this release, so if you're still on XCode 2.0, then sorry, you'll need to upgrade to build this release.
  505. - a couple of changes to Path to clean up the elliptic-arc and pie-shape drawing methods
  506. - added a Path::addStar() method for drawing star shapes and addBubble() for drawing speech bubble shapes
  507. - new class: ComponentDragger to easily add logic for dragging components around
  508. - new class: ResizableBorderComponent for adding windows-style resizable edges to components
  509. - name change: ResizerComponent is now called ResizableCornerComponent to complement ResizableBorderComponent
  510. - new class: ResizableWindow to make it easy to create top-level windows that are resizable/maximisable, and to make it easy to save/restore their position and state. DialogWindow has also now been changed to use this as its base class.
  511. - renamed method: UndoManager::clear() becomes UndoManager::clearUndoHistory() (just to disambiguate when subclasses are used)
  512. - Component::setInterceptsMouseClicks() can now optionally intercept clicks on child components
  513. - fixed a bug in Array::move
  514. - new set of classes: Drawables - these are used to build up a tree of graphic elements that can be drawn, forming a complex image. So far there are coloured shapes, images and text, but there may be more to add in future. They also have a persistence mechanism so can be saved/loaded and used as a vector graphics format. Although the classes are quite basic at the moment, I might expand these one day to form a way of rendering SVG.
  515. - changes to Buttons - moved all the toggle-button logic into the base class so that all buttons can now have an on/off state and belong to button groups. TextButtons and DrawableButtons use this to draw themselves in an on/off state, and the old ToggleButton class is still there for a tickbox-style toggle button.
  516. - new button type: DrawableButton which takes some Drawables as its image and has a few different styles. This button will ultimately take over from ImageButton and ShapeButton.
  517. - moved isEnabled()/setEnabled() into the Component base class, so that it now applies hierarchically. (previously the different widgets all had their own separate enablement methods)
  518. - fixes and tweaks to the windowing system on Linux to hopefully make it run more happily on Gnome
  519. ==============================================================================
  520. Changelist for version 1.11
  521. - fix for some file methods that were failing to identify volume type correctly in OSX10.4
  522. - rearranged the OpenGL code to move it into the platform-specific folders.
  523. - added openGL support for Linux
  524. - replaced many of the win32 native calls with dual unicode/ansi implementations, so the same code will run on win98 but take advantage of unicode on win2000/XP
  525. - reorganised the String::getHexValue() methods into 32 and 64 bit versions
  526. - new class: SelectedObjectSet - for managing multiply-selected items
  527. - fixed some maths bugs with rendering certain types of gradient brush
  528. - buttons that auto-repeat can now be made to speed up the auto-repeat frequency the longer they're held down
  529. - scrollbars can now have their buttons hidden
  530. - implemented the MD5Checksum class
  531. - new class: PropertySet, which now forms the base class for PropertiesFile
  532. - each Component now has a set of named properties associated with it, which can be inherited from its parent component
  533. - handy new method: DialogWindow::centreAroundComponent()
  534. - finished implementing the Primes class
  535. - finished the RSAKey class, to provide RSA public/private key cryptography
  536. - beefed up the BitArray class, giving it a sign, so it can be used as a large number class, and added some new methods (mostly because they were needed for cryptography)
  537. - implemented the BlowFish class, which is a symmetric-key encryption algorithm
  538. - new layout classes: StretchableLayoutManager and StretchableLayoutResizerBar - these are for creating all kinds of sets of nested components that stretch to fill the available space, with vertical or horizontal divider bars to rescale them. I've added some code to the fonts page of the demo app to demonstrate how to use them
  539. - better makefiles for Linux, generated using premake
  540. - added xinerama support for Linux
  541. ==============================================================================
  542. Changelist for version 1.10
  543. - initial rough release of the Linux build! This is only the first release, so there are still a lot of things missing (audio support, file browsers, etc) and it's bound to be a bit buggy, but the demo app works!
  544. - new class: FilenameComponent
  545. - new class: ReadWriteLock for allowing multiple-reader access to a critical section.
  546. - new class: SplashScreen
  547. - new class: LocalisedStrings, which lets you use a translation file in your app for multi-language support
  548. - improved the sample-rate conversion algorithm in ResamplingAudioSource
  549. - some tweaks to the win32 demo projects (rtti wasn't enabled)
  550. - made the image loading code support Exif digital camera files
  551. - some enhancements to TextEditor and ComboBox, to allow a message to be displayed when nothing is yet entered or selected
  552. - fixed a bug in SubregionStream
  553. - changes to make the code GCC 3.4 complient
  554. ==============================================================================
  555. Changelist for version 1.9
  556. - OpenGL support with the OpenGLComponent class!
  557. - fixed a bug with Array::addSorted that made list multi-selections go wrong
  558. - added some methods to move array elements around
  559. - added the TimeSliceThread class
  560. - added the FileLogger class
  561. ==============================================================================
  562. Changelist for version 1.8
  563. - added some convenience methods to the URL class to download and parse a URL as a string, xml, etc.
  564. - rewrote the TreeView class completely - sorry if you were using the old version, but this one's better, honest!
  565. - TextEditors can now be used for entering passwords with an option to obscure their content
  566. - renamed KeyPressMappingManager to KeyPressMappingSet, and tweaked it slightly
  567. - and a load of bugfixes suggested by users
  568. - updated the i/o streams to use 64-bit read/write positions, (and also the audio reader and writer classes)
  569. - added an option to compile using unicode Win32 calls (turned on in win32_headers.h). This is off by default because although it's better for win2k/XP, it stops apps running on win98.
  570. ==============================================================================
  571. Changelist for version 1.7
  572. - new class: MouseHoverDetector
  573. - new key-shortcut classes: KeyPressMappingManager and KeyMappingEditorComponent
  574. - added QuickTime movie support via the QuickTimeMovieComponent class
  575. - mouse-events are now time-stamped with the time the event occurred rather than using the time it was delivered (better for detecting double-clicks, etc)s
  576. - getScreenX() now takes into account windows that are contained in non-juce parent windows (e.g. audio plugins)
  577. ==============================================================================
  578. Changelist for version 1.6
  579. - added a MessageManagerLock class for allowing multi-threaded access to UI components
  580. - new audio source classes: PositionableAudioSource, BufferingAudioSource, AudioSourcePlayer, etc to make playback more generic
  581. ==============================================================================
  582. Changelist for version 1.5
  583. - added some workarounds to get it to build under the Borland C++ compiler
  584. - added a VCExpress project, that should also (presumably) work in VC7
  585. - changes to Component::focusGained() and focusLost() to indicate the cause of the focus change - be sure to check your code and update any places you've used these methods!
  586. - changed NativeDesktopWindow::setFullScreen() to restore the last known size when full-screening is turned off
  587. - tweaks to win32 window minimisation because some people had mysterious non-repainting windows when building with certain libraries
  588. - added semi-transparent window support on the mac, and some fixes so that windows with the "appearsOnTaskbar" flag set will appear properly in expose
  589. ==============================================================================
  590. Changelist for version 1.4
  591. - made changes to the Mac event handling to allow Juce-based dynamic libraries to work correctly
  592. - cleaned up a lot of warnings under newer MS compilers and got it to build under VC Express
  593. - couple of minor midi bugfixes
  594. ==============================================================================
  595. Changelist for version 1.3
  596. - cleaned up various aspects of the code so it'll build under Mingw
  597. - created a DevC++ project to build the library
  598. - added some AudioFormatReader methods to scan for audio levels
  599. - added some more timecode methods to MidiMessage
  600. - the tab/shift-tab key now moves the focus between components
  601. - changes to the DirectSound support to allow easier addressing of the individual devices and pair up matching input/output devices
  602. - better build settings in XCode on the Mac, so it puts the build products in the right folder
  603. ==============================================================================
  604. Changelist for version 1.2
  605. - changed various bits of the message-handling code to allow it to work better when used to build DLLs on Windows
  606. ==============================================================================
  607. Changelist for version 1.1
  608. - added a StringPairArray class and used it to tidy up some other bits of code
  609. - fixed StringArray::addTokens, which was missing out empty tokens
  610. - added metadata to the audio format readers and writers
  611. - added support for BWAV chunks to WavAudioFormat
  612. - finished some ImageBrush and GradientBrush methods that hadn't been implemented
  613. - added an operator= for the Image class
  614. - tightened up some copy constructors and operator= methods for classes that shouldn't be copied
  615. - added an AudioSubsectionReader class
  616. - added AudioFormatWriter::writeFromAudioReader() and writeFromAudioSource() methods
  617. - added a format type name to AudioFormatReaders and writers
  618. - fixed a small bug with mouse cursors when using modal windows
  619. - added some methods to AudioCDReader to scan for indexes (PC only)
  620. - added FloatElementComparator and IntegerElementComparator classes
  621. - fixed a couple of layout bugettes in AlertWindow
  622. - added the ThreadWithProgressWindow class to make it easy to show a dialog box while a background task completes
  623. - fixed a bug with certain accented characters not displaying correctly on the Mac
  624. - fixed the cursor position sometimes being wrong in TextEditors when undoing/redoing
  625. - added a sample rate parameter to AudioSource::prepareToPlay
  626. ==============================================================================
  627. Changelist for version 1.0 - August 5th 2004
  628. - initial release!
  629. ==============================================================================