1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-27 09:38:39 +02:00

72 Commits

Author SHA1 Message Date
Paul Licameli
954a974422 Changed the conditional compilation for alpha/beta/release...
... In particular, don't put the extra information in MIDI device info for Beta

But still link to the Alpha manual.
2017-09-11 00:10:22 -04:00
Paul Licameli
f6b5d8e651 Generate msgid and msgid_plural in .pot for wxPLURAL macro 2017-09-10 19:24:42 -04:00
Paul Licameli
7423a2c232 Change welcome screen to identify version as a beta 2017-08-31 17:08:50 -04:00
Paul Licameli
272d3026e2 Can change "alpha" to "beta" in welcome screen if IS_ALPHA > 1...
... and don't add "x" and date when IS_ALPHA is turned off.
2017-08-31 12:59:33 -04:00
Paul Licameli
4fab7365e5 Fix errors in post build step on Mac
Was, Xcode ended the build, or even a clean, of either Debug or Release,
building the target 'Create Info Header'

This were introduced at commit 0361169839bca65d67ae2aca08bcc973c7faf4b7
2017-06-23 22:53:53 -04:00
James Crook
82a7778813 Merge pull request #193 from walisser/clang
Fix clang build
2017-04-09 22:31:32 +01:00
James Crook
028ed19d90 Sync with DarkAudacity 2017-04-02 23:07:13 +01:00
Darrell Walisser
389370d01e clang: prevent detecting clang as gcc 2017-03-31 12:51:15 -04:00
Paul Licameli
70d9e4bdc7 GetMinMax, GetRMS functions take a mayThrow argument, return numbers 2017-03-21 14:19:02 -04:00
Paul Licameli
5036583549 Fewer inclusions of AudacityApp.h 2017-03-17 17:52:24 -04:00
James Crook
f061b0b853 Prepare for 2.2.0 Release Cycle.
* IS_ALPHA to 1
* Version number to 2.2.0.
2017-03-17 20:39:11 +00:00
James Crook
ffe4aae962 IS_ALPHA to 0 2017-03-08 13:37:36 +00:00
James Crook
9e7756cdc8 Set IS_ALPHA to 1 2017-02-24 13:44:50 +00:00
James Crook
31df61f537 Set IS_ALPHA to 0. 2017-02-01 16:09:36 +00:00
Paul Licameli
1914fc6437 Make Mac build again 2016-10-21 10:31:15 -04:00
James Crook
79c5834a24 Bug 1506 - Linux: Audacity permits building with gcc < 4.9.0, resulting in save project segfaults
My change here doesn't permit building with gcc 4.8 any more.  It would be nicer to do this during configure, but doing it at all may be enough to demote this bug from P1 status.
2016-10-07 23:07:00 +01:00
James Crook
545d741eb2 Make Audacity source more like DarkAudacity source. 2016-09-11 13:03:37 +01:00
Paul Licameli
6043638e31 Another std::min, more auto & decltype, remove more casts 2016-08-29 20:07:43 -04:00
Paul Licameli
0c9deb398c Fix mac build. No standard headers in Audacity.h. 2016-03-01 12:22:37 -05:00
Paul Licameli
62361c32f4 Define Maybe<X> 2016-02-25 20:18:29 -05:00
Paul Licameli
527a826b86 Define and use PROFILE_DLL_API 2016-02-24 21:29:25 -05:00
Paul Licameli
9e5d31d347 More changes to Audacity.h to hide new and delete from code sweeps...
... changed some comments, and hid  = delete in a macro.

That is a new C++11 feature that lets you stipulate that a class suppresses an
otherwise inherited or generated name.
2016-02-19 10:46:23 -05:00
Paul Licameli
7988e814bd Define make_unique properly, use in at least one commonly visited place...
Which is file opening.

So we can be sure it compiles and works on all platforms.
2016-02-15 14:30:41 -05:00
Paul Licameli
7c4c45a0d5 "new"->"NEW" in comments, easier to find remaining naked operator new 2016-02-14 18:52:41 -05:00
Paul Licameli
6706b19af8 Define macro safenew and template functions std::make_unique 2016-02-14 13:20:52 -05:00
James Crook
33477fd5d1 IS_ALPHA 0 -> 1 and upped version number. 2016-01-20 15:52:53 +00:00
James Crook
c57eeb46bc IS_ALPHA from 1 to 0 2015-12-30 09:45:53 +00:00
Gale Andrews
88dae8ff7e Back to IS_ALPHA 1 2015-11-26 08:19:36 +00:00
James Crook
2dda54d0e8 IS_ALPHA from 1 to 0. 2015-11-06 11:48:56 +00:00
Paul Licameli
cdc268f681 Bug 1097: Fix unsafe macro definitions which caused display bugs 2015-07-26 00:05:27 -04:00
Steve Daulton
df8ddde874 Added dB - linear amplitude conversion macros. 2015-07-24 21:59:34 +01:00
James Crook
c929932f30 IsAlpha1 and now 2.1.2. 2015-07-16 17:17:50 +01:00
James Crook
60529e4a9e 2.1.1. IS_ALPHA -> 0
Preparation for RC1 for 2.1.1.
2015-06-29 00:31:44 +01:00
Leland Lucius
7a0aa43a82 Convert all wxTRANSLATE() to XO()
XO() can be used anywhere a string must be extracted for translation
but not automatically translated at runtime.
2015-04-18 23:03:49 -05:00
Leland Lucius
8fbfa460c4 Migrating the remaining effects
This brings the builtin, LV2, and VAMP effects inline with the
Audio Units, LADSPA, and VST effects.  All effects now share
a common UI.

This gives all effects (though not implemented for all):

User and factory preset capability
Preset import/export capability
Shared or private configuration options

Builtin effects can now be migrated to RTP, depending on algorithm.
LV2 effects now support graphical interfaces if the plugin supplies one.
Nyquist prompt enhanced to provide some features of the Nyquist Workbench.

It may not look like it, but this was a LOT of work, so trust me, there
WILL be problems and everything effect related should be suspect.  Keep
a sharp eye (or two) open.
2015-04-16 23:36:28 -05:00
Vaughan Johnson
f88b27e6d8 Audacity.h: Upped version and back to IsAlpha
Also updated copyright comments.  1999-2015 rather than 1999-2011.  Vaughan Johnson now listed as contributor to this file.  'et al' corrected to 'et alii'.
2015-04-07 21:40:02 +01:00
v.audacity@gmail.com
e6dfecc2d0 Turn off IS_ALPHA per release agenda step 6.1. 2015-02-13 02:28:26 +00:00
v.audacity@gmail.com
1da35caa8e Make it official that the next release will be 2.1.0. 2014-11-20 21:49:04 +00:00
v.audacity
aff3291c92 Changes after 2.0.6 release. 2014-09-29 23:30:09 +00:00
v.audacity
a6f148dae4 Turn off IS_ALPHA for release
http://wiki.audacityteam.org/wiki/Release_Process#Process step 3.1.1
2014-09-04 02:50:06 +00:00
james.k.crook@gmail.com
4ae1517898 Inadvertently checked in changes to IS_ALPHA and Restart. Rolled these back. 2014-06-13 17:10:18 +00:00
james.k.crook@gmail.com
4c0d515dba Added <wx/filename.h> to #includes. 2014-06-13 17:02:37 +00:00
benjamin.drung@gmail.com
277932dccb Remove trailing spaces. 2014-06-03 20:30:19 +00:00
benjamin.drung@gmail.com
7d4bc6917b Fix build failure caused by undefined PATH_MAX.
Use PATH_MAX for PLATFORM_MAX_PATH only if it is defined and replace all
instances of PATH_MAX by PLATFORM_MAX_PATH.
2013-11-21 20:52:17 +00:00
v.audacity
6c88c38a00 2.0.5 is released. Onward with 2.0.6! 2013-10-22 07:31:18 +00:00
v.audacity
20ad2a7a6f #define IS_ALPHA 0 2013-10-11 18:46:46 +00:00
v.audacity
6ec4568175 2.0.4 is released. Onward with 2.0.5! 2013-09-07 19:06:49 +00:00
v.audacity
e703841be1 Looks like all systems go for 2.0.4rc1, so #define IS_ALPHA 0. 2013-08-31 20:47:29 +00:00
martynshaw99
18c2d64775 Remove the BETA definition, so we can't use it. 2013-06-20 22:20:32 +00:00
v.audacity
cb08fdf4bd increments per http://wiki.audacityteam.org/wiki/Release_Process#Process step 11.2 2013-01-22 09:01:44 +00:00