├── .github └── workflows │ └── build.yml ├── .gitignore ├── LMS ├── mac │ ├── COPYING │ ├── Changes │ ├── Info.plist │ ├── LMS.c │ ├── LMS.icns │ ├── LMS.png │ ├── LMS.rtf │ ├── Makefile │ └── PkgInfo ├── swift │ ├── AppDelegate.swift │ ├── Audio.h │ ├── Audio.m │ ├── DisplayView.swift │ ├── Frameworks │ │ ├── libswiftAccelerate.dylib │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreAudio.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreFoundation.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ ├── libswiftMetal.dylib │ │ ├── libswiftObjectiveC.dylib │ │ ├── libswiftQuartzCore.dylib │ │ ├── libswiftSwiftOnoneSupport.dylib │ │ ├── libswiftXPC.dylib │ │ └── libswiftos.dylib │ ├── Info.plist │ ├── LMS-Bridging-Header.h │ ├── LMS-Swift.h │ ├── LMS.entitlements │ ├── LMS.icns │ ├── LMS.png │ ├── LMSView.swift │ ├── Makefile │ ├── MeterView.swift │ ├── PkgInfo │ ├── README.md │ ├── SpectrumView.swift │ └── main.swift └── windows │ ├── COPYING │ ├── LMS.cpp │ ├── LMS.h │ ├── LMS.ico │ ├── LMS.manifest │ ├── LMS.nsi │ ├── LMS.rc │ ├── LMS.txt │ └── Makefile ├── README.md ├── SLMS ├── mac │ ├── COPYING │ ├── Changes │ ├── Info.plist │ ├── Makefile │ ├── PkgInfo │ ├── SLMS.c │ ├── SLMS.icns │ ├── SLMS.png │ └── SLMS.rtf ├── swift │ ├── AppDelegate.swift │ ├── Audio.h │ ├── Audio.m │ ├── DisplayView.swift │ ├── Frameworks │ │ ├── libswiftAccelerate.dylib │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreAudio.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreFoundation.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ ├── libswiftMetal.dylib │ │ ├── libswiftObjectiveC.dylib │ │ ├── libswiftQuartzCore.dylib │ │ ├── libswiftSwiftOnoneSupport.dylib │ │ ├── libswiftXPC.dylib │ │ └── libswiftos.dylib │ ├── Info.plist │ ├── KnobView.swift │ ├── MainMenu.nib │ ├── Makefile │ ├── MeterView.swift │ ├── PkgInfo │ ├── README.md │ ├── SLMS-Bridging-Header.h │ ├── SLMS-Swift.h │ ├── SLMS.entitlements │ ├── SLMS.icns │ ├── SLMS.png │ ├── SLMSView.swift │ ├── ScaleView.swift │ ├── SpectrumView.swift │ └── main.swift └── windows │ ├── COPYING │ ├── Makefile │ ├── SLMS.cpp │ ├── SLMS.h │ ├── SLMS.ico │ ├── SLMS.manifest │ ├── SLMS.nsi │ ├── SLMS.rc │ └── SLMS.txt ├── Scope ├── mac │ ├── COPYING │ ├── Changes │ ├── Info.plist │ ├── Makefile │ ├── PkgInfo │ ├── Scope.c │ ├── Scope.icns │ ├── Scope.png │ ├── Scope.rtf │ └── images │ │ ├── bright.png │ │ ├── brightsel.png │ │ ├── clear.png │ │ ├── end.png │ │ ├── left.png │ │ ├── negative.png │ │ ├── positive.png │ │ ├── reset.png │ │ ├── right.png │ │ ├── single.png │ │ ├── singlesel.png │ │ ├── start.png │ │ ├── storage.png │ │ ├── storagesel.png │ │ ├── timebase.png │ │ ├── timebasedrop.png │ │ ├── trigger.png │ │ ├── volume.png │ │ └── volumedrop.png ├── swift │ ├── AppDelegate.swift │ ├── Audio.h │ ├── Audio.m │ ├── Frameworks │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreAudio.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreFoundation.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ ├── libswiftMetal.dylib │ │ ├── libswiftObjectiveC.dylib │ │ ├── libswiftQuartzCore.dylib │ │ ├── libswiftSwiftOnoneSupport.dylib │ │ ├── libswiftXPC.dylib │ │ └── libswiftos.dylib │ ├── Icons │ │ ├── ic_access_time_black_36dp.png │ │ ├── ic_clear_black_36dp.png │ │ ├── ic_first_page_black_36dp.png │ │ ├── ic_keyboard_arrow_left_black_36dp.png │ │ ├── ic_keyboard_arrow_right_black_36dp.png │ │ ├── ic_last_page_black_36dp.png │ │ ├── ic_looks_one_black_36dp.png │ │ ├── ic_looks_one_blue_36dp.png │ │ ├── ic_repeat_one_black_36dp.png │ │ ├── ic_storage_black_36dp.png │ │ ├── ic_storage_blue_36dp.png │ │ ├── ic_sub_black_36dp.png │ │ ├── ic_sub_blue_36dp.png │ │ └── ic_undo_black_36dp.png │ ├── Info.plist │ ├── Makefile │ ├── PkgInfo │ ├── README.md │ ├── Scope │ ├── Scope-Bridging-Header.h │ ├── Scope-Swift.h │ ├── Scope.entitlements │ ├── Scope.icns │ ├── Scope.png │ ├── Scope.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── ant.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── swift.xcscheme │ │ └── xcuserdata │ │ │ └── ant.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Views │ │ ├── ScopeView.swift │ │ ├── XScaleView.swift │ │ └── YScaleView.swift │ └── main.swift └── windows │ ├── COPYING │ ├── Makefile │ ├── Scope.cpp │ ├── Scope.h │ ├── Scope.ico │ ├── Scope.manifest │ ├── Scope.nsi │ ├── Scope.rc │ ├── Scope.txt │ └── Toolbar.bmp ├── SigGen ├── mac │ ├── COPYING │ ├── Changes │ ├── Info.plist │ ├── Makefile │ ├── PkgInfo │ ├── SigGen │ ├── SigGen.c │ ├── SigGen.h │ ├── SigGen.icns │ ├── SigGen.rtf │ └── Siggen.png ├── swift │ ├── AppDelegate.swift │ ├── Audio.h │ ├── Audio.m │ ├── DisplayView.swift │ ├── Frameworks │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreAudio.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreFoundation.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ ├── libswiftMetal.dylib │ │ ├── libswiftObjectiveC.dylib │ │ ├── libswiftQuartzCore.dylib │ │ ├── libswiftSwiftOnoneSupport.dylib │ │ ├── libswiftXPC.dylib │ │ └── libswiftos.dylib │ ├── Info.plist │ ├── KnobView.swift │ ├── Makefile │ ├── PkgInfo │ ├── README.md │ ├── ScaleView.swift │ ├── SigGen-Bridging-Header.h │ ├── SigGen-Swift.h │ ├── SigGen.entitlements │ ├── SigGen.icns │ ├── SigGen.png │ ├── SigGenView.swift │ └── main.swift └── windows │ ├── COPYING │ ├── Knob.bmp │ ├── Makefile │ ├── SigGen.cpp │ ├── SigGen.h │ ├── SigGen.ico │ ├── SigGen.manifest │ ├── SigGen.nsi │ ├── SigGen.rc │ └── SigGen.txt ├── docs ├── 404.html ├── categories │ └── index.xml ├── css │ ├── custom.css │ └── styles.css ├── favicon.ico ├── images │ ├── Audiotools.png │ ├── Icon.png │ ├── LMS-swift.png │ ├── LMS.png │ ├── SLMS-swift.png │ ├── SLMS.png │ ├── Scope-android.png │ ├── Scope-swift.png │ ├── Scope.png │ ├── SigGen-android.png │ ├── SigGen-swift.png │ └── SigGen.png ├── index.html ├── index.xml ├── introduction │ └── index.xml ├── sitemap.xml ├── tags │ └── index.xml └── tools │ └── index.xml └── scripts └── build.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/.gitignore -------------------------------------------------------------------------------- /LMS/mac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/COPYING -------------------------------------------------------------------------------- /LMS/mac/Changes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/Info.plist -------------------------------------------------------------------------------- /LMS/mac/LMS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/LMS.c -------------------------------------------------------------------------------- /LMS/mac/LMS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/LMS.icns -------------------------------------------------------------------------------- /LMS/mac/LMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/LMS.png -------------------------------------------------------------------------------- /LMS/mac/LMS.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/LMS.rtf -------------------------------------------------------------------------------- /LMS/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/mac/Makefile -------------------------------------------------------------------------------- /LMS/mac/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLMS -------------------------------------------------------------------------------- /LMS/swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/AppDelegate.swift -------------------------------------------------------------------------------- /LMS/swift/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Audio.h -------------------------------------------------------------------------------- /LMS/swift/Audio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Audio.m -------------------------------------------------------------------------------- /LMS/swift/DisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/DisplayView.swift -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftAccelerate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftAccelerate.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftCoreAudio.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftCoreAudio.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftSwiftOnoneSupport.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftSwiftOnoneSupport.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /LMS/swift/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /LMS/swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Info.plist -------------------------------------------------------------------------------- /LMS/swift/LMS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/LMS-Bridging-Header.h -------------------------------------------------------------------------------- /LMS/swift/LMS-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/LMS-Swift.h -------------------------------------------------------------------------------- /LMS/swift/LMS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/LMS.entitlements -------------------------------------------------------------------------------- /LMS/swift/LMS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/LMS.icns -------------------------------------------------------------------------------- /LMS/swift/LMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/LMS.png -------------------------------------------------------------------------------- /LMS/swift/LMSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/LMSView.swift -------------------------------------------------------------------------------- /LMS/swift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/Makefile -------------------------------------------------------------------------------- /LMS/swift/MeterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/MeterView.swift -------------------------------------------------------------------------------- /LMS/swift/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /LMS/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/README.md -------------------------------------------------------------------------------- /LMS/swift/SpectrumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/SpectrumView.swift -------------------------------------------------------------------------------- /LMS/swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/swift/main.swift -------------------------------------------------------------------------------- /LMS/windows/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/COPYING -------------------------------------------------------------------------------- /LMS/windows/LMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.cpp -------------------------------------------------------------------------------- /LMS/windows/LMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.h -------------------------------------------------------------------------------- /LMS/windows/LMS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.ico -------------------------------------------------------------------------------- /LMS/windows/LMS.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.manifest -------------------------------------------------------------------------------- /LMS/windows/LMS.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.nsi -------------------------------------------------------------------------------- /LMS/windows/LMS.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.rc -------------------------------------------------------------------------------- /LMS/windows/LMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/LMS.txt -------------------------------------------------------------------------------- /LMS/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/LMS/windows/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/README.md -------------------------------------------------------------------------------- /SLMS/mac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/COPYING -------------------------------------------------------------------------------- /SLMS/mac/Changes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SLMS/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/Info.plist -------------------------------------------------------------------------------- /SLMS/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/Makefile -------------------------------------------------------------------------------- /SLMS/mac/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLSLMS -------------------------------------------------------------------------------- /SLMS/mac/SLMS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/SLMS.c -------------------------------------------------------------------------------- /SLMS/mac/SLMS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/SLMS.icns -------------------------------------------------------------------------------- /SLMS/mac/SLMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/SLMS.png -------------------------------------------------------------------------------- /SLMS/mac/SLMS.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/mac/SLMS.rtf -------------------------------------------------------------------------------- /SLMS/swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/AppDelegate.swift -------------------------------------------------------------------------------- /SLMS/swift/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Audio.h -------------------------------------------------------------------------------- /SLMS/swift/Audio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Audio.m -------------------------------------------------------------------------------- /SLMS/swift/DisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/DisplayView.swift -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftAccelerate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftAccelerate.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftCoreAudio.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftCoreAudio.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftSwiftOnoneSupport.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftSwiftOnoneSupport.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /SLMS/swift/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /SLMS/swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Info.plist -------------------------------------------------------------------------------- /SLMS/swift/KnobView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/KnobView.swift -------------------------------------------------------------------------------- /SLMS/swift/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/MainMenu.nib -------------------------------------------------------------------------------- /SLMS/swift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/Makefile -------------------------------------------------------------------------------- /SLMS/swift/MeterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/MeterView.swift -------------------------------------------------------------------------------- /SLMS/swift/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /SLMS/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/README.md -------------------------------------------------------------------------------- /SLMS/swift/SLMS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SLMS-Bridging-Header.h -------------------------------------------------------------------------------- /SLMS/swift/SLMS-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SLMS-Swift.h -------------------------------------------------------------------------------- /SLMS/swift/SLMS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SLMS.entitlements -------------------------------------------------------------------------------- /SLMS/swift/SLMS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SLMS.icns -------------------------------------------------------------------------------- /SLMS/swift/SLMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SLMS.png -------------------------------------------------------------------------------- /SLMS/swift/SLMSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SLMSView.swift -------------------------------------------------------------------------------- /SLMS/swift/ScaleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/ScaleView.swift -------------------------------------------------------------------------------- /SLMS/swift/SpectrumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/SpectrumView.swift -------------------------------------------------------------------------------- /SLMS/swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/swift/main.swift -------------------------------------------------------------------------------- /SLMS/windows/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/COPYING -------------------------------------------------------------------------------- /SLMS/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/Makefile -------------------------------------------------------------------------------- /SLMS/windows/SLMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.cpp -------------------------------------------------------------------------------- /SLMS/windows/SLMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.h -------------------------------------------------------------------------------- /SLMS/windows/SLMS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.ico -------------------------------------------------------------------------------- /SLMS/windows/SLMS.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.manifest -------------------------------------------------------------------------------- /SLMS/windows/SLMS.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.nsi -------------------------------------------------------------------------------- /SLMS/windows/SLMS.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.rc -------------------------------------------------------------------------------- /SLMS/windows/SLMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SLMS/windows/SLMS.txt -------------------------------------------------------------------------------- /Scope/mac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/COPYING -------------------------------------------------------------------------------- /Scope/mac/Changes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scope/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/Info.plist -------------------------------------------------------------------------------- /Scope/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/Makefile -------------------------------------------------------------------------------- /Scope/mac/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLSCOP -------------------------------------------------------------------------------- /Scope/mac/Scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/Scope.c -------------------------------------------------------------------------------- /Scope/mac/Scope.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/Scope.icns -------------------------------------------------------------------------------- /Scope/mac/Scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/Scope.png -------------------------------------------------------------------------------- /Scope/mac/Scope.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/Scope.rtf -------------------------------------------------------------------------------- /Scope/mac/images/bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/bright.png -------------------------------------------------------------------------------- /Scope/mac/images/brightsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/brightsel.png -------------------------------------------------------------------------------- /Scope/mac/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/clear.png -------------------------------------------------------------------------------- /Scope/mac/images/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/end.png -------------------------------------------------------------------------------- /Scope/mac/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/left.png -------------------------------------------------------------------------------- /Scope/mac/images/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/negative.png -------------------------------------------------------------------------------- /Scope/mac/images/positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/positive.png -------------------------------------------------------------------------------- /Scope/mac/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/reset.png -------------------------------------------------------------------------------- /Scope/mac/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/right.png -------------------------------------------------------------------------------- /Scope/mac/images/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/single.png -------------------------------------------------------------------------------- /Scope/mac/images/singlesel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/singlesel.png -------------------------------------------------------------------------------- /Scope/mac/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/start.png -------------------------------------------------------------------------------- /Scope/mac/images/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/storage.png -------------------------------------------------------------------------------- /Scope/mac/images/storagesel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/storagesel.png -------------------------------------------------------------------------------- /Scope/mac/images/timebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/timebase.png -------------------------------------------------------------------------------- /Scope/mac/images/timebasedrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/timebasedrop.png -------------------------------------------------------------------------------- /Scope/mac/images/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/trigger.png -------------------------------------------------------------------------------- /Scope/mac/images/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/volume.png -------------------------------------------------------------------------------- /Scope/mac/images/volumedrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/mac/images/volumedrop.png -------------------------------------------------------------------------------- /Scope/swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/AppDelegate.swift -------------------------------------------------------------------------------- /Scope/swift/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Audio.h -------------------------------------------------------------------------------- /Scope/swift/Audio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Audio.m -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftCoreAudio.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftCoreAudio.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftSwiftOnoneSupport.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftSwiftOnoneSupport.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /Scope/swift/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_access_time_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_access_time_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_clear_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_clear_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_first_page_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_first_page_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_keyboard_arrow_left_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_keyboard_arrow_left_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_keyboard_arrow_right_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_keyboard_arrow_right_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_last_page_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_last_page_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_looks_one_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_looks_one_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_looks_one_blue_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_looks_one_blue_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_repeat_one_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_repeat_one_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_storage_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_storage_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_storage_blue_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_storage_blue_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_sub_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_sub_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_sub_blue_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_sub_blue_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Icons/ic_undo_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Icons/ic_undo_black_36dp.png -------------------------------------------------------------------------------- /Scope/swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Info.plist -------------------------------------------------------------------------------- /Scope/swift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Makefile -------------------------------------------------------------------------------- /Scope/swift/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Scope/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/README.md -------------------------------------------------------------------------------- /Scope/swift/Scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope -------------------------------------------------------------------------------- /Scope/swift/Scope-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope-Bridging-Header.h -------------------------------------------------------------------------------- /Scope/swift/Scope-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope-Swift.h -------------------------------------------------------------------------------- /Scope/swift/Scope.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.entitlements -------------------------------------------------------------------------------- /Scope/swift/Scope.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.icns -------------------------------------------------------------------------------- /Scope/swift/Scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.png -------------------------------------------------------------------------------- /Scope/swift/Scope.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Scope/swift/Scope.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Scope/swift/Scope.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Scope/swift/Scope.xcodeproj/project.xcworkspace/xcuserdata/ant.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.xcodeproj/project.xcworkspace/xcuserdata/ant.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Scope/swift/Scope.xcodeproj/xcshareddata/xcschemes/swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.xcodeproj/xcshareddata/xcschemes/swift.xcscheme -------------------------------------------------------------------------------- /Scope/swift/Scope.xcodeproj/xcuserdata/ant.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Scope.xcodeproj/xcuserdata/ant.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Scope/swift/Views/ScopeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Views/ScopeView.swift -------------------------------------------------------------------------------- /Scope/swift/Views/XScaleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Views/XScaleView.swift -------------------------------------------------------------------------------- /Scope/swift/Views/YScaleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/Views/YScaleView.swift -------------------------------------------------------------------------------- /Scope/swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/swift/main.swift -------------------------------------------------------------------------------- /Scope/windows/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/COPYING -------------------------------------------------------------------------------- /Scope/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Makefile -------------------------------------------------------------------------------- /Scope/windows/Scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.cpp -------------------------------------------------------------------------------- /Scope/windows/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.h -------------------------------------------------------------------------------- /Scope/windows/Scope.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.ico -------------------------------------------------------------------------------- /Scope/windows/Scope.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.manifest -------------------------------------------------------------------------------- /Scope/windows/Scope.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.nsi -------------------------------------------------------------------------------- /Scope/windows/Scope.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.rc -------------------------------------------------------------------------------- /Scope/windows/Scope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Scope.txt -------------------------------------------------------------------------------- /Scope/windows/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/Scope/windows/Toolbar.bmp -------------------------------------------------------------------------------- /SigGen/mac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/COPYING -------------------------------------------------------------------------------- /SigGen/mac/Changes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SigGen/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/Info.plist -------------------------------------------------------------------------------- /SigGen/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/Makefile -------------------------------------------------------------------------------- /SigGen/mac/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLSIGG -------------------------------------------------------------------------------- /SigGen/mac/SigGen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/SigGen -------------------------------------------------------------------------------- /SigGen/mac/SigGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/SigGen.c -------------------------------------------------------------------------------- /SigGen/mac/SigGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/SigGen.h -------------------------------------------------------------------------------- /SigGen/mac/SigGen.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/SigGen.icns -------------------------------------------------------------------------------- /SigGen/mac/SigGen.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/SigGen.rtf -------------------------------------------------------------------------------- /SigGen/mac/Siggen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/mac/Siggen.png -------------------------------------------------------------------------------- /SigGen/swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/AppDelegate.swift -------------------------------------------------------------------------------- /SigGen/swift/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Audio.h -------------------------------------------------------------------------------- /SigGen/swift/Audio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Audio.m -------------------------------------------------------------------------------- /SigGen/swift/DisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/DisplayView.swift -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftCoreAudio.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftCoreAudio.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftSwiftOnoneSupport.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftSwiftOnoneSupport.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /SigGen/swift/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /SigGen/swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Info.plist -------------------------------------------------------------------------------- /SigGen/swift/KnobView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/KnobView.swift -------------------------------------------------------------------------------- /SigGen/swift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/Makefile -------------------------------------------------------------------------------- /SigGen/swift/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /SigGen/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/README.md -------------------------------------------------------------------------------- /SigGen/swift/ScaleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/ScaleView.swift -------------------------------------------------------------------------------- /SigGen/swift/SigGen-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/SigGen-Bridging-Header.h -------------------------------------------------------------------------------- /SigGen/swift/SigGen-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/SigGen-Swift.h -------------------------------------------------------------------------------- /SigGen/swift/SigGen.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/SigGen.entitlements -------------------------------------------------------------------------------- /SigGen/swift/SigGen.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/SigGen.icns -------------------------------------------------------------------------------- /SigGen/swift/SigGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/SigGen.png -------------------------------------------------------------------------------- /SigGen/swift/SigGenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/SigGenView.swift -------------------------------------------------------------------------------- /SigGen/swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/swift/main.swift -------------------------------------------------------------------------------- /SigGen/windows/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/COPYING -------------------------------------------------------------------------------- /SigGen/windows/Knob.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/Knob.bmp -------------------------------------------------------------------------------- /SigGen/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/Makefile -------------------------------------------------------------------------------- /SigGen/windows/SigGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.cpp -------------------------------------------------------------------------------- /SigGen/windows/SigGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.h -------------------------------------------------------------------------------- /SigGen/windows/SigGen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.ico -------------------------------------------------------------------------------- /SigGen/windows/SigGen.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.manifest -------------------------------------------------------------------------------- /SigGen/windows/SigGen.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.nsi -------------------------------------------------------------------------------- /SigGen/windows/SigGen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.rc -------------------------------------------------------------------------------- /SigGen/windows/SigGen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/SigGen/windows/SigGen.txt -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/categories/index.xml -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/images/Audiotools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/Audiotools.png -------------------------------------------------------------------------------- /docs/images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/Icon.png -------------------------------------------------------------------------------- /docs/images/LMS-swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/LMS-swift.png -------------------------------------------------------------------------------- /docs/images/LMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/LMS.png -------------------------------------------------------------------------------- /docs/images/SLMS-swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/SLMS-swift.png -------------------------------------------------------------------------------- /docs/images/SLMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/SLMS.png -------------------------------------------------------------------------------- /docs/images/Scope-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/Scope-android.png -------------------------------------------------------------------------------- /docs/images/Scope-swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/Scope-swift.png -------------------------------------------------------------------------------- /docs/images/Scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/Scope.png -------------------------------------------------------------------------------- /docs/images/SigGen-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/SigGen-android.png -------------------------------------------------------------------------------- /docs/images/SigGen-swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/SigGen-swift.png -------------------------------------------------------------------------------- /docs/images/SigGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/images/SigGen.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/index.xml -------------------------------------------------------------------------------- /docs/introduction/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/introduction/index.xml -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/tags/index.xml -------------------------------------------------------------------------------- /docs/tools/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/docs/tools/index.xml -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billthefarmer/audiotools/HEAD/scripts/build.sh --------------------------------------------------------------------------------