Mercurial > hg > easaier-soundaccess
changeset 42:00b5875d8c30
remove Sonic Visualiser trace
author | lbajardsilogic |
---|---|
date | Tue, 15 May 2007 12:50:33 +0000 |
parents | 079b8c0d68f1 |
children | 84d1d2076bf7 |
files | README.OSC README.Qt41 data/fileio/FileFinder.cpp deploy_mac.sh sv.prf sv/i18n/sound-access_ru.ts sv/main/PreferencesDialog.cpp sv_mingw.prf |
diffstat | 8 files changed, 59 insertions(+), 59 deletions(-) [+] |
line wrap: on
line diff
--- a/README.OSC Tue May 15 12:25:13 2007 +0000 +++ b/README.OSC Tue May 15 12:50:33 2007 +0000 @@ -1,16 +1,16 @@ -OSC control of Sonic Visualiser +OSC control of Sound Access =============================== -Sonic Visualiser can be controlled remotely using the Open Sound +Sound Access can be controlled remotely using the Open Sound Control protocol. This facility requires Steve Harris's liblo (Lite -OSC) library to have been available when Sonic Visualiser was built. +OSC) library to have been available when Sound Access was built. -Sonic Visualiser opens a single OSC port on startup. The URL of this +Sound Access opens a single OSC port on startup. The URL of this port is printed to standard output on startup, or can be read from the About box on the Help menu. -OSC commands accepted by Sonic Visualiser take the form: +OSC commands accepted by Sound Access take the form: <scheme>://<host>:<port>/<method> [<arg> ...] @@ -23,7 +23,7 @@ There is a small program sv/osc/sv-osc-send.c that sends an OSC method and arguments to a given URL, and a small shell script sv/osc/sv-command -that provides a basic command shell for Sonic Visualiser. +that provides a basic command shell for Sound Access. OSC methods available @@ -34,7 +34,7 @@ /open <filename> - Open a new file (of type determined by Sonic Visualiser). + Open a new file (of type determined by Sound Access). If it is an audio file, use it to replace the existing main audio file (if any). @@ -108,7 +108,7 @@ Undo the last editing operation; redo the last undone operation. Note that most of the classic editing operations (copy and paste etc) are not controllable via OSC, but undo may still be useful - because Sonic Visualiser considers actions such as adding a pane + because Sound Access considers actions such as adding a pane to be undoable editing operations as well. /add <layertype>
--- a/README.Qt41 Tue May 15 12:25:13 2007 +0000 +++ b/README.Qt41 Tue May 15 12:50:33 2007 +0000 @@ -1,8 +1,8 @@ -Building Sonic Visualiser using Qt 4.0 or 4.1 +Building Sound Access using Qt 4.0 or 4.1 ============================================= -The Sonic Visualiser source code should build fine using Qt versions +The Sound Access source code should build fine using Qt versions 4.0, 4.1 or 4.2. However, TrollTech introduced an incompatible change to the handling
--- a/data/fileio/FileFinder.cpp Tue May 15 12:25:13 2007 +0000 +++ b/data/fileio/FileFinder.cpp Tue May 15 12:50:33 2007 +0000 @@ -61,7 +61,7 @@ case SessionFile: settingsKey = "sessionpath"; title = tr("Select a session file"); - filter = tr("Sonic Visualiser session files (*.sv)\nAll files (*.*)"); + filter = tr("Sound Access session files (*.sv)\nAll files (*.*)"); break; case AudioFile: @@ -73,12 +73,12 @@ case LayerFile: settingsKey = "layerpath"; - filter = tr("All supported files (%1)\nSonic Visualiser Layer XML files (*.svl)\nComma-separated data files (*.csv)\nSpace-separated .lab files (*.lab)\nMIDI files (*.mid)\nText files (*.txt)\nAll files (*.*)").arg(DataFileReaderFactory::getKnownExtensions()); + filter = tr("All supported files (%1)\nSound Access Layer XML files (*.svl)\nComma-separated data files (*.csv)\nSpace-separated .lab files (*.lab)\nMIDI files (*.mid)\nText files (*.txt)\nAll files (*.*)").arg(DataFileReaderFactory::getKnownExtensions()); break; case SessionOrAudioFile: settingsKey = "lastpath"; - filter = tr("All supported files (*.sv %1)\nSonic Visualiser session files (*.sv)\nAudio files (%1)\nAll files (*.*)") + filter = tr("All supported files (*.sv %1)\nSound Access session files (*.sv)\nAudio files (%1)\nAll files (*.*)") .arg(AudioFileReaderFactory::getKnownExtensions()); break; @@ -89,7 +89,7 @@ case AnyFile: settingsKey = "lastpath"; - filter = tr("All supported files (*.sv %1 %2)\nSonic Visualiser session files (*.sv)\nAudio files (%1)\nLayer files (%2)\nAll files (*.*)") + filter = tr("All supported files (*.sv %1 %2)\nSound Access session files (*.sv)\nAudio files (%1)\nLayer files (%2)\nAll files (*.*)") .arg(AudioFileReaderFactory::getKnownExtensions()) .arg(DataFileReaderFactory::getKnownExtensions()); break; @@ -181,7 +181,7 @@ case SessionFile: settingsKey = "savesessionpath"; title = tr("Select a session file"); - filter = tr("Sonic Visualiser session files (*.sv)\nAll files (*.*)"); + filter = tr("Sound Access session files (*.sv)\nAll files (*.*)"); break; case AudioFile: @@ -194,7 +194,7 @@ case LayerFile: settingsKey = "savelayerpath"; title = tr("Select a file to export to"); - filter = tr("Sonic Visualiser Layer XML files (*.svl)\nComma-separated data files (*.csv)\nText files (*.txt)\nAll files (*.*)"); + filter = tr("Sound Access Layer XML files (*.svl)\nComma-separated data files (*.csv)\nText files (*.txt)\nAll files (*.*)"); break; case SessionOrAudioFile:
--- a/deploy_mac.sh Tue May 15 12:25:13 2007 +0000 +++ b/deploy_mac.sh Tue May 15 12:50:33 2007 +0000 @@ -1,11 +1,11 @@ #!/bin/bash -# this script should be executed from the directory that contains the sonic-visualiser.app directory (application bundle) +# this script should be executed from the directory that contains the sound-access.app directory (application bundle) # it copies the required 3rd party libraries into the application bundle and corrects the library install names and references LIBPREFIX=/usr/local/lib/ #QTPREFIX=/usr/local/Trolltech/Qt-4.1.0/lib/ -TARGETPATH=sonic-visualiser.app/Contents/Frameworks/ +TARGETPATH=sound-access.app/Contents/Frameworks/ mkdir $TARGETPATH @@ -25,12 +25,12 @@ for LIB in $LIBS; do - install_name_tool -id @executable_path/../Frameworks/${LIB} sonic-visualiser.app/Contents/Frameworks/${LIB} + install_name_tool -id @executable_path/../Frameworks/${LIB} sound-access.app/Contents/Frameworks/${LIB} done for LIB in $LIBS; do - install_name_tool -change ${LIBPREFIX}${LIB} @executable_path/../Frameworks/${LIB} sonic-visualiser.app/Contents/MacOS/sonic-visualiser + install_name_tool -change ${LIBPREFIX}${LIB} @executable_path/../Frameworks/${LIB} sound-access.app/Contents/MacOS/sound-access done pushd $TARGETPATH @@ -56,17 +56,17 @@ # change the id's of the dylibs for FWK in $QTFWKS; do - install_name_tool -id @executable_path/../Frameworks/${FWK} sonic-visualiser.app/Contents/Frameworks/$FWK + install_name_tool -id @executable_path/../Frameworks/${FWK} sound-access.app/Contents/Frameworks/$FWK done # tell the linker to look for dylibs in the app bundle for FWK in $QTFWKS; do - install_name_tool -change ${FWK}.framework/Versions/4/${FWK} @executable_path/../Frameworks/${FWK} sonic-visualiser.app/Contents/MacOS/sonic-visualiser + install_name_tool -change ${FWK}.framework/Versions/4/${FWK} @executable_path/../Frameworks/${FWK} sound-access.app/Contents/MacOS/sound-access done # correct dependencies between QT dylibs for FWK in $QTFWKS; do case $FWK in QtCore) continue;; esac - install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore sonic-visualiser.app/Contents/Frameworks/${FWK} + install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore sound-access.app/Contents/Frameworks/${FWK} done
--- a/sv.prf Tue May 15 12:25:13 2007 +0000 +++ b/sv.prf Tue May 15 12:50:33 2007 +0000 @@ -18,7 +18,7 @@ #linux-g++:LIBS += -Wl,-Bstatic #linux-g++:DEFINES += BUILD_STATIC -#PRECOMPILED_HEADER = /work/sonic-visualiser/pch.h +#PRECOMPILED_HEADER = /work/sound-access/pch.h # These are testable on platforms with pkg-config. If you don't have
--- a/sv/i18n/sound-access_ru.ts Tue May 15 12:25:13 2007 +0000 +++ b/sv/i18n/sound-access_ru.ts Tue May 15 12:50:33 2007 +0000 @@ -460,9 +460,9 @@ </message> <message> <location filename="../../data/fileio/FileFinder.cpp" line="184"/> - <source>Sonic Visualiser session files (*.sv) + <source>Sound Access session files (*.sv) All files (*.*)</source> - <translation>Файлы сессий Sonic Visualiser (*.sv) + <translation>Файлы сессий Sound Access (*.sv) Все файлы (*.*)</translation> </message> <message> @@ -475,14 +475,14 @@ <message> <location filename="../../data/fileio/FileFinder.cpp" line="76"/> <source>All supported files (%1) -Sonic Visualiser Layer XML files (*.svl) +Sound Access Layer XML files (*.svl) Comma-separated data files (*.csv) Space-separated .lab files (*.lab) MIDI files (*.mid) Text files (*.txt) All files (*.*)</source> <translation>Все поддерживаемые типы файлов (%1) -XML-файлы слоёв Sonic Visualiser (*.svl) +XML-файлы слоёв Sound Access (*.svl) Разделённые запятой файлы данных (*.csv) Разделённые пробелом файлы .lab (*.lab) MIDI-файлы (*.mid) @@ -492,23 +492,23 @@ <message> <location filename="../../data/fileio/FileFinder.cpp" line="82"/> <source>All supported files (*.sv %1) -Sonic Visualiser session files (*.sv) +Sound Access session files (*.sv) Audio files (%1) All files (*.*)</source> <translation>Все поддерживаемые типы файлов (*.sv %1) -Файлы сессий Sonic Visualiser (*.sv) +Файлы сессий Sound Access (*.sv) Звуковые файлы (%1) Все файлы (*.*)</translation> </message> <message> <location filename="../../data/fileio/FileFinder.cpp" line="93"/> <source>All supported files (*.sv %1 %2) -Sonic Visualiser session files (*.sv) +Sound Access session files (*.sv) Audio files (%1) Layer files (%2) All files (*.*)</source> <translation>Все поддерживаемые типы файлов (*.sv %1 %2) -Файлы сессий Sonic Visualiser (*.sv) +Файлы сессий Sound Access (*.sv) Звуковые файлы (%1) Файлы слоёв (%2) Все файлы (*.*)</translation> @@ -577,11 +577,11 @@ </message> <message> <location filename="../../data/fileio/FileFinder.cpp" line="197"/> - <source>Sonic Visualiser Layer XML files (*.svl) + <source>Sound Access Layer XML files (*.svl) Comma-separated data files (*.csv) Text files (*.txt) All files (*.*)</source> - <translation>XML-файлы слоёв Sonic Visualiser (*.svl) + <translation>XML-файлы слоёв Sound Access (*.svl) Разделённые запятой данные (*.csv) Текстовые файлы (*.txt) Все файлы (*.*)</translation> @@ -928,8 +928,8 @@ <name>MainWindow</name> <message> <location filename="../main/MainWindow.cpp" line="2885"/> - <source>Sonic Visualiser</source> - <translation>Sonic Visualiser</translation> + <source>Sound Access</source> + <translation>Sound Access</translation> </message> <message> <location filename="../main/MainWindow.cpp" line="813"/> @@ -1508,13 +1508,13 @@ </message> <message> <location filename="../main/MainWindow.cpp" line="1350"/> - <source>&About Sonic Visualiser</source> - <translation>&О Sonic Visualiser</translation> + <source>&About Sound Access</source> + <translation>&О Sound Access</translation> </message> <message> <location filename="../main/MainWindow.cpp" line="1351"/> - <source>Show information about Sonic Visualiser</source> - <translation>Показать информацию о Sonic Visualiser</translation> + <source>Show information about Sound Access</source> + <translation>Показать информацию о Sound Access</translation> </message> <message> <location filename="../main/MainWindow.cpp" line="1467"/> @@ -1800,14 +1800,14 @@ <message> <location filename="" line="7471221"/> <source>All supported files (%1) -Sonic Visualiser Layer XML files (*.svl) +Sound Access Layer XML files (*.svl) Comma-separated data files (*.csv) Space-separated .lab files (*.lab) MIDI files (*.mid) Text files (*.txt) All files (*.*)</source> <translation type="obsolete">Все поддерживаемые типы файлов (%1) -XML-файлы слоёв Sonic Visualiser (*.svl) +XML-файлы слоёв Sound Access (*.svl) Разделённые запятой файлы данных (*.csv) Разделённые пробелом файлы .lab (*.lab) MIDI-файлы (*.mid) @@ -1821,11 +1821,11 @@ </message> <message> <location filename="" line="7471221"/> - <source>Sonic Visualiser Layer XML files (*.svl) + <source>Sound Access Layer XML files (*.svl) Comma-separated data files (*.csv) Text files (*.txt) All files (*.*)</source> - <translation type="obsolete">XML-файлы слоёв Sonic Visualiser (*.svl) + <translation type="obsolete">XML-файлы слоёв Sound Access (*.svl) Разделённые запятой данные (*.csv) Текстовые файлы (*.txt) Все файлы (*.*)</translation> @@ -1852,13 +1852,13 @@ </message> <message> <location filename="../main/MainWindow.cpp" line="3017"/> - <source>Sonic Visualiser: %1</source> - <translation>Sonic Visualiser: %1</translation> + <source>Sound Access: %1</source> + <translation>Sound Access: %1</translation> </message> <message> <location filename="../main/MainWindow.cpp" line="2460"/> - <source>Sonic Visualiser: %1 [%2]</source> - <translation>Sonic Visualiser: %1 [%2]</translation> + <source>Sound Access: %1 [%2]</source> + <translation>Sound Access: %1 [%2]</translation> </message> <message> <location filename="../main/MainWindow.cpp" line="2473"/> @@ -2031,8 +2031,8 @@ </message> <message> <location filename="../main/MainWindow.cpp" line="4665"/> - <source><h3>About Sonic Visualiser</h3></source> - <translation><h3>О программе Sonic Visualiser</h3></translation> + <source><h3>About Sound Access</h3></source> + <translation><h3>О программе Sound Access</h3></translation> </message> <message> <location filename="" line="7471221"/> @@ -2111,8 +2111,8 @@ </message> <message> <location filename="../main/MainWindow.cpp" line="4748"/> - <source>About Sonic Visualiser</source> - <translation>О программе Sonic Visualiser</translation> + <source>About Sound Access</source> + <translation>О программе Sound Access</translation> </message> <message> <location filename="../main/MainWindow.cpp" line="3987"/> @@ -2583,8 +2583,8 @@ </message> <message> <location filename="../main/MainWindow.cpp" line="4666"/> - <source><p>Sonic Visualiser is a program for viewing and exploring audio data for<br>semantic music analysis and annotation.</p></source> - <translation><p>Sonic Visualiser — программа для просмотра и исследования звуковых<br>данных с целью семантического анализа и аннотации музыки.</p></translation> + <source><p>Sound Access is a program for viewing and exploring audio data for<br>semantic music analysis and annotation.</p></source> + <translation><p>Sound Access — программа для просмотра и исследования звуковых<br>данных с целью семантического анализа и аннотации музыки.</p></translation> </message> <message> <location filename="../main/MainWindow.cpp" line="4668"/> @@ -3306,8 +3306,8 @@ </message> <message> <location filename="../main/PreferencesDialog.cpp" line="42"/> - <source>Sonic Visualiser Application Preferences</source> - <translation>Настройки программы Sonic Visualiser</translation> + <source>Sound Access Application Preferences</source> + <translation>Настройки программы Sound Access</translation> </message> <message> <location filename="../main/PreferencesDialog.cpp" line="50"/> @@ -3453,7 +3453,7 @@ <message> <location filename="../main/main.cpp" line="214"/> <source> -Sonic Visualiser is a program for viewing and exploring audio data +Sound Access is a program for viewing and exploring audio data for semantic music analysis and annotation. Usage:
--- a/sv/main/PreferencesDialog.cpp Tue May 15 12:25:13 2007 +0000 +++ b/sv/main/PreferencesDialog.cpp Tue May 15 12:50:33 2007 +0000 @@ -39,7 +39,7 @@ setLayout(grid); QGroupBox *groupBox = new QGroupBox; - groupBox->setTitle(tr("Sonic Visualiser Application Preferences")); + groupBox->setTitle(tr("Sound Access Application Preferences")); grid->addWidget(groupBox, 0, 0); QGridLayout *subgrid = new QGridLayout;
--- a/sv_mingw.prf Tue May 15 12:25:13 2007 +0000 +++ b/sv_mingw.prf Tue May 15 12:50:33 2007 +0000 @@ -18,7 +18,7 @@ LIBS += -Wl,-Bstatic DEFINES += BUILD_STATIC -#PRECOMPILED_HEADER = /work/sonic-visualiser/pch.h +#PRECOMPILED_HEADER = /work/sound-access/pch.h # These are testable on platforms with pkg-config. If you don't have