├── .github ├── releases │ └── release-notes-v1.0.1.txt └── workflows │ └── autobuild.yml ├── .gitignore ├── .gitmodules ├── HISSToolsGranular.RPP ├── HISSToolsGranular.code-workspace ├── HISSToolsGranular.cpp ├── HISSToolsGranular.h ├── HISSToolsGranular.sln ├── HISSToolsGranular.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── LICENSE.txt ├── README.md ├── config.h ├── config ├── HISSToolsGranular-ios.xcconfig ├── HISSToolsGranular-mac.xcconfig ├── HISSToolsGranular-web.mk └── HISSToolsGranular-win.props ├── installer ├── HISSToolsGranular-installer-bg.png ├── HISSToolsGranular.iss ├── HISSToolsGranular.pkgproj ├── changelog.txt ├── intro.rtf ├── known-issues.txt ├── license.rtf ├── readme-osx.rtf └── readme-win.rtf ├── manual ├── HISSTools_Granular_User_Guide.pages └── HISSTools_Granular_User_Guide.pdf ├── plugin-image.png ├── projects ├── HISSToolsGranular-Bridging-Header.h ├── HISSToolsGranular-aax.vcxproj ├── HISSToolsGranular-aax.vcxproj.filters ├── HISSToolsGranular-app.vcxproj ├── HISSToolsGranular-app.vcxproj.filters ├── HISSToolsGranular-iOS.entitlements ├── HISSToolsGranular-iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Framework.xcscheme │ │ ├── iOS-APP.xcscheme │ │ └── iOS-AUv3.xcscheme ├── HISSToolsGranular-macOS.entitlements ├── HISSToolsGranular-macOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── AAX.xcscheme │ │ ├── APP.xcscheme │ │ ├── AU.xcscheme │ │ ├── AUv3.xcscheme │ │ ├── All macOS.xcscheme │ │ ├── Finished Plugs.xcscheme │ │ ├── VST2.xcscheme │ │ ├── VST3 (Distributed).xcscheme │ │ ├── VST3 Controller Library.xcscheme │ │ └── VST3.xcscheme ├── HISSToolsGranular-vst2.vcxproj ├── HISSToolsGranular-vst2.vcxproj.filters ├── HISSToolsGranular-vst3.vcxproj ├── HISSToolsGranular-vst3.vcxproj.filters ├── HISSToolsGranular-wam-controller.mk ├── HISSToolsGranular-wam-processor.mk └── HISSToolsGranularFramework.h ├── resources ├── HISSToolsGranular-AAX-Info.plist ├── HISSToolsGranular-AU-Info.plist ├── HISSToolsGranular-Pages.xml ├── HISSToolsGranular-VST2-Info.plist ├── HISSToolsGranular-VST3-Info.plist ├── HISSToolsGranular-iOS-AUv3-Info.plist ├── HISSToolsGranular-iOS-Framework-Info.plist ├── HISSToolsGranular-iOS-Info.plist ├── HISSToolsGranular-iOS-MainInterface.storyboard ├── HISSToolsGranular-iOS-launchScreen.storyboard ├── HISSToolsGranular-iOS.storyboard ├── HISSToolsGranular-macOS-AUv3-Info.plist ├── HISSToolsGranular-macOS-Info.plist ├── HISSToolsGranular-macOS-MainMenu.xib ├── HISSToolsGranular.icns ├── HISSToolsGranular.ico ├── HISSToolsGranularAppViewController.swift ├── HISSToolsGranularViewController+AUAudioUnitFactory.swift ├── HISSToolsGranularViewController.swift ├── IPlugViewController.xib ├── Images.xcassets │ ├── Contents.json │ └── HISSToolsGranulariOSAppIcon.appiconset │ │ ├── Contents.json │ │ ├── HISSToolsGranular@1x.png │ │ ├── HISSToolsGranular@2x.png │ │ └── HISSToolsGranular@2xPro.png ├── main.rc ├── main.rc_mac_dlg ├── main.rc_mac_menu └── resource.h ├── scripts ├── dist-mac-main.sh ├── dist-mac-notarize.sh ├── dist-win-main.cmd ├── dist-zip.sh ├── makedist-web.sh ├── makedist-win.bat ├── postbuild-win.bat ├── prebuild-win.bat ├── prepare_info_plists.py ├── prepare_resources-ios.py ├── prepare_resources-mac.py ├── prepare_resources-win.py ├── update_installer_version.py └── update_version.py └── source ├── Buffer.h ├── Granular.cpp ├── Granular.h ├── List.h ├── Nonlinear.h ├── SallenAndKey.h ├── Waveform.cpp └── Waveform.h /.github/releases/release-notes-v1.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/.github/releases/release-notes-v1.0.1.txt -------------------------------------------------------------------------------- /.github/workflows/autobuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/.github/workflows/autobuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/.gitmodules -------------------------------------------------------------------------------- /HISSToolsGranular.RPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.RPP -------------------------------------------------------------------------------- /HISSToolsGranular.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.code-workspace -------------------------------------------------------------------------------- /HISSToolsGranular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.cpp -------------------------------------------------------------------------------- /HISSToolsGranular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.h -------------------------------------------------------------------------------- /HISSToolsGranular.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.sln -------------------------------------------------------------------------------- /HISSToolsGranular.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HISSToolsGranular.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HISSToolsGranular.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/HISSToolsGranular.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/config.h -------------------------------------------------------------------------------- /config/HISSToolsGranular-ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/config/HISSToolsGranular-ios.xcconfig -------------------------------------------------------------------------------- /config/HISSToolsGranular-mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/config/HISSToolsGranular-mac.xcconfig -------------------------------------------------------------------------------- /config/HISSToolsGranular-web.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/config/HISSToolsGranular-web.mk -------------------------------------------------------------------------------- /config/HISSToolsGranular-win.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/config/HISSToolsGranular-win.props -------------------------------------------------------------------------------- /installer/HISSToolsGranular-installer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/HISSToolsGranular-installer-bg.png -------------------------------------------------------------------------------- /installer/HISSToolsGranular.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/HISSToolsGranular.iss -------------------------------------------------------------------------------- /installer/HISSToolsGranular.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/HISSToolsGranular.pkgproj -------------------------------------------------------------------------------- /installer/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/changelog.txt -------------------------------------------------------------------------------- /installer/intro.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/intro.rtf -------------------------------------------------------------------------------- /installer/known-issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/known-issues.txt -------------------------------------------------------------------------------- /installer/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/license.rtf -------------------------------------------------------------------------------- /installer/readme-osx.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/readme-osx.rtf -------------------------------------------------------------------------------- /installer/readme-win.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/installer/readme-win.rtf -------------------------------------------------------------------------------- /manual/HISSTools_Granular_User_Guide.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/manual/HISSTools_Granular_User_Guide.pages -------------------------------------------------------------------------------- /manual/HISSTools_Granular_User_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/manual/HISSTools_Granular_User_Guide.pdf -------------------------------------------------------------------------------- /plugin-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/plugin-image.png -------------------------------------------------------------------------------- /projects/HISSToolsGranular-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "IPlugAUAudioUnit.h" 2 | -------------------------------------------------------------------------------- /projects/HISSToolsGranular-aax.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-aax.vcxproj -------------------------------------------------------------------------------- /projects/HISSToolsGranular-aax.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-aax.vcxproj.filters -------------------------------------------------------------------------------- /projects/HISSToolsGranular-app.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-app.vcxproj -------------------------------------------------------------------------------- /projects/HISSToolsGranular-app.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-app.vcxproj.filters -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.entitlements -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.xcodeproj/xcshareddata/xcschemes/Framework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.xcodeproj/xcshareddata/xcschemes/Framework.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.xcodeproj/xcshareddata/xcschemes/iOS-APP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.xcodeproj/xcshareddata/xcschemes/iOS-APP.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-iOS.xcodeproj/xcshareddata/xcschemes/iOS-AUv3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-iOS.xcodeproj/xcshareddata/xcschemes/iOS-AUv3.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.entitlements -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/AAX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/AAX.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/APP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/APP.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/AU.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/AU.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/AUv3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/AUv3.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/All macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/All macOS.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/Finished Plugs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/Finished Plugs.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST2.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST3 (Distributed).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST3 (Distributed).xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST3 Controller Library.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST3 Controller Library.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-macOS.xcodeproj/xcshareddata/xcschemes/VST3.xcscheme -------------------------------------------------------------------------------- /projects/HISSToolsGranular-vst2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-vst2.vcxproj -------------------------------------------------------------------------------- /projects/HISSToolsGranular-vst2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-vst2.vcxproj.filters -------------------------------------------------------------------------------- /projects/HISSToolsGranular-vst3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-vst3.vcxproj -------------------------------------------------------------------------------- /projects/HISSToolsGranular-vst3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-vst3.vcxproj.filters -------------------------------------------------------------------------------- /projects/HISSToolsGranular-wam-controller.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-wam-controller.mk -------------------------------------------------------------------------------- /projects/HISSToolsGranular-wam-processor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranular-wam-processor.mk -------------------------------------------------------------------------------- /projects/HISSToolsGranularFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/projects/HISSToolsGranularFramework.h -------------------------------------------------------------------------------- /resources/HISSToolsGranular-AAX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-AAX-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-AU-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-AU-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-Pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-Pages.xml -------------------------------------------------------------------------------- /resources/HISSToolsGranular-VST2-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-VST2-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-VST3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-VST3-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-iOS-AUv3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-iOS-AUv3-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-iOS-Framework-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-iOS-Framework-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-iOS-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-iOS-MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-iOS-MainInterface.storyboard -------------------------------------------------------------------------------- /resources/HISSToolsGranular-iOS-launchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-iOS-launchScreen.storyboard -------------------------------------------------------------------------------- /resources/HISSToolsGranular-iOS.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-iOS.storyboard -------------------------------------------------------------------------------- /resources/HISSToolsGranular-macOS-AUv3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-macOS-AUv3-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-macOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-macOS-Info.plist -------------------------------------------------------------------------------- /resources/HISSToolsGranular-macOS-MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular-macOS-MainMenu.xib -------------------------------------------------------------------------------- /resources/HISSToolsGranular.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular.icns -------------------------------------------------------------------------------- /resources/HISSToolsGranular.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranular.ico -------------------------------------------------------------------------------- /resources/HISSToolsGranularAppViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranularAppViewController.swift -------------------------------------------------------------------------------- /resources/HISSToolsGranularViewController+AUAudioUnitFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranularViewController+AUAudioUnitFactory.swift -------------------------------------------------------------------------------- /resources/HISSToolsGranularViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/HISSToolsGranularViewController.swift -------------------------------------------------------------------------------- /resources/IPlugViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/IPlugViewController.xib -------------------------------------------------------------------------------- /resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/HISSToolsGranular@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/HISSToolsGranular@1x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/HISSToolsGranular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/HISSToolsGranular@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/HISSToolsGranular@2xPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/Images.xcassets/HISSToolsGranulariOSAppIcon.appiconset/HISSToolsGranular@2xPro.png -------------------------------------------------------------------------------- /resources/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/main.rc -------------------------------------------------------------------------------- /resources/main.rc_mac_dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/main.rc_mac_dlg -------------------------------------------------------------------------------- /resources/main.rc_mac_menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/main.rc_mac_menu -------------------------------------------------------------------------------- /resources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/resources/resource.h -------------------------------------------------------------------------------- /scripts/dist-mac-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/dist-mac-main.sh -------------------------------------------------------------------------------- /scripts/dist-mac-notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/dist-mac-notarize.sh -------------------------------------------------------------------------------- /scripts/dist-win-main.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/dist-win-main.cmd -------------------------------------------------------------------------------- /scripts/dist-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/dist-zip.sh -------------------------------------------------------------------------------- /scripts/makedist-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/makedist-web.sh -------------------------------------------------------------------------------- /scripts/makedist-win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/makedist-win.bat -------------------------------------------------------------------------------- /scripts/postbuild-win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/postbuild-win.bat -------------------------------------------------------------------------------- /scripts/prebuild-win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/prebuild-win.bat -------------------------------------------------------------------------------- /scripts/prepare_info_plists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/prepare_info_plists.py -------------------------------------------------------------------------------- /scripts/prepare_resources-ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/prepare_resources-ios.py -------------------------------------------------------------------------------- /scripts/prepare_resources-mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/prepare_resources-mac.py -------------------------------------------------------------------------------- /scripts/prepare_resources-win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/prepare_resources-win.py -------------------------------------------------------------------------------- /scripts/update_installer_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/update_installer_version.py -------------------------------------------------------------------------------- /scripts/update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/scripts/update_version.py -------------------------------------------------------------------------------- /source/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/Buffer.h -------------------------------------------------------------------------------- /source/Granular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/Granular.cpp -------------------------------------------------------------------------------- /source/Granular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/Granular.h -------------------------------------------------------------------------------- /source/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/List.h -------------------------------------------------------------------------------- /source/Nonlinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/Nonlinear.h -------------------------------------------------------------------------------- /source/SallenAndKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/SallenAndKey.h -------------------------------------------------------------------------------- /source/Waveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/Waveform.cpp -------------------------------------------------------------------------------- /source/Waveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/HISSTools_Granular/HEAD/source/Waveform.h --------------------------------------------------------------------------------