Commit Graph

13356 Commits

Author SHA1 Message Date
martynshaw99 e628adb922 Make recorded tracks the same size as imported tracks (if one or two channels). 2010-06-02 23:54:44 +00:00
msmeyer3 e31b602497 Update German translation 2010-05-31 10:22:23 +00:00
mchinen 5c88a0d93a adding volatile flags to certain OD bools that get changed by the UI. May fix reported stalled tasks which I can't reproduce. 2010-05-30 14:39:18 +00:00
windinthew 903dcf9427 Correct inaccurate time tracks message 2010-05-27 23:18:21 +00:00
BusinessmanProgrammerSteve 9a048f33b1 don't create new labels for space 2010-05-14 21:15:38 +00:00
BusinessmanProgrammerSteve 602c6996ef Create new labels in the focused track (or, if it's not a
label track, search downward for one)
2010-05-12 16:22:56 +00:00
BusinessmanProgrammerSteve 23ed04bc6a Improve key/character event handling, esp. for Unicode entry on Windows. 2010-05-11 22:10:44 +00:00
mchinen 26b59b363b fixing sort by time bug and refactoring sort by name code. Also making name sort semi case sensitive. 2010-05-09 18:40:09 +00:00
windinthew b52315f111 Shorten lines in "Help Screen" to 60 characters maximum to prevent wrapping problems on Linux, and shorten the text so it should still fit on one screen at 800x600. 2010-05-08 08:38:07 +00:00
BusinessmanProgrammerSteve 47e5a2b80a Update documentation and add checks surrounding block files
(since we now have silent block files with no disk file)
2010-05-08 00:58:23 +00:00
mchinen 19542a4065 fixing sort problems 2010-05-06 13:51:33 +00:00
BusinessmanProgrammerSteve d664740a88 Fix bug 160: silent blockfiles not copied between projects 2010-05-05 23:41:27 +00:00
BusinessmanProgrammerSteve 787d033f4c When creating a label by typing, create in the focused track, not the first selected label track. 2010-05-04 19:59:47 +00:00
BusinessmanProgrammerSteve 8ab0148f5d Fix for bug 24 (unnecessary changes to the temp directory in Prefs->Directories) 2010-05-04 07:49:09 +00:00
mchinen 811c4ffbc3 fix for crash on sort by name 2010-05-04 03:14:43 +00:00
BusinessmanProgrammerSteve 45ad663e05 Don't write primary selection due to wxWidgets bug 2010-05-02 17:54:22 +00:00
BusinessmanProgrammerSteve b67178f729 Support for Primary Selection under X11. 2010-05-02 17:22:01 +00:00
BusinessmanProgrammerSteve b35264aacc Typo in last commit. 2010-05-02 02:44:24 +00:00
BusinessmanProgrammerSteve bb9b9eeb27 Workaround for bug 30: don't allow create-label-by-typing while playing unless the selection has been changed. 2010-05-02 02:39:46 +00:00
LRN1986 cd6848a912 Fix Resample cutting the tracks off 2010-04-28 16:42:22 +00:00
windinthew 3d4b4e0e1a added new Belarusian translation and other missing entries 2010-04-27 08:01:32 +00:00
windinthew fc680e20cb added Belarusian translation (still needs adding to mac/Audacity.xcodeproj/project.pbxproj) 2010-04-27 08:00:23 +00:00
windinthew 35cfc92ad5 Added partial Belarusian software translation by Patricia Clausnitzer 2010-04-27 07:57:21 +00:00
mchinen 52edf9ffc2 replacing expat lib-src include with a shorter copy of the table. this should restore linux builds to normal order. 2010-04-26 17:45:48 +00:00
prlivesey cb51df5633 Added extra command line option to allow debug builds to be packaged into a DMG. 2010-04-25 10:44:22 +00:00
windinthew b5e09a975e Clarify in "not a legal file name" dialogue that track names can also be illegal 2010-04-25 06:04:15 +00:00
mchinen 635931c6be fix for P2 Metadata in imported files can cause the .aup to store unhandled characters. 2010-04-24 20:54:39 +00:00
BusinessmanProgrammerSteve 41dc1f2f6c Fix another initialization order warning. There's still an
"unused variable" warning but I need to investigate before
just ripping it out.
2010-04-24 17:19:08 +00:00
LRN1986 d01839c89d ExtImport: Fix drag'n'drop Plugin reordering on Linux
wxCustomFindItem() function is now used only on Windows
where it is necessary, because wxListCtrl::HitTest() is
broken here.
2010-04-24 13:18:59 +00:00
LRN1986 6151d3d4e2 ExtImport: don't let user select multiple rules at once
While selection with Shift+Up/Down is still possible, it
will only last until Shift is released.
2010-04-24 12:29:14 +00:00
richardash1981 fce76e9f46 Corrext handling of builds where the name of the Audacity binary is not "audacity", via the --program-prefix and --program-suffix options to configure.
Also make numerous other fixes to make uninstall which distros never seem to patch when they patch make install - we now uninstall all the files we install during make install.
2010-04-24 11:24:08 +00:00
LRN1986 b2b82d4ea0 ExtImport: Moved PluginList initialization before RuleTable initialization 2010-04-24 10:17:35 +00:00
LRN1986 1d83aeeb12 Further ExtImport improvements and fixes
* Implemented drag'n'drop reordering for Plugin list.
 Now single wxDropTarget subclass is used for both RuleTable
  and PluginList.
 Now ExtImportPrefsDropTarget interfacing with PrefsPanel is
  a bit more object-oriented (no direct access to properties)
 Now row swapping in PluginList is made by separate function
  (the code is a bit less ugly)
