1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-04 02:33:14 +01:00

Begin 2.4.2 development

This commit is contained in:
James Crook
2020-05-21 21:21:50 +01:00
parent 1322b40a9c
commit 947ed37918
5 changed files with 52 additions and 37 deletions

View File

@@ -1,7 +1,42 @@
List of significant changes and bug fixes going back to version 1.1.0 List of significant changes and bug fixes going back to version 1.1.0
2. Changes in version 2.3.3 Changes in version 2.4.1:
Critical Bug Fix:
* Audacity 2.4.0 was released with a critical bug, (Bug 2436),
which is fixed in 2.4.1. The bug caused loss of data when using two projects at the same time.
Improvements
* Audacity now runs on Mac Catalina.
* A new Time Toolbar showing current record/playback time has been
split from the Selection Toolbar. It can be resized large.
* Presets for more effects can be imported and exported.
* A new Multi-View mode for tracks. In this mode both
spectrogram and waveform views are shown at the same time.
* Opus available as a new audio export format on Windows and Linux.
* Easier to convert labels between point labels and range labels.
* New Loudness Normalization effect.
* New RMS measurement analyzer.
* New Noise Gate effect.
* New Spectral Delete effect.
See also: https://wiki.audacityteam.org/wiki/New_features_in_Audacity_2.4.1
Bug Fixes
Over 100 bugs in 2.3.3 fixed, including:
* 2237 - Equalization effects have no Import or Export for curves
* 2261 - Graphic EQ sliders have no frequency labels
* 2265 - Track heights are reset to default on project re-opening
* 2303 - Playback does not start at the saved cursor position on reopening a saved project.
* 2314 - Zoom in fail when playing
Changes in version 2.3.3:
Improvements Improvements

View File

@@ -29,12 +29,12 @@ pull request on https://github.com/audacity/audacity/pulls . It's usually
best to discuss functional code changes with us first on audacity-devel: best to discuss functional code changes with us first on audacity-devel:
https://lists.sourceforge.net/lists/listinfo/audacity-devel . https://lists.sourceforge.net/lists/listinfo/audacity-devel .
Version 2.4.1 Version 2.4.2
Contents of this README: Contents of this README:
1. Licensing 1. Licensing
2. Changes since version 2.3.3 2. Changes since version 2.4.1
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
@@ -64,55 +64,35 @@ to https://www.gnu.org/licenses/old-licenses/gpl-2.0.html or write to
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
2. Changes since version 2.3.3: 2. Changes since version 2.4.1:
Critical Bug Fix:
* Audacity 2.4.0 was released with a critical bug, (Bug 2436), which is
fixed in 2.4.1. The bug caused loss of data when using two projects
at the same time.
Improvements Improvements
* Audacity now runs on Mac Catalina. * To be written... wx3.1.3 etc...
* A new Time Toolbar showing current record/playback time has been
split from the Selection Toolbar. It can be resized large.
* Presets for more effects can be imported and exported.
* A new Multi-View mode for tracks. In this mode both
spectrogram and waveform views are shown at the same time.
* Opus available as a new audio export format on Windows and Linux.
* Easier to convert labels between point labels and range labels.
* New Loudness Normalization effect.
* New RMS measurement analyzer.
* New Noise Gate effect.
* New Spectral Delete effect.
See also: https://wiki.audacityteam.org/wiki/New_features_in_Audacity_2.4.0 See also: https://wiki.audacityteam.org/wiki/New_features_in_Audacity_2.4.2
Bug Fixes Bug Fixes
Over 100 bugs in 2.3.3 fixed, including: Over nnn bugs in 2.4.1 fixed, including:
* 2237 - Equalization effects have no Import or Export for curves * To be written
* 2261 - Graphic EQ sliders have no frequency labels
* 2265 - Track heights are reset to default on project re-opening
* 2303 - Playback does not start at the saved cursor position on reopening a saved project.
* 2314 - Zoom in fail when playing
See also: https://wiki.audacityteam.org/wiki/Release_Notes_2.4.0 See also: https://wiki.audacityteam.org/wiki/Release_Notes_2.4.2
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
3. Some Known Issues in 2.4.1: 3. Some Known Issues in 2.4.2:
* 208 - Some effects (including equalization effects) delete Envelope Control Points, or do not move them when timeline changes * TBW
* 2212 - Mac: Keyboard tabbing in Timer Record stuck in left hand panel.
For best workarounds and other known issues in 2.4.0, please see: For best workarounds and other known issues in 2.4.2, please see:
https://wiki.audacityteam.org/wiki/Release_Notes_2.4.0/Issues https://wiki.audacityteam.org/wiki/Release_Notes_2.4.2/Issues
------------------------------------------------------------------------------- -------------------------------------------------------------------------------

View File

@@ -2,7 +2,7 @@
#if you want to work on this, please talk with us on #if you want to work on this, please talk with us on
# https://lists.sourceforge.net/lists/listinfo/audacity-devel # https://lists.sourceforge.net/lists/listinfo/audacity-devel
#build time is circa 7 mins. #build time is circa 7 mins.
version: 2.4.1-alpha-{build} version: 2.4.2-alpha-{build}
image: Visual Studio 2017 image: Visual Studio 2017
shallow_clone: true # reduce traffic shallow_clone: true # reduce traffic
install: install:

View File

@@ -38,7 +38,7 @@ PROJECT_NAME = Audacity
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 2.4.1 PROJECT_NUMBER = 2.4.2
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@@ -39,7 +39,7 @@
// Its value may be more than 0 for pre-release "Beta" builds that differ only // Its value may be more than 0 for pre-release "Beta" builds that differ only
// in the welcome screen, and hiding of some development menu commands, but // in the welcome screen, and hiding of some development menu commands, but
// still link to the alpha manual online. // still link to the alpha manual online.
#define AUDACITY_BUILD_LEVEL 2 #define AUDACITY_BUILD_LEVEL 0
// used #ifdef not #if for IS_ALPHA, IS_BETA, IS_RELEASE, USE_ALPHA_MANUAL // used #ifdef not #if for IS_ALPHA, IS_BETA, IS_RELEASE, USE_ALPHA_MANUAL
#undef IS_ALPHA #undef IS_ALPHA
@@ -62,7 +62,7 @@
// Increment as appropriate every time we release a NEW version. // Increment as appropriate every time we release a NEW version.
#define AUDACITY_VERSION 2 #define AUDACITY_VERSION 2
#define AUDACITY_RELEASE 4 #define AUDACITY_RELEASE 4
#define AUDACITY_REVISION 1 #define AUDACITY_REVISION 2
#define AUDACITY_MODLEVEL 0 #define AUDACITY_MODLEVEL 0
#if defined(IS_BETA) #if defined(IS_BETA)