New version is now available as 2.0.5 (wip update from 2.0.2).

Changes from 2.0.4 to 2.0.5 is recorded in file CHANGES-2.0.4-2.0.5.
With NetBSD/amd64, 6.1.2(sorry), windows appears, but failing to play now.
This commit is contained in:
Makoto Fujiwara 2014-05-01 01:29:06 +00:00 committed by Thomas Klausner
parent 978a3fbb55
commit 1069564fb8
5 changed files with 86 additions and 17 deletions

View file

@ -0,0 +1,65 @@
2. Changes since version 2.0.4:
Bug fixes for:
* Shaped dither was corrupted and too loud on all stereo exports except FLAC.
* Keyboard Preferences: some Edit and Align commands for different sub-menus
showed the same name.
* Recordings stopped with "Stop and Set Cursor" shortcut could not be undone.
* In locales that use comma for decimal separator:
* Text boxes with slider in Nyquist effects only produced whole numbers
when using comma to enter a fractional number. Text boxes without
slider still have this problem.
* Built-in generators produced silence after running a Nyquist effect.
* (Windows) When first changing to Windows WASAPI host, the input volume slider
in Mixer Toolbar was enabled when it should have been permanently disabled.
* (Windows) On some machines, launching Audacity then recording from the current
Device Toolbar input would not record until the input was reselected.
* (OS X) Frequent crashes occurred on importing audio files on some machines.
* (OS X) Files did not open using Finder "Open with", double-clicking the
file or dragging the file to the Audacity icon.
* (Linux 64-bit) Fixed a crash when using Equalization.
* (Linux) It was not possible to open an effect or other dialog then navigate
through the dialog using TAB.
* (Linux) The Play shortcut did not play a read-directly WAV, AIFF or FLAC
import if the warning for importing uncompressed files appeared.
Changes and Improvements:
* Tracks Menu:
* The separate commands that aligned track start or end with the cursor or
with selection start are combined into "Cursor/Selection Start" commands.
* "Align and Move Cursor" renamed to "Move Selection when Aligning".
* Label Tracks:
* Labels Editor now allows empty labels to be saved on closing the editor.
* TAB and SHIFT+TAB when the label track has focus now always move forwards
or backwards respectively to the nearest label.
* (Windows) On a very few machines, the Windows WDM-KS low latency audio host
introduced in Audacity 2.0.4 caused Audacity to hang or the computer to
crash. WDM-KS has been removed from 2.0.5 until it can be safely enabled.
* (Windows and OS X) Screen reader improvements for Install VST Effects dialog.
* (OS X) Audio Unit plug-ins detected by Audacity on launch are now not loaded
until chosen from the Effect menu. This should speed up launch and avoid
crashes at launch due to misbehaving Audio Units.
* (Linux) Update to PortAudio r1910 fixes memory and other bugs under ALSA.
* (Linux) Applied fix for wxGTK 2.8.12 bug which resulted in loss of Audacity's
menu bar (or visual corruption under Unity) on Debian-based systems.
-------------------------------------------------------------------------------

View file

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.16 2013/01/15 06:46:48 makoto Exp $ # $NetBSD: Makefile,v 1.17 2014/05/01 01:29:06 makoto Exp $
DISTNAME= audacity-minsrc-2.0.2 DISTNAME= audacity-minsrc-2.0.5
PKGNAME= ${DISTNAME:S/-minsrc-/-/} PKGNAME= ${DISTNAME:S/-minsrc-/-/}
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=audacity/} MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=audacity/}
EXTRACT_SUFX= .tar.bz2 EXTRACT_SUFX= .tar.xz
LICENSE= gnu-gpl-v2 LICENSE= gnu-gpl-v2
MAINTAINER= pkgsrc-users@NetBSD.org MAINTAINER= pkgsrc-users@NetBSD.org
@ -60,6 +60,8 @@ PTHREAD_AUTO_VARS= yes
.include "../../mk/oss.buildlink3.mk" .include "../../mk/oss.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk" .include "../../mk/bsd.pkg.mk"
# pkglint says: PLIST:68: Please .include it in the Makefile
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
# XXX Internal compiler error with -O2 # XXX Internal compiler error with -O2
.if ${MACHINE_ARCH} == "alpha" .if ${MACHINE_ARCH} == "alpha"

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.6 2013/01/08 22:37:27 makoto Exp $ @comment $NetBSD: PLIST,v 1.7 2014/05/01 01:29:06 makoto Exp $
bin/audacity bin/audacity
man/man1/audacity.1 man/man1/audacity.1
share/applications/audacity.desktop share/applications/audacity.desktop
@ -45,6 +45,8 @@ share/audacity/nyquist/xlinit.lsp
share/audacity/nyquist/xm.lsp share/audacity/nyquist/xm.lsp
share/audacity/plug-ins/SilenceMarker.ny share/audacity/plug-ins/SilenceMarker.ny
share/audacity/plug-ins/SoundFinder.ny share/audacity/plug-ins/SoundFinder.ny
share/audacity/plug-ins/StudioFadeOut.ny
share/audacity/plug-ins/adjustable-fade.ny
share/audacity/plug-ins/beat.ny share/audacity/plug-ins/beat.ny
share/audacity/plug-ins/clicktrack.ny share/audacity/plug-ins/clicktrack.ny
share/audacity/plug-ins/clipfix.ny share/audacity/plug-ins/clipfix.ny
@ -91,6 +93,7 @@ share/locale/ga/LC_MESSAGES/audacity.mo
share/locale/gl/LC_MESSAGES/audacity.mo share/locale/gl/LC_MESSAGES/audacity.mo
share/locale/he/LC_MESSAGES/audacity.mo share/locale/he/LC_MESSAGES/audacity.mo
share/locale/hi/LC_MESSAGES/audacity.mo share/locale/hi/LC_MESSAGES/audacity.mo
share/locale/hr/LC_MESSAGES/audacity.mo
share/locale/hu/LC_MESSAGES/audacity.mo share/locale/hu/LC_MESSAGES/audacity.mo
share/locale/id/LC_MESSAGES/audacity.mo share/locale/id/LC_MESSAGES/audacity.mo
share/locale/it/LC_MESSAGES/audacity.mo share/locale/it/LC_MESSAGES/audacity.mo