* Fixed PluginList reordering by a button (broken by previous
   commit)
 Made a special FakeOnPluginKeyDown() function for that, also
  added some conditions into handler itself to emulate list
  navigation.
* Fixed PluginList initialization in PopulateOrExchange
* Fixed RuleTable drag'n'drop reordering to work with single click
 Now it is possible to click-and-drag previously unselected item
  to reorder it, no need to select it beforehand
2010-04-23 22:28:43 +00:00
LRN1986 a36aeba850 Extended import filtering fixes
* Fix PluginList item selection movement (Linux)
 Removed some unneeded code that b0rked item selection
 in PluginList on Linux.
* Fix RuleTable multi-item drag selection.
 Used undocumented EnableDragCell() method for that,
 but now it is not possible to select multiple items
 by dragging. It is still necessary to select an item
 before you can drag it (because click-event occurs
 after selection is changed and you can not select
 an item without moving it otherwise).
* Fix indentation
 Converted tabs to 3-spaces.
 Wrapped everything at 80th column.
2010-04-23 17:55:27 +00:00
windinthew 2ff846817f Al Dimond > Team 2010-04-23 10:14:57 +00:00
BusinessmanProgrammerSteve 2d6bd422c8 Nikolay's patch to make keyboard scrolling work for some effect sliders. 2010-04-21 16:27:08 +00:00
LRN1986 f89f540fb1 Don't discard override filter with default rule. Don't override it with MP3 if a file is mp3 2010-04-21 13:42:51 +00:00
LRN1986 2e4d2f1132 Make sure ExtImport override works for meta-filters 2010-04-21 11:53:53 +00:00
BusinessmanProgrammerSteve db39f6262b Keep a constant set of gain/pan sliders -- this allows Audacity
to open projects with very large numbers of tracks without
crashes (Windows) or major slowdows.
2010-04-21 05:03:24 +00:00
BusinessmanProgrammerSteve 828481a3c8 Fix window closing behavior, remove (bug 151) 2010-04-19 06:03:21 +00:00
martynshaw99 c6ad77aabe Generate the right number of samples of audio, redistributing any 'spare' samples amongst the marks and spaces. 2010-04-17 23:26:12 +00:00
BusinessmanProgrammerSteve fad5cd7f96 Fix problem generating over beginning of clips with "editClipsCanMove" mode
off; make WaveTrack::IsEmpty() use the clip boundary routines; hopefully make
warping more correct.
2010-04-15 21:01:50 +00:00
BusinessmanProgrammerSteve 830db47f50 Work-around for bug 154 2010-04-14 18:32:03 +00:00
BusinessmanProgrammerSteve f4beb6856d Linking should default off. 2010-04-13 20:04:27 +00:00
BusinessmanProgrammerSteve fc1617ff2f Fix problem with linked label tracks and truncate silence 2010-04-12 15:29:53 +00:00
BusinessmanProgrammerSteve b3d6457ef5 Compile warning. There's another one in here about an uninit'd variable I'm ignoring... for now... 2010-04-12 15:04:30 +00:00
LRN1986 ed778721d3 Special handling for our stupid MP3 importer in extended import filtering 2010-04-11 20:22:50 +00:00
LRN1986 21ef4c379a Added debug logging in Importer::Import() 2010-04-11 15:09:57 +00:00
LRN1986 e4701d1d10 Shorten EIF prefs button labels 2010-04-11 14:34:32 +00:00
LRN1986 a61f711f88 Fix ExtImportFilter rule editor space trimming.
* Won't ask more than once
* Actually trims both leading and trailing spaces
2010-04-10 16:24:04 +00:00