|
-
- ==============================================================================
-
- JUCE version 1.46
-
- ==============================================================================
- Changelist for version 1.46
-
- - Mac: the project now requires at least XCode V2.5
- - new class: ScopedTryLock
- - added AudioUnit support to the audio hosting code
- - any top-level components will now have their parentSizeChanged() method called when the screen res is changed (not on linux yet though..)
- - jucer: added support for ImageButtons
- - 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
-
- ==============================================================================
- Changelist for version 1.45
-
- - 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.
- - 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.
- - 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.
- - 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.
- - audio plugins: new methods AudioProcessor::beginParameterChangeGesture() and endParameterChangeGesture() let you tell the host when a parameter-change action starts and finishes.
- - audio plugins: new method AudioProcessor::updateHostDisplay() to tell the host that something about your plugin has changed and that it should refresh its display.
- - new class: FileSearchPathListComponent, for letting the user edit a FileSearchPath.
- - 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.
- - added a critical section option to ReferenceCountedArray
- - refactored and added features to the Socket class, replacing it with StreamableSocket (basically the same as the original class), and DatagramSocket.
- - refactored the OpenGLComponent, adding new classes OpenGLPixelFormat and OpenGLContext
- - 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.
- - added an option to choose a Midi output device to the AudioDeviceManager and AudioDeviceSelectorComponent
- - updated the included version of libpng
-
- ==============================================================================
- Changelist for version 1.44
-
- - 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?)
- - 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).
- - tweaks to get it working under Wine.
- - 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)
- - 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.
- - changed the MouseEvent structure so that it now contains a pointer to the event component and also the original component.
- - added a PopupMenu::dismissAllActiveMenus() method.
- - added the JUCE_LOG_ASSERTIONS flag, which can automatically log assertion failures, even in release builds.
- - 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.
- - 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.
- - added some virtual methods to TextEditor to allow customisation of its popup menu.
- - added a Component::setExplicitFocusOrder() method for specifying the order in which components have their focus traversed, and added Jucer support for setting this value.
- - made slider skew factor editable in the jucer
- - 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.
- - added MultiDocumentPanel::createNewDocumentWindow() method to allow creation of custom document windows in a MultiDocumentPanel
- - added a Thread::getCurrentThread() method
- - added an option to MessageManagerLock that can check for thread termination, to avoid deadlocks.
- - new method: PropertySet::setFallbackPropertySet()
- - some simplifications to ApplicationProperties, because of problems it was causing when there were read-only common property files.
-
- ==============================================================================
- Changelist for version 1.43
-
- - 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.
- - native menu bar support for the Mac! See MenuBarModel::setMacMainMenu().
- - 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
- - 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
- - sorted out some problems with the jucer's colour swatch menus
- - fixes for AudioDeviceManager forgetting channel selection
- - added a textCharacter member to the KeyPress class - this allows a unicode printing character to be stored separately from the keycode.
- - added support for extra numeric keypad keys like add, subtract etc, and F13-F16
- - added a radio group ID field to buttons in the jucer
- - 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)
- - new class: ChannelRemappingAudioSource, which lets you take a source and remap its input and output channels.
- - some tweaks to the Time functions on win32 to make them slightly more efficient
- - new method: Slider::setIncDecButtonsDraggable(), which adds a hybrid click/drag mode to the inc/dec button slider
- - added some linux-specific methods for creating new midi in/out devices (ta to kraken)
-
- ==============================================================================
- Changelist for version 1.42
-
- - jucer: fix for crash when trying to add items to a button
- - optimisation for UndoManager when there's a lot of items
- - added multiple file selection as an option for the FileChooser (using native dialogs, not yet juce file browsers)
- - added some colour IDs for rotary slider colours
- - new method: PopupMenu::addSectionHeader()
- - tweaked the way that options are passed to the PropertiesFile constructor, and added an option to save the file as XML.
- - new method: Slider::setSkewFactorFromMidPoint()
- - 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.
- - plugins: added support for current-program-only settings to be saved for VSTs
- - 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
- - 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.
-
- ==============================================================================
- Changelist for version 1.41
-
- - handy new macro: numElementsInArray()
- - improved menu highlighting of custom menu components
- - win32 windowing changes to avoid problems with plugins messing up their host's keyboard accelerators
- - 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
- - 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
- - 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.
- - 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.
- - tweaked the AudioDeviceSelectorComponent to give more flexible control over which channels are enabled in a multi-channel soundcard
- - 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)
- - 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
- - more efficient zip file parsing
- - 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.
- - new methods: String::indexOfAnyOf and lastIndexOfAnyOf
- - 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.
- - added some methods to ListBox and TableListBox to return the position of rows and cells
- - added a method to allow easy drag-and-dropping of treeview items
- - added support for the numeric keypad in KeyPress
- - added methods to create custom buttons in TabbedComponents, and to save/restore the scroll position of a ListBox
- - fixed whitespace display in a password textbox
- - 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.
- - linux: added support for dealing with drag-and-dropped files (thanks to kraken for the code behind that one!)
-
- ==============================================================================
- Changelist for version 1.40
-
- - Audio Plugins: added an initial release of an RTAS wrapper!
- - new classes: IIRFilter and IIRFilterAudioSource
- - changed the Synthesiser to use reference counting for SynthesiserSound objects, so that sounds can be allowed to play on after being removed.
- - added some colour options to the GroupComponent and Toolbar classes
- - added a mouse-sensitivity setting to sliders
- - Linux: added support for XShm, which uses shared memory to improve rendering speed
- - 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.
- - Added a TableListBoxModel::getDragSourceDescription() method to allow easier dragging of table rows
- - Added an option to PropertiesFile for creating files that are common to all users. Also tweaked a couple of methods in this class.
- - 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.
- - Altered the directory search code to optimise fetching of file attributes - this should help when browsing directories on slower network drives
- - couple of small fixes for TableHeaderComponent in stretch-to-fit mode
- - added a new virtual method to OpenGLComponent to provide a callback for setting-up a new GL context
- - some improvements to the AudioDeviceManager to make it do a better job of saving and restoring its state
- - Jucer: some fixes for embedded jucer components
- - changed the PNG loading code to correctly handle interlaced PNG formats
- - 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
- - added a multi-select option flag to treeviews
- - mac + linux: implemented the InterProcessLock class
- - fixed DirectSound handling of unicode driver names
-
- ==============================================================================
- Changelist for version 1.39
-
- - 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.
- - 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.
- - some Win32 changes to enable window maximising via the native system menu
- - added an option to the Slider class for showing min/max values
- - added ALSA midi output support for Linux
- - support for Linux displays with only 16-bit colour, and fixes for handling of exteneded keycode input
- - added some more string constructors, for creating strings from unsigned integers as well as signed ones
- - new class: ComponentMovementWatcher, for keeping track of movements of deeply nested components (probably quite esoteric, but needed for things like OpenGL and ActiveX windows)
- - 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
- - Jucer: added constructor parameters properties for the components inside tabbed components, viewports and jucer components.
- - Jucer: SVG files can now be dropped in as image resources
- - changed the ApplicationCommandManager::getFirstCommandTarget() method to add a command ID parameter
- - MemoryBlock::to64BitEncoding now returns a string rather than taking a dest string parameter
- - tweaked the ImageCache class to use 64-bit hash-codes
- - Plugin toolkit: added a class StandAloneFilterWindow, which is a window object you can use to build a plugin as a standalone app
-
- ==============================================================================
- Changelist for version 1.38
-
- - Windows: mouse cursors and taskbar icons now use a full 8-bit alpha channel when running on WinXP
- - Fixed some SVG bugs and made the parser more efficient
- - 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.
- - 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.
- - Windows: updated the network MAC address function, which wasn't correctly finding all network cards on some systems
- - changes to allow a 64-bit build on Windows, including greater use of compiler intrinsics
- - 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.
- - 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.
- - added an option to TreeView to set the indent size
- - updated the build instructions for Windows compilers
-
- ==============================================================================
- Changelist for version 1.37
-
- - new classes: Toolbar and a bunch of related classes. For creating and dynamically customising toolbars.
- - 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
- - new class: MultiTimer, which is like a Timer, but allows multiple independent timers with different frequencies to share a callback
- - fixed a few bugs in the SVG parser and a gradient-rendering bug, and added an SVG object to the "paths + transforms" demo page
- - added some assertions to warn people about adding components directly to a ResizableWindow rather than using setContentComponent()
- - 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.
- - finished off the ThreadPool class, and souped-up the threading page of the demo app to show how to use it.
- - added some static methods to Drawable to automatically load Drawables from some kind of image or SVG file
- - fixes for some Mac VST and AU windowing bugs
- - new method Component::canModalEventBeSentToComponent(), which allows a modal component to selectively allow events to reach components that it is blocking
- - fixed deprecated function warnings in MSVC8
- - 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
- - updated the "hello world" projects to use a document window
- - altered the AudioFileFormat::createReaderFor() method to specify whether the input stream should be preserved if opening fails
-
- ==============================================================================
- Changelist for version 1.36
-
- - Windows: ActiveXComponents (and QuickTime components) now get told about any mouse events that happen inside the control
- - Graphics::saveState() now saves the colour and brush as well as the clip region and origin
- - SimpleListBox now prevents mouse clicks from getting sent to the list if the component is disabled
- - 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.
- - 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".
- - 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.
- - new handy macro: forEachXmlChildElement, which is a neat way of iterating the child elements of an XmlElement
- - new class: StretchableObjectResizer, which is for calculating how to fit a set of resizable items into a given space
- - new class: TaskbarIconComponent, on Windows only, this lets you show an icon in the system tray.
- - fixes for using a DLL build on Windows - I've moved all the allocators into the juce DLL, so this should now work ok
- - added a bit of SSE optimisation in the graphics rendering code (just for blending large blocks of solid colour)
-
- ==============================================================================
- Changelist for version 1.35
-
- - 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
- - fixed the updating of ToggleButtons that are connected to app commands so that they correctly reflect the command's 'ticked' state.
- - fixed the XML parser's handling of non-text element entities
- - added a few handy static methods to AffineTransform
- - gradient fills can now have a transform matrix specified, to deform their shape
- - 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.
- - new method Colours::findColourForName() for looking up colour names from a string
- - added a flag to ApplicationCommandInfo to stop menus and buttons getting flashed when particular commands are invoked
- - 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.
- - some fixes and optimisations to the file chooser components
- - 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)
- - removed the Graphics class's copy constructor (use the saveState/restoreState methods instead of a temporary copy)
- - added method String::indexOfWholeWord()
- - tidied up some of the header files, moving all inline functions (like jlimit, jmax, etc) into the juce namespace
- - 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.
- - 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
- - 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.
- - 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.
- - Windows: fixes for non-western keyboard input sometimes not working in textboxes
- - Linux: added a MIDI input device, using ALSA
- - Linux: made launching of URLs in the default browser work properly
- - Jucer: added an option to view a semi-transparent overlay of the components while editing the background graphics
- - Jucer: better positioning of new objects when zoomed-in
- - Jucer: added a "common background" graphics layer to buttons, which is drawn behind all the other button states
- - Jucer: added key shortcuts for nudging component's position and size around
- - JuceAudioPlugin: rewrote the mac VST and AU wrappers to embed a HIView rather than the old window hackery it was using.
-
- ==============================================================================
- Changelist for version 1.34
-
- - a bunch of changes to continue improving the expressiveness and consistency of listener classes, (and moving away from generic listeners like ChangeListener):
- - new class: LabelListener class now replaces Label's use of ChangeListeners
- - new class: ComboBoxListener for ComboBoxes, replacing the old use of ActionListener
- - new class: ScrollBarListener for ScrollBars, replacing the old use of ChangeListener
- - new class: KeyboardFocusTraverser, to take the logic of keyboard focus traversal out of the component class.
- - removed the Component::setFocusOrder method - instead, a KeyboardFocusTraverser object now decides the focus order (and can be overridden to support custom behaviours)
- - 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.
- - new class: FocusChangeListener - this can be registered with the Desktop class to receive callbacks whenever the focused component changes
- - new class: FilenameComponentListener - for getting events from FilenameComponents, replacing the use of ActionListener
- - new class: BooleanPropertyComponent - a property component with a toggle button in it
- - some fixes to DLL builds on windows
- - couple of additions to the MidiKeyboardComponent class
- - fix for large menus not scrolling correctly
- - got rid of Component::getMouseX() and getMouseY() - this functionality is already available in Desktop::getMousePosition(), so not needed here as well
- - 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)
- - added new methods Component::relativePositionToGlobal, globalPositionToRelative and relativePositionToOtherComponent for converting co-ordinates to and from screen co-ords. These replace the old getXRelativeTo() method.
- - new class: MagnifierComponent, which magnifies or shrinks any component that you put inside it
- - added colour swatches to the ColourSelectorComponent
- - 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.
- - 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
- - 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
- - 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
- - Jucer: new command to bring any items that are off the edges of the screen back into the middle
- - Jucer: ComboBoxes and Labels now create callback methods
- - 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.
- - Jucer: Holding down the space bar now lets you scroll around the component
- - Jucer: ability to group paint elements together to treat them as a single entity
-
- ==============================================================================
- Changelist for version 1.33
-
- - fixed some graphics error with path strokes, and optimised the stroke creation code
- - improved the ellipse and rounded rectangle path routines by using cubic approximations
- - couple of extra methods for the AsyncUpdater class
- - changed sliders so that they now use a SliderListener class to receive callbacks instead of using ChangeListeners
- - Jucer: lots and lots of bugfixes
- - Jucer: added options for converting text and other graphics elements into paths
- - Jucer: Viewports can now have a content component specified, which may be a Jucer component
- - Jucer: TabbedComponents can now be edited and have the contents of each tab specified
- - Jucer: Added a list of extra callback methods that can be added to the code automatically
- - Jucer: Added an option to images to change the stretch mode
- - Jucer: Graphic objects can now use an ImageBrush for their fill or stroke
- - Jucer: You can now drag-and-drop image files onto the graphics element editor page
- - Jucer: Added a tooltip property to those components that implement the SettableTooltipClient interface
- - Jucer: Gave it an icon
- - Jucer: Sliders now create a SliderListener callback
-
- ==============================================================================
- Changelist for version 1.32
-
- - Jucer: added undo/redo support!
- - 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
- - Jucer: added a VC6 project, and fixed some things that didn't build because of VC6 compiler bugs
- - Jucer: holding down shift when resizing things now fixes the aspect ratio
- - Jucer: holding down ctrl when dragging disables/enables grid-snapping
- - added a couple of options to MultiDocumentPanel
- - fixed a graphics bug with thick path strokes not being created correctly
- - mac: managed to stop it repainting windows unnecessarily while dragging them around
-
- ==============================================================================
- Changelist for version 1.31
-
- - 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.
- - 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.
- - 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.
- - added a method ApplicationCommandManager::setFirstCommandTarget() to make it easier to set up non-component command targets
- - change to the FileBasedDocument load/save methods so that they can return an error message on failure
- - new method: Graphics::fillCheckerBoard()
- - added options to FileChooser and FileChooserDialogBox to prompt the user about overwriting files that already exist
- - 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.
- - fixes to some focus issues, such as popup menus temporarily moving focus away from the main window
- - new class: MultiDocumentPanel to hold multiple document windows as either floating DocumentWindows or in a TabbedComponent.
-
- ==============================================================================
- Changelist for version 1.30
-
- - 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.
- - 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)
- - new class SettableTooltipClient, and made a lot of the existing widgets inherit from this, to make it easy to set tooltips for them
- - new flag in the Justification class - horizontallyJustified, which spreads text out to align both its left and right margins
- - tidied up the Uuid class and got rid of any platform-dependent libraries it was using
- - 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)
- - some UI fixes for running under KDE on Linux
- - added a File::areFileNamesCaseSensitive() method
- - added a method to the MidiInputCallback class to handle incoming sections of a long sysex message. (This is only currently supported on the mac)
- - the XML parser now loads extended UTF-8 characters correctly
-
- ==============================================================================
- Changelist for version 1.29
-
- - moved the Juce demo app into the main Juce tree, to make it all easier to download
- - added classes for FLAC and Ogg-Vorbis audio formats
- - added support for native window title bars and borders
- - moved the window style flag enum out of Component and into ComponentPeer, adding lots of new flags.
- - changed some of the methods in ComponentBoundsConstrainer so it'd work with the new windowing stuff
- - couple of minor fixes to named pipes on windows
- - some Quicktime component fixes and optimisations
- - 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
- - on OSX, added a juce.xcconfig file to the XCode build, to make it easier to select whether to build for gcc3 or 4
- - made the TabBarButton class public to allow customised tab bar components
- - changed the default font on OSX from Verdana to Lucida Grande, as Verdana isn't actually guaranteed to be installed on all systems
-
- ==============================================================================
- Changelist for version 1.28
-
- - 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.
- - Fixes to the ReadWriteLock class
- - Couple of bugfixes to stop older VC7 compilers complaining
- - Finally found a way of making the windows come to the front correctly under Gnome on Linux
- - Fixed a linux mouse focus bug that messed up menus
- - New class: Socket, which is.. you guessed it.. a socket.
- - New class: NamedPipe, which is, unsurprisingly, a named pipe, for interprocess comms.
- - new class: InterprocessConnection, which manages a simple two-way socket or pipe-based message passing connection to another process or machine on the network.
- - Added a new interprocess comms page to the demo, to demonstrate InterprocessConnections.
- - Improvements to repaint speed on win32 when there are complex repaint regions
- - Fix for a mac windowing bug that stopped modal windows coming to the front correctly
-
- ==============================================================================
- Changelist for version 1.27
-
- - 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!
- - jazzed-up the colour selector to give more control over how it looks
- - added a simple pattern match (for matching filenames, mainly) to the String class
- - fixes to avoid problems with drifting clocks on the new dual-core intel cpus
- - added UTF-8 conversion methods to the String class
- - made PropertiesFile support unicode strings
- - 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.
- - new class: AudioDataConverters, which contains methods for converting floating point audio to various integer formats
- - new static_jassert macro for doing compile-time assertions
- - fixes for mac MidiInput with certain drivers
- - 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!
- - optimised repainting for cases where there are a lot of deeply-nested components
- - tweak to the broadcast message code on win32 to avoid deadlocks
- - 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.
-
- ==============================================================================
- Changelist for version 1.26
-
- - 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!
- - 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)
- - Graphics contexts now work with a RectangleList as their clip region, instead of just a single rectangle
- - added some methods to Desktop to access a list of top-level desktop components
- - fixes and improvements to TextEditor, improving its handling of word-wrapping
- - added a QuickTime page and an audio input monitor to the demo app.
-
- ==============================================================================
- Changelist for version 1.25
-
- - new class: TopLevelWindow to handle the concept of "active" windows
- - new class: MidiMessageCollector helper for realtime midi input, and created a midi folder to tidy up the directory structure of the midi classes.
- - added a JUCE_CATCH_UNHANDLED_EXCEPTIONS config to turn off the juce exception logging
- - 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.
- - finished keyboard navigation for menu bars
- - 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
- - TreeViews now have an extra item width parameter for each item, and horizontal scrollbars if items are too wide to fit on screen.
-
- ==============================================================================
- Changelist for version 1.24
-
- - more flexible gradient control, allowing sequences of colours
- - new class: DocumentWindow, which is a resizable window with a titlebar, nice-looking maximise/minimise/close buttons, a menubar, and lots of cool options.
- - improved the ability for ResizableWindows to be used as child components as well as on the desktop, without them losing their drop-shadows
- - eye-candy changes to ShinyLookAndFeel, adding glassy-looking buttons
- - added a JUCE_VERSION macro to allow conditional builds against different juce versions
- - added an option to PopupMenu that allows any component to be easily added as a custom component, rather than only ones derived from PopupMenuCustomComponent.
- - made the win32 crt memory debugging overrides conditional with JUCE_CHECK_MEMORY_LEAKS macro in juce_Config.h
- - new class: LassoComponent for easy lassoing of groups of UI objects
- - additions to SelectedItemSet to improve the logic used when multi-selecting items that might be dragged.
- - handy new method: File::replaceWithText()
- - new class: RecentlyOpenedFilesList
- - updated some crt function names for compatibility with the latest msvc pro
- - misc fixes to glyph layout, text editor listener callbacks + lots of other things.
- - new class: ComponentBoundsConstrainer for more flexible control over resizing and dragging components around. This replaces the ResizableBase class.
- - popup menus now accept keyboard navigation (not done this for jumping between them on menubars yet, though)
-
- ==============================================================================
- Changelist for version 1.23
-
- - 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.
- - 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.
- - fix to ProgressBar
- - a few graphics rendering fixes, and some optimisations for pixel blending operations
- - change to AudioIODeviceCallback class to add methods to tell the callback when the device starts and stops
- - small tweak to AudioSourcePlayer now that it no longer needs to be told the sample rate and buffer size
- - a few more tweaks for 64-bit compatibility on linux
- - added a checkNewSize() method to ResizableBase and ResizableWindow to allow custom resize constraints.
- - fix for a mac midi input bug that could freeze the system when malformed midi packets arrive
- - optional drop-shadows on menus via the LookAndFeel class
-
- ==============================================================================
- Changelist for version 1.22
-
- - new class: AudioFormatManager
- - 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.
- - fixed a mac drag-and-drop bug
- - made drop-shadows optional for alert boxes + splash screens
- - added some fixes for compiling on gcc4.0.2 in mandriva linux
- - 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.
-
- ==============================================================================
- Changelist for version 1.21
-
- - new class: MidiBuffer - an efficient array of midi messages for use in audio filters
- - new class: MidiKeyboardComponent - a UI comp that shows a piano keyboard and has lots of groovy features
- - additions to DragAndDropContainer to allow files to be dragged to external applications
- - fix to Array::move()
- - added a couple of accessor methods to TreeViewItem
- - changed the colour selector component to make the alpha-channel optional
- - fixed a layout bug with some tooltips
- - fixes to the AIFF file format handler
- - efficiency improvements to the Timer class
- - add a Component::visibilityChanged() callback method
- - added file and line info to the internal exception handling code
- - linux window focus bugfix
-
- ==============================================================================
- Changelist for version 1.20
-
- - changes to support the latest XCode 2.2 on the Mac, and some changes ready for Intel-based macs
- - changes to support the latest version of VSExpress
- - optimisations to DirectoryIterator - should make it much faster when scanning slow disks
- - optimised the way Timers are triggered
- - mac fixes for repainting transparent windows on 10.4
- - some tweaks necessary for AudioUnit support
-
- ==============================================================================
- Changelist for version 1.19
-
- - added some more translation macros for various strings that were missing
- - translation files can now contain escaped characters, e.g. "\t" or "\n"
- - 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
- - on the mac, minimising windows now animates and properly minimises them rather than just hiding them
- - on the mac, hide/show application now works correctly
- - small fix to ComboBox/FilenameComponent
- - 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
- - added ImageFileFormat::writeImageToStream() method, currently supporting writing of JPEG and PNG files
- - fixed a bug in PopupMenus with a large number of items on them
- - fixed a mac audio cd reading bug that could mix up the track order
- - option for ComponentDragger to keep the entire thing on-screen
-
- ==============================================================================
- Changelist for version 1.18
-
- - fixes to the audio resampler, and also to some looping bugs in the audio sources
- - 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)
- - added a tryEnter() method to CriticalSection
- - some tweaks to DirectSound support to allow the names of input devices to be used as well as those of output devices
- - got rid of deprecated calls to strcpy
- - a few fixes for gcc4.0 compatibility on linux
- - new instructions for linking to the library in XCode
-
- ==============================================================================
- Changelist for version 1.17
-
- - fixes for the Mac in string parsing and windowing
- - fix for initial folder in the directory chooser on windows
- - better unicode font name handling for winXP
- - added some code for handling uncaught exceptions on the message thread
- - made the DialogWindow::closeButtonPressed a pure virtual to force subclasses to handle it properly
- - fixes for some keypresses that didn't work on foreign keyboards on the mac
-
- ==============================================================================
- Changelist for version 1.16
-
- - 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.
- - new class: ToneGeneratorAudioSource
- - more bugfixes for win98 support, XML, unicode, etc.
- - 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
- - 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.
- - on linux, fixed up a SUPPORT_AFFINITIES macro because some distros have obsolete APIs that won't compile the cpu affinity code
- - methods to add XML elements to a PropertySet
-
- ==============================================================================
- Changelist for version 1.15
-
- - 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.
- - a bunch of unicode fixes and tweaks
- - changed the method KeyPressMappingSet::isSafeToInvokeCallbacks() into isSafeToInvokeCommand() so it can choose whether particular commands are safe to run
- - added an option to the ResizableBorderComponent and ResizableCornerComponent so that they can enforce a fixed aspect ratio
- - new helper method for logging: FileLogger::createDefaultAppLogger()
- - new class ResizableBase, as a base class for various resizable components
- - various win98 fixes
- - made the name of the juce namespace optional
- - added methods Rectangle::toString() and fromString() to save/load rectangles easily
- - fixed a stupid bug in FilenameComponent
- - fixed mac file handling to fully support unicode filenames
- - 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.
- - various mac UI fixes, including some focus gain/loss improvements
- - fixed the Dev-Cpp build, and added a Dev-Cpp project for building the demo app
-
- ==============================================================================
- Changelist for version 1.14
-
- - tweaks to ComboBox to make it look and work better, and also to give control over the text justification
- - buttons and menu items can now be linked to a command in a KeyPressMappingSet, to trigger commands automatically
- - 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.
- - 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).
- - 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()
- - 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
- - cosmetic improvements to combo-boxes, menus, textboxes, sliders, and a few other bits + pieces
- - 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
- - added methods to the Desktop class to allow "global" MouseListeners to be registered, that will be told about all mouse events to all components
- - 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.
- - 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.
- - 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.
- - 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
-
- ==============================================================================
- Changelist for version 1.13
-
- - tidied up the components directory, recategorising the components that were there and putting them into more appropriate folders
- - new class: PreferencesPanel for doing mac-style prefs panels.
- - improved the KeyMappingEditorComponent to use a treeview instead of a list, and to just look a bit nicer.
- - added parameters to DrawableButton to allow it to show another set of images when used as a toggle button.
- - changed DrawableText to use a GlyphArrangement. (Not sure why I didn't do that in the first place)
- - new class: ColourGradient for specifying a colour gradient (obviously..)
- - DrawablePath now uses a ColourGradient to specify its fill type
- - tweaked DrawableButton to make it a bit more flexible
- - slider thumb size can now be specified in the lookandfeel class
- - sliders now hide the mouse when in velocity-sensitive mode
- - 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.
- - fixed a leak when using modal components
- - added a new slider style: LinearBar, which is a left-right bar with the text label over the top
- - 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")
- - 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
- - added an extra clicked() method to buttons so you can handle right clicks and modifier keys
- - added a text colour option to the TextButton
- - on Linux, sorted out setting the mouse position and invisible mouse cursors
-
- ==============================================================================
- Changelist for version 1.12
-
- - fixes to OpenGLComponent to make it work when parent components are moved
- - added a flag to allow building of non-GUI apps under linux where UI libraries aren't present
- - popup menus can now be positioned to align with a button or other component
- - 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.
- - new class: GroupComponent for drawing a line around a group of components
- - 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.
- - 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.
- - a couple of changes to Path to clean up the elliptic-arc and pie-shape drawing methods
- - added a Path::addStar() method for drawing star shapes and addBubble() for drawing speech bubble shapes
- - new class: ComponentDragger to easily add logic for dragging components around
- - new class: ResizableBorderComponent for adding windows-style resizable edges to components
- - name change: ResizerComponent is now called ResizableCornerComponent to complement ResizableBorderComponent
- - 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.
- - renamed method: UndoManager::clear() becomes UndoManager::clearUndoHistory() (just to disambiguate when subclasses are used)
- - Component::setInterceptsMouseClicks() can now optionally intercept clicks on child components
- - fixed a bug in Array::move
- - 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.
- - 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.
- - 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.
- - 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)
- - fixes and tweaks to the windowing system on Linux to hopefully make it run more happily on Gnome
-
- ==============================================================================
- Changelist for version 1.11
-
- - fix for some file methods that were failing to identify volume type correctly in OSX10.4
- - rearranged the OpenGL code to move it into the platform-specific folders.
- - added openGL support for Linux
- - 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
- - reorganised the String::getHexValue() methods into 32 and 64 bit versions
- - new class: SelectedObjectSet - for managing multiply-selected items
- - fixed some maths bugs with rendering certain types of gradient brush
- - buttons that auto-repeat can now be made to speed up the auto-repeat frequency the longer they're held down
- - scrollbars can now have their buttons hidden
- - implemented the MD5Checksum class
- - new class: PropertySet, which now forms the base class for PropertiesFile
- - each Component now has a set of named properties associated with it, which can be inherited from its parent component
- - handy new method: DialogWindow::centreAroundComponent()
- - finished implementing the Primes class
- - finished the RSAKey class, to provide RSA public/private key cryptography
- - 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)
- - implemented the BlowFish class, which is a symmetric-key encryption algorithm
- - 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
- - better makefiles for Linux, generated using premake
- - added xinerama support for Linux
-
- ==============================================================================
- Changelist for version 1.10
-
- - 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!
- - new class: FilenameComponent
- - new class: ReadWriteLock for allowing multiple-reader access to a critical section.
- - new class: SplashScreen
- - new class: LocalisedStrings, which lets you use a translation file in your app for multi-language support
- - improved the sample-rate conversion algorithm in ResamplingAudioSource
- - some tweaks to the win32 demo projects (rtti wasn't enabled)
- - made the image loading code support Exif digital camera files
- - some enhancements to TextEditor and ComboBox, to allow a message to be displayed when nothing is yet entered or selected
- - fixed a bug in SubregionStream
- - changes to make the code GCC 3.4 complient
-
- ==============================================================================
- Changelist for version 1.9
-
- - OpenGL support with the OpenGLComponent class!
- - fixed a bug with Array::addSorted that made list multi-selections go wrong
- - added some methods to move array elements around
- - added the TimeSliceThread class
- - added the FileLogger class
-
- ==============================================================================
- Changelist for version 1.8
-
- - added some convenience methods to the URL class to download and parse a URL as a string, xml, etc.
- - rewrote the TreeView class completely - sorry if you were using the old version, but this one's better, honest!
- - TextEditors can now be used for entering passwords with an option to obscure their content
- - renamed KeyPressMappingManager to KeyPressMappingSet, and tweaked it slightly
- - and a load of bugfixes suggested by users
- - updated the i/o streams to use 64-bit read/write positions, (and also the audio reader and writer classes)
- - 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.
-
- ==============================================================================
- Changelist for version 1.7
-
- - new class: MouseHoverDetector
- - new key-shortcut classes: KeyPressMappingManager and KeyMappingEditorComponent
- - added QuickTime movie support via the QuickTimeMovieComponent class
- - 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
- - getScreenX() now takes into account windows that are contained in non-juce parent windows (e.g. audio plugins)
-
- ==============================================================================
- Changelist for version 1.6
-
- - added a MessageManagerLock class for allowing multi-threaded access to UI components
- - new audio source classes: PositionableAudioSource, BufferingAudioSource, AudioSourcePlayer, etc to make playback more generic
-
- ==============================================================================
- Changelist for version 1.5
-
- - added some workarounds to get it to build under the Borland C++ compiler
- - added a VCExpress project, that should also (presumably) work in VC7
- - 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!
- - changed NativeDesktopWindow::setFullScreen() to restore the last known size when full-screening is turned off
- - tweaks to win32 window minimisation because some people had mysterious non-repainting windows when building with certain libraries
- - added semi-transparent window support on the mac, and some fixes so that windows with the "appearsOnTaskbar" flag set will appear properly in expose
-
- ==============================================================================
- Changelist for version 1.4
-
- - made changes to the Mac event handling to allow Juce-based dynamic libraries to work correctly
- - cleaned up a lot of warnings under newer MS compilers and got it to build under VC Express
- - couple of minor midi bugfixes
-
- ==============================================================================
- Changelist for version 1.3
-
- - cleaned up various aspects of the code so it'll build under Mingw
- - created a DevC++ project to build the library
- - added some AudioFormatReader methods to scan for audio levels
- - added some more timecode methods to MidiMessage
- - the tab/shift-tab key now moves the focus between components
- - changes to the DirectSound support to allow easier addressing of the individual devices and pair up matching input/output devices
- - better build settings in XCode on the Mac, so it puts the build products in the right folder
-
- ==============================================================================
- Changelist for version 1.2
-
- - changed various bits of the message-handling code to allow it to work better when used to build DLLs on Windows
-
- ==============================================================================
- Changelist for version 1.1
-
- - added a StringPairArray class and used it to tidy up some other bits of code
- - fixed StringArray::addTokens, which was missing out empty tokens
- - added metadata to the audio format readers and writers
- - added support for BWAV chunks to WavAudioFormat
- - finished some ImageBrush and GradientBrush methods that hadn't been implemented
- - added an operator= for the Image class
- - tightened up some copy constructors and operator= methods for classes that shouldn't be copied
- - added an AudioSubsectionReader class
- - added AudioFormatWriter::writeFromAudioReader() and writeFromAudioSource() methods
- - added a format type name to AudioFormatReaders and writers
- - fixed a small bug with mouse cursors when using modal windows
- - added some methods to AudioCDReader to scan for indexes (PC only)
- - added FloatElementComparator and IntegerElementComparator classes
- - fixed a couple of layout bugettes in AlertWindow
- - added the ThreadWithProgressWindow class to make it easy to show a dialog box while a background task completes
- - fixed a bug with certain accented characters not displaying correctly on the Mac
- - fixed the cursor position sometimes being wrong in TextEditors when undoing/redoing
- - added a sample rate parameter to AudioSource::prepareToPlay
-
- ==============================================================================
- Changelist for version 1.0 - August 5th 2004
-
- - initial release!
-
- ==============================================================================
|