View file

@ -1,10 +1,10 @@
$NetBSD: distinfo,v 1.7 2013/01/15 06:46:48 makoto Exp $ $NetBSD: distinfo,v 1.8 2014/05/01 01:29:06 makoto Exp $
SHA1 (audacity-minsrc-2.0.2.tar.bz2) = c5e4058346c96713a0d39fcd6b33f27137589b06 SHA1 (audacity-minsrc-2.0.5.tar.xz) = f63cafb81f29e7f3813dc9f80fb1dfdbcfe46b33
RMD160 (audacity-minsrc-2.0.2.tar.bz2) = d79ca9ec93baf9cbf1a1673ca755f7edff7b8ab2 RMD160 (audacity-minsrc-2.0.5.tar.xz) = 9a1587f2e970cc78df6183f2ca64a6509876ce1c
Size (audacity-minsrc-2.0.2.tar.bz2) = 6794285 bytes Size (audacity-minsrc-2.0.5.tar.xz) = 5314060 bytes
SHA1 (patch-lib_src_libnyquist_nyquist_xlisp_xlisp_h) = 4e78c0d8ba3a0573b6aabfa914e772aff33281b6 SHA1 (patch-lib_src_libnyquist_nyquist_xlisp_xlisp_h) = 4e78c0d8ba3a0573b6aabfa914e772aff33281b6
SHA1 (patch-lib_src_portmixer_px__unix__oss_px__unix__oss.c) = a06dd0d314d9fb10344078cff0ca548a61dd5e03 SHA1 (patch-lib_src_portmixer_px__unix__oss_px__unix__oss.c) = a06dd0d314d9fb10344078cff0ca548a61dd5e03
SHA1 (patch-locale_Makefile.in) = 4e6c8fa1cbb59f5f59fa2944da5d643faf3eb0f7 SHA1 (patch-locale_Makefile.in) = a598df9a55f5faa6703ec879a0106945bba5032f
SHA1 (patch-src_AudioIO.cpp) = ea688a49286754d952c6ddd4f0b918c8d709fa1d SHA1 (patch-src_AudioIO.cpp) = ea688a49286754d952c6ddd4f0b918c8d709fa1d
SHA1 (patch-src_effects_NoiseRemoval.cpp) = d9f6c310d39f8c4c2f6a0c32514af0fed3c622cc SHA1 (patch-src_effects_NoiseRemoval.cpp) = d9f6c310d39f8c4c2f6a0c32514af0fed3c622cc

View file

@ -1,15 +1,14 @@
$NetBSD: patch-locale_Makefile.in,v 1.1 2013/01/08 22:37:27 makoto Exp $ $NetBSD: patch-locale_Makefile.in,v 1.2 2014/05/01 01:29:06 makoto Exp $
xgettext: unknown option -- package-name=audacity xgettext: unknown option -- package-name=audacity
--- audacity-src-2.0.2/locale/Makefile.in.orig 2012-08-21 17:47:16.000000000 +0900 --- locale/Makefile.in.orig 2013-10-19 16:31:55.000000000 +0900
+++ locale/Makefile.in 2013-01-08 23:52:17.000000000 +0900 +++ locale/Makefile.in 2014-05-01 10:10:08.000000000 +0900
@@ -54,7 +54,7 @@ XARGS=xargs @@ -54,7 +54,6 @@ XARGS=xargs
XGETTEXT_ARGS=-F -C -k_ -k_NoAcc -kwxTRANSLATE \ XGETTEXT_ARGS=-F -C -k_ -k_NoAcc -kwxTRANSLATE \
--add-comments="i18n-hint" \ --add-comments="i18n-hint" \
--msgid-bugs-address="audacity-translation@lists.sourceforge.net" \ --msgid-bugs-address="audacity-translation@lists.sourceforge.net" \
- --package-name="${AUDACITY_NAME}" \ - --package-name="${AUDACITY_NAME}" \
+# --package-name="${AUDACITY_NAME}" \ --package-version="2.0.4" \
--package-version="2.0.0" \ --copyright-holder="Audacity Development Team"
--copyright-holder="Audacity Development Team" \
--msgid-bugs-address="audacity-translation@lists.sourceforge.net"