1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Update for 2.0.3.

This commit is contained in:
windinthew 2013-01-17 17:05:34 +00:00
parent a37c699c08
commit cc7e5eb313

View File

@ -9,7 +9,7 @@ bug reports and patches at:
Personal support with Audacity is not provided by e-mail, but on our Forum: Personal support with Audacity is not provided by e-mail, but on our Forum:
http://audacityteam.org/forum/ . http://audacityteam.org/forum/ .
Audacity is copyright (c) 1999-2012 by Audacity Team. This copyright notice Audacity is copyright (c) 1999-2013 by Audacity Team. This copyright notice
applies to all documents in the Audacity source code archive, except as applies to all documents in the Audacity source code archive, except as
otherwise noted (mostly in the lib-src subdirectories). otherwise noted (mostly in the lib-src subdirectories).
@ -20,12 +20,12 @@ http://creativecommons.org/licenses/by/3.0/legalcode .
"Audacity" is a registered trademark of Dominic Mazzoni. "Audacity" is a registered trademark of Dominic Mazzoni.
Version 2.0.2 Version 2.0.3
Contents of this README: Contents of this README:
1. Licensing 1. Licensing
2. Changes since version 2.0.1 2. Changes since version 2.0.2
3. Known Issues at Release 3. Known Issues at Release
4. Source Code, Libraries and Additional Copyright Information 4. Source Code, Libraries and Additional Copyright Information
5. Compilation Instructions 5. Compilation Instructions
@ -54,62 +54,77 @@ to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html or write to
59 Temple Place - Suite 330 59 Temple Place - Suite 330
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
2. Changes since version 2.0.1: 2. Changes since version 2.0.2:
Bug fixes for: Bug fixes for:
* Interface: * Crash using Undo whilst time-shifting a track.
* "Retain labels" Interface Preference did not retain labels for * Crash using Repair if the selection extended into an empty track.
a region that snapped exactly to both label edges. * Export Multiple didn't prevent export if there was no audio or
* Projects did not save the track selected state. all audio was muted. This allowed export of small invalid files.
* (OS X, Linux) Timer Record: Interlinking of the Start, End and
Duration controls was broken.
* (Windows) JAWS screen-reader did not read the "Draw curves" and
"Graphic EQ" radio buttons in Equalization correctly.
* Envelopes and Clips: * Time Track:
* Exporting (or any render operation) on a track containing * Loop Play of a speeded-up track inserted silence.
split lines could create clicks at the split lines. * Playback and rendering was significantly inaccurate, creating
* Dragging a clip into another track caused a crash if Sync-Lock audible and visual glitches.
Tracks was enabled and there was also a label track.
* Effects and Analysis: * Accessibility:
* Normalize could crash if the track name contained "%". * The mnemonics character "&" was read out by screen readers in
most of the Preferences choices.
* NVDA did not read static text in most dialogs. Text can now be
read by using INSERT + B.
* JAWS and Window-eyes misread the "Duration" control in Silence
Generator.
* Toolbar buttons could not be pressed by ENTER
* Other interface bug fixes.
Changes and Improvements: Changes and Improvements:
* Duration controls when generating at a point now default to * The SoX Resampler library (libsoxr) has replaced libresample in
hh:mm:ss + milliseconds format. Selection Toolbar also defaults Audacity releases, offering both higher quality and greater speed. .
to that format on first installation or resetting preferences.
* Toolbars visual improvements: * Time Tracks new features:
* "Snap To" in Selection Toolbar now has an explanatory tooltip. * "Set Range" now changes only the range of the Time Track,
* Device Toolbar tooltips now display the selected device. preserving the pitch/speed set by any existing warp points.
* Increased default width of Device Toolbar and Meter Toolbar. * Vertical scale added with options for linear and logarithmic
* Improvements and some bug fixes to Nyquist effects, including: display and interpolation.
* Delay (new option to prevent duration change) * Upper and lower speed limits will now be remembered when saving
* Sample Data Export (new "L-R on Same Line" layout option) and reopening a project in 2.0.3. Warp points in projects saved
* Risset Drum (new "Amplitude" slider). by previous Audacity versions will be correctly restored in 2.0.3.
* Importing a labels file writes the file name to the name of the * Warp points saved in a 2.0.3 project will be preserved if opened
Label Track, and exporting a labels file offers the name of the in previous versions but playback and display will be incorrect.
last Label Track in the project.
* Removed the "Audio cache" option from Directories Preferences * New effects:
due to frequent crash reports. All data operations will now * Studio Fade Out (uses a filtered "S" curve).
be written to disk and not to RAM. * Adjustable Fade (accessible effect for creating partial fades
* Removed the FFmpeg "On-Demand" option from Libraries Preferences and adjustable fade shapes).
(this fixes Audacity not building if configured --without-ffmpeg). * Bass and Treble (replaces Bass Boost).
* Compilation: Progress on making the Modules feature mainstream.
Modules can now be individually enabled and disabled in Preferences.
* Real sample rates up to 384000 Hz are now supported for playback
and recording in high resolution devices (the maximum is up to
192000 Hz for Windows DirectSound host).
* Labeled Regions in Edit Menu is renamed to "Labeled Audio" and now
allows splits to be placed at point labels. Labeled audio regions
that touch without overlapping are treated as separate regions.
Overlapping labeled audio regions are treated as a single region.
* Compilation: cmake is required in order to build libsoxr.
* New Croatian translation of Audacity.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
3. Known Issues in 2.0.2: 3. Known Issues in 2.0.3:
For known issues at release of 2.0.2, please see: For known issues at release of 2.0.3, please see:
http://wiki.audacityteam.org/wiki/Release_Notes_2.0.2#known http://wiki.audacityteam.org/wiki/Release_Notes_2.0.3#known
Please also check: Please also check:
http://wiki.audacityteam.org/index.php?title=Known_Issues http://wiki.audacityteam.org/index.php?title=Known_Issues
@ -166,6 +181,9 @@ GPL-compatible license. Specifically:
Reads and writes uncompressed PCM audio files. Reads and writes uncompressed PCM audio files.
Included with Audacity. Included with Audacity.
libsoxr: LGPL
The SoX Resampler library performs one-dimensional sample-rate conversion.
libvamp: new-style BSD libvamp: new-style BSD
Plug-in interface and support library for audio analysis plug-ins. Plug-in interface and support library for audio analysis plug-ins.
Included with Audacity. Included with Audacity.
@ -266,7 +284,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5. Compilation instructions 5. Compilation instructions
First you must download wxWidgets. Audacity 2.0.2 requires wxWidgets 2.8.12 First you must download wxWidgets. Audacity 2.0.3 requires wxWidgets 2.8.12
from: from:
http://www.wxWidgets.org/ http://www.wxWidgets.org/
@ -282,7 +300,7 @@ commands:
make install # as root make install # as root
To see compile-time options you can set, you can type To see compile-time options you can set, you can type
"./configure --help". ./configure --help
If you want to do any development, you might want to generate a configure cache If you want to do any development, you might want to generate a configure cache
and header dependencies: and header dependencies:
@ -307,6 +325,55 @@ or ask at:
6. Previous Changes going back to version 1.1.0 6. Previous Changes going back to version 1.1.0
Changes in version 2.0.2:
Bug fixes for:
* Interface:
* "Retain labels" Interface Preference did not retain labels for
a region that snapped exactly to both label edges.
* Projects did not save the track selected state.
* (OS X, Linux) Timer Record: Interlinking of the Start, End and
Duration controls was broken.
* (Windows) JAWS screen-reader did not read the "Draw curves" and
"Graphic EQ" radio buttons in Equalization correctly.
* Envelopes and Clips:
* Exporting (or any render operation) on a track containing
split lines could create clicks at the split lines.
* Dragging a clip into another track caused a crash if Sync-Lock
Tracks was enabled and there was also a label track.
* Effects and Analysis:
* Normalize could crash if the track name contained "%".
Changes and Improvements:
* Duration controls when generating at a point now default to
hh:mm:ss + milliseconds format. Selection Toolbar also defaults
to that format on first installation or resetting preferences.
* Toolbars visual improvements:
* "Snap To" in Selection Toolbar now has an explanatory tooltip.
* Device Toolbar tooltips now display the selected device.
* Increased default width of Device Toolbar and Meter Toolbar.
* Improvements and some bug fixes to Nyquist effects, including:
* Delay (new option to prevent duration change)
* Sample Data Export (new "L-R on Same Line" layout option)
* Risset Drum (new "Amplitude" slider).
* Importing a labels file writes the file name to the name of the
Label Track, and exporting a labels file offers the name of the
last Label Track in the project.
* Removed the "Audio cache" option from Directories Preferences
due to frequent crash reports. All data operations will now
be written to disk and not to RAM.
* Removed the FFmpeg "On-Demand" option from Libraries Preferences
(this fixes Audacity not building if configured --without-ffmpeg).
* Compilation: Progress on making the Modules feature mainstream.
Modules can now be individually enabled and disabled in Preferences.
Changes in version 2.0.1: Changes in version 2.0.1:
Bug fixes for: Bug fixes for: