1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 23:59:41 +02:00

7538 Commits

Author SHA1 Message Date
Paul Licameli
9a081b0aab Updated README.txt by Bill Wharrie 2017-10-17 21:02:29 -04:00
Paul Licameli
68706c24c9 Improve the message for exhaustion of file storage on Windows 2017-10-17 20:53:46 -04:00
Paul Licameli
2d17ddc100 Fix overload resolution of a call to HelpSystem::ShowHelp...
... formerly wxT("") matched bool, not wxString.  Not what was meant!
2017-10-17 20:32:07 -04:00
Paul Licameli
32e40b3f7f Fix a remote help link in Lib prefs> Locate... > Download ...
FindDialog::OnDownload in ExportMP3.cpp should be analogous with
FindFFmpegDialog::OnDownload in FFmpeg.cpp
2017-10-17 20:31:58 -04:00
Paul Licameli
448eb2eb71 Spectral Edit Multi Tool has a manual page
Fixes an omission in commit fd3d41e82f82f887e57dfd283c5e43e3800762d2
2017-10-17 18:19:17 -04:00
Paul Licameli
93f20b2bf2 Improved message for failed file writes in recording, and elsewhere 2017-10-17 07:18:38 -04:00
Paul Licameli
49174461d1 Overwriting export via save-compressed or chain commands: safety...
... of original file contents in case of failure.
2017-10-17 06:46:29 -04:00
Paul Licameli
cbf4c11e26 When export fails, don't leave a partially written file. 2017-10-17 06:29:04 -04:00
Paul Licameli
9694279804 Guard against crash when stopping a stream...
... caused by remembering a NULL pointer to active project when starting a
stream.

Hard to reproduce, but reported by David Bailes.  We suspect that both the
closing of another project window, and changes of focused application, are
necessary to reproduce the problem.
2017-10-17 06:17:06 -04:00
Paul Licameli
b49e467412 Bug1756: reinstate status for disk capacity during recording 2017-10-16 21:22:19 -04:00
Paul Licameli
8a762f95b6 In case save of new project fails, clean up the _data directory 2017-10-16 21:22:19 -04:00
David Bailes
cbfde23e42 Fix for 1753: keyboard interaction with meter buttons broken
There are two problems with using Enter to press the meter drop down buttons:
1. It only works the first time.
2. If auto-select auto is on, then audio is auto-selected.

This was caused by commit a0ea5d6. The problem with this commit is that meters and sliders are also derived from wxPanel, and therefore affected by the fix.

To fix this, make the above fix specific to the Lyrics panel.
2017-10-14 21:49:20 -04:00
Paul Licameli
c2f82181fc Update special case copying of wxstd.mo for Mac build 2017-10-13 13:12:31 -04:00
Paul Licameli
13358059cf Release build 2017-10-13 10:45:41 -04:00
Paul Licameli
fadef90046 Updated pt_BR.po -- Brazilian Portuguese submitted by Cleber Tavano...
... 99% complete
2017-10-13 10:43:38 -04:00
Paul Licameli
1960762308 Fix a null dereference found by Pvs-studio...
... I think the other examples flagged by it are provably redundant
null-checks after uses of pointers, not really bugs
2017-10-12 11:31:08 -04:00
Svyatoslav
31b820b47c src/widget/OverlayPanel: PVS-Studio: fixes bug with remove function. 2017-10-11 14:16:33 +03:00
Paul Licameli
a2a08e8520 Fix extraneous copies of three .mo files in mac build 2017-10-10 16:24:34 -04:00
Paul Licameli
571ce7f86a Fix the few missing messages of sl.po 2017-10-09 17:04:47 -04:00
Paul Licameli
66915b63ee Updated sl.po -- Slovenian submitted by Martin Srebotnjak...
... Nearly complete, but a few missing strings for Distortion effect
2017-10-06 11:40:15 -04:00
Paul Licameli
6a8bba0a99 Fix all remaining misuses of macro _ in static initializers...
... I found them using a rewritten macro _ that dynamically checked
that translations have been initialized.  But I do not commit that changed
macro.
2017-10-01 17:20:05 -04:00
Paul Licameli
c94222ff54 Fix missed translations in Distortion effect after language change 2017-09-29 17:17:39 -04:00
Paul Licameli
4609d5af2e A few more missed translations...
"seconds" and "Output" are translated elsewhere, so just add _

New string _("%") will simply go through untranslated for now but can be in next
version's audacity.pot
2017-09-28 12:08:07 -04:00
Paul Licameli
f7a059e4fe Updated hi.po -- Hindi submitted by Bashishtha Singh 2017-09-27 02:04:31 -04:00
Paul Licameli
4a0fbf83af Bug1735 residual: paste into region starting < Note Track start...
... Note that the cases of end < start and end > start follow different paths.
2017-09-26 12:05:47 -04:00
Steve Daulton
d78033887f Fix initialization of Debug and Preview buttons 2017-09-26 12:34:44 +01:00
Paul Licameli
10e75a4bcf Fix missing Portuguese and Chinese, Simplified in Mac preferences 2017-09-25 03:08:24 -04:00
Paul Licameli
025eb3075a One more trick needed to get eu distinct from eu_ES in preferences 2017-09-25 03:06:24 -04:00
Paul Licameli
f2d9ff59bb Roger's fixes for MIDI timing on Alsa, as adapted by Paul Licameli 2017-09-25 03:03:21 -04:00
Paul Licameli
ce649cf851 Re-enabling the separate MIDI thread, and comments about that 2017-09-24 02:29:02 -04:00
Paul Licameli
d6657df045 Roger Dannenberg's explanatory comments for new MidiTime function 2017-09-24 02:29:02 -04:00
Paul Licameli
51296237da Roger's timing correction for Alsa; I unified with non-Alsa case...
... Write only one variable in audacityAudioCallback, to be read (maybe in
another thread) by AudioIO::MidiTime().

The non-Alsa case behaves essentially as before:  it wasn't broken, so it
isn't fixed, though it is rearranged.
2017-09-24 02:29:02 -04:00
Paul Licameli
2b84262314 Roger's SystemTime() for use later, fixed to compile on all...
... Why not simply PaUtil_GetTime() or Pt_Time() ?
2017-09-24 02:29:01 -04:00
Paul Licameli
7c67133ff7 Roger's changed FillMidiBuffers loop test (seems harmless, all OSs) 2017-09-24 02:29:01 -04:00
Paul Licameli
b38bacfafa Remove my USE_TIME_INFO conditional compilation... will fix otherwise 2017-09-24 02:29:01 -04:00
Paul Licameli
857a7ca737 Roger Dannenberg's fix for MIDI notes-off, applied to Linux only...
... but then, always:  It's a problem in portmidi which uses ALSA always, no
matter what the chosen portaudio host is.
2017-09-24 02:29:01 -04:00
Paul Licameli
a971dd5bb4 Detect whether ALSA is the portaudio host (possible only on Linux) 2017-09-24 02:29:01 -04:00
Paul Licameli
428f543677 ALL OSs: fix race starting play, which inserted leading zero samples 2017-09-24 02:29:01 -04:00
Paul Licameli
771ed7088f Fix format mismatches caught by msgfmt -c on Travis 2017-09-24 02:28:20 -04:00
Paul Licameli
1fc8f73a0b Updated pl.po -- Polish submitted by Michał Trzebiatowski 2017-09-24 01:35:03 -04:00
Paul Licameli
9978986f82 Fixes in .po as suggested by scootergrisen; remove some #,fuzzy 2017-09-22 16:51:44 -04:00
Paul Licameli
dc00f7366a Updated ko.po -- Korean taken from Transifex 2017-09-22 14:20:16 -04:00
Paul Licameli
bcb2d4cc6b Post-beta updates of some of the translation files, fixing omissions 2017-09-22 01:53:26 -04:00
Paul Licameli
9c059f5115 Updated da.po -- Danish submitted by scootergrisen 2017-09-22 01:51:38 -04:00
Paul Licameli
b1413b7923 Updated zh_CN.po -- Chinese (Simplified) submitted by mkpoli 2017-09-22 01:49:05 -04:00
Paul Licameli
cbe98c977e Updated tr.po -- Turkish submitted by Kaya Zeren 2017-09-22 01:44:47 -04:00
Paul Licameli
2d9fa61bac Updated de.po -- German submitted by Joachim Huffer 2017-09-22 01:39:08 -04:00
Paul Licameli
15bfd8bdca Updated uk.po -- Ukrainian submitted by Yuri Chornoivan 2017-09-22 01:39:00 -04:00
Paul Licameli
2afec0c7ed Updated el.po -- Greek submitted by Dimitris Spingos (Δημήτρης Σπίγγος) 2017-09-22 01:38:54 -04:00
Paul Licameli
b2edf34e37 Updated nl.po -- Dutch submitted by Thomas de Rocker 2017-09-22 01:38:47 -04:00