Commit Graph

33 Commits

Author SHA1 Message Date
SteveDaulton e5ca3cefba Whitespace corrections in Nyquist plug-ins 2021-01-29 12:13:49 +00:00
Paul Licameli f1ae8109ee Internationalize file type choices for Nyquist as we do in C++ ...
... That is, present translators with msgids containing only the descriptions
of the file types.  No punctuation.

This eliminates the last wxFileDialog, replacing it with FileDialogWrapper.
2020-05-22 20:34:42 -04:00
Steve Daulton 69fd566678 Fix printing headers in Sample Data Export 2018-09-07 20:40:24 +01:00
James Crook e670ee1e07 Bug 1903 - Sample Data Export has duplicate menu entries: Tools & Analyze
Now in tools menu and marked as analyze
2018-08-03 16:12:04 +01:00
Steve Daulton a06e561cb7 Support version strings in Nyquist plug-ins
For shipped plug-ins, the version number is the same as the Audacity
release version when the plug-in was last modified.
2018-07-02 22:41:59 +01:00
Steve Daulton 5543dc884a Update Sample Data Export to use file browser 2018-06-18 21:32:22 +01:00
Paul Licameli 842025aeb3 Naming conventions for Nyquist choice controls too...
... see previous commit comment.  Also some i18n-hints
2018-03-27 15:57:49 -04:00
Steve Daulton 975e95abad Update Nyquist plug-in headers
Mostly consistency updates, plus a couple of minor fixes.
Line breaks in translated control text strings do not work, so have
been removed.
Obsolete ";categories" commands removed, and ";info" commands replaced
with standard Lisp comments.
2018-03-21 22:49:35 +00:00
James Crook fbef142fa5 Move 3 Nyquist plug-ins into Tools menu 2018-03-03 20:37:11 +00:00
Paul Licameli ac9148e48f Don't use \n sequence inside Lisp strings needing translation...
... Because xgettext will just remove the \, not replace \n with newline.

That's consistent with Lisp reader behavior in this documentation:
http://www.lispworks.com/documentation/lw70/CLHS/Body/02_de.htm

The XLisp reader, which replaces \n with newline, is nonstandard.

So, to accommodate xgettext, use (format nil "...~%...") instead, or where
you can't do that in a $ header line, just make a line break inside the ""

There are a few "\n" left alone in sample-data-export.ny which are neither
in $ lines nor inside (_ "...")
2018-03-02 20:11:55 -05:00
Paul Licameli da39cc451f Remove redundant ellipses from names in .ny files...
... The code that parses the header was always just throwing them out.

The code that populates menus deduces whether to add ellipses, as there are
controls or not, regardless what the $name line said.
2018-03-02 20:11:54 -05:00
Paul Licameli 0beb16210f Usage of _ in Nyquist program bodies 2018-03-02 20:11:54 -05:00
Paul Licameli da9471ac7f Internationalize some of sample-data-export.ny, including HTML...
... The rule that one should avoid markup in translatable strings conflicted
with the more important rule against concatenating too many strings that are
too short.
2018-03-02 20:11:53 -05:00
Paul Licameli 4733899dd7 Rewrite default values of string controls 2018-03-02 20:11:53 -05:00
Paul Licameli 447d15bc75 Rewrite trailing labels of controls 2018-03-02 20:11:53 -05:00
Paul Licameli 8709e9735a Rewrite choice controls 2018-03-02 20:11:52 -05:00
Paul Licameli 4018e3b87b Rewrite prompts in ;control lines 2018-03-02 20:11:52 -05:00
Paul Licameli cc455fac16 Rewrite ;copyright 2018-03-02 20:11:51 -05:00
Paul Licameli 6298ac947a Rewrite ;author 2018-03-02 20:11:51 -05:00
Paul Licameli 72df4e833c Rewrite ;action 2018-03-02 20:11:50 -05:00
Paul Licameli a13827e024 Rewrite ;name 2018-03-02 20:11:50 -05:00
Paul Licameli 4e0420b9bd In all .ny, http: > https: for Audacity websites 2018-03-01 21:48:41 -05:00
Steve Daulton fd3d41e82f Add help pages for shipped Nyquist effects 2017-05-20 14:49:07 +01:00
Steve Daulton ccbee2b8d9 Update null return value
Fixes incorrect "Nyquist did not return audio" message.
Also updated Audacity web address.
2016-10-31 00:47:54 +00:00
Steve Daulton 7ee8032f3c Limit selection length for Nyquist plug-ins
This can improve progress count for Nyquist effects
that do not process all of selection (bug 558) and provides some
protection against 2^31 overflow issues (bug 439).
2015-08-13 13:06:13 +01:00
stevethefiddle@gmail.com e5d2ef6ecd Consistency - change "rms" to "RMS". 2015-01-17 15:29:11 +00:00
lllucius 41083f74cc Another round of effects bashing.
I've added some of the new plugin stuff to LV2, Nyquist, and
Vamp so that they play better in the new system.  They no
longer get bunched in with the Audacity effects when sorting
or grouping the menus.  They have not been fully converted
but they should be good for 2.1.0.

Nyquist plugins now include ";author" and ";copyright"
statements.

Added the 4 new Nyquist plugins to the Windows build.

Audiounits are still coming...had to push them to the back
burner to get this other stuff out of the way.

Scanning for new plugins has been improved so that newly
discovered ones will be shown to the user when Audacity starts.

Effects menu sorting has been fixed and improved.

Disabling effect types in Preferences works again and you
no longer have to restart Audacity for them the change to work.

Effect usage in chains works again.

Plugin registration dialog code simplified a bit.

Group names in the pluginregistry are now base64 encoded.  I
never really thought about it, but wxFileConfig group names
are case insensitive and since I was using the group name as
the plugin ID, I ran into a conflict on Linux where there
were two plugins with the same name, just different case.  (And
they were different plugins.)  Hoping all of this will change
when/if the config file gets converted to XML.  (wx3 if finally
including XML support)

A fair amount of cleanup of this new code has been done and
will continue as more stuff is converted.
2014-11-19 06:58:44 +00:00
windinthew 700f144e8a Fix typo in keywords. 2014-04-02 20:22:28 +00:00
RichardAsh1981@gmail.com 325888d34d move author credits and license information into comments, not the plug-in UIs. Matches built-in effects in Audacity. 2013-06-26 18:35:33 +00:00
v.audacity 9483c9ac6b Steve's new replacement http://bugzilla.audacityteam.org/attachment.cgi?id=299, for http://bugzilla.audacityteam.org/show_bug.cgi?id=554 2012-07-18 23:21:54 +00:00
v.audacity cf0869ff85 new version from Steve 2012-07-17 00:29:31 +00:00
martynshaw99 c7dae0bf37 Get the labels the right way around 2012-07-03 00:11:44 +00:00
windinthew bf3ce89fb0 New Sample Data Export Plug-in by Steve (for Analyze menu) 2012-06-21 22:20:54 +00:00