├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── questions-and-feedbacks.md ├── actions │ ├── set-variables │ │ └── action.yml │ └── upload │ │ └── action.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Blux.jucer ├── Builds ├── LinuxMakefile │ ├── Blux.AppDir │ │ ├── .DirIcon │ │ ├── AppRun │ │ ├── blux.desktop │ │ ├── blux.png │ │ └── usr │ │ │ └── lib │ │ │ ├── libServus.so │ │ │ ├── libServus.so.1.6.0 │ │ │ ├── libServus.so.6 │ │ │ ├── libartnet.so │ │ │ ├── libartnet.so.1 │ │ │ └── libartnet.so.1.0.0 │ └── Makefile ├── MacOSX_CI │ ├── Blux.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Icon.icns │ ├── Info-App.plist │ └── RecentFilesMenuTemplate.nib ├── Raspberry │ ├── Blux.AppDir │ │ ├── .DirIcon │ │ ├── AppRun │ │ ├── blux.desktop │ │ ├── blux.png │ │ └── usr │ │ │ └── lib │ │ │ ├── libBLT.2.5.so.8.6 │ │ │ ├── libBLTlite.2.5.so.8.6 │ │ │ ├── libServus.so.6 │ │ │ ├── libartnet.so │ │ │ ├── libartnet.so.1 │ │ │ ├── libartnet.so.1.0.0 │ │ │ ├── libbcm_host.so │ │ │ ├── libcrypto.so.1.1 │ │ │ ├── libhidapi-hidraw.so │ │ │ ├── libhidapi-hidraw.so.0 │ │ │ ├── libhidapi-hidraw.so.0.0.0 │ │ │ ├── libsndio.so.7.0 │ │ │ ├── libssl.so.1.1 │ │ │ ├── libvchiq_arm.so │ │ │ └── libvcos.so │ └── Makefile ├── Raspberry64 │ ├── Blux.AppDir │ │ ├── .DirIcon │ │ ├── AppRun │ │ ├── blux.desktop │ │ ├── blux.png │ │ └── usr │ │ │ └── lib │ │ │ ├── libServus.so.6 │ │ │ ├── libbluetooth.so.3 │ │ │ ├── libbluetooth.so.3.18.16 │ │ │ ├── libcrypto.so.1.1 │ │ │ ├── libhidapi-hidraw.so │ │ │ ├── libhidapi-hidraw.so.0 │ │ │ ├── libhidapi-hidraw.so.0.0.0 │ │ │ ├── libsndio.so.7.0 │ │ │ └── libssl.so.1.1 │ └── Makefile ├── VisualStudio2022 │ ├── Blux.sln │ ├── Blux_App.vcxproj │ ├── Blux_App.vcxproj.filters │ ├── icon.ico │ ├── packages.config │ └── resources.rc └── VisualStudio2022_CI │ ├── Blux.sln │ ├── Blux_App.vcxproj │ ├── Blux_App.vcxproj.filters │ ├── icon.ico │ ├── packages.config │ ├── packages │ └── Microsoft.Web.WebView2.1.0.1901.177 │ │ ├── .signature.p7s │ │ ├── LICENSE.txt │ │ ├── Microsoft.Web.WebView2.1.0.1901.177.nupkg │ │ ├── NOTICE.txt │ │ ├── WebView2.idl │ │ ├── WebView2.tlb │ │ ├── build │ │ ├── Common.targets │ │ ├── Microsoft.Web.WebView2.targets │ │ ├── WebView2Rules.Project.xml │ │ ├── native │ │ │ ├── Microsoft.Web.WebView2.targets │ │ │ ├── arm64 │ │ │ │ ├── WebView2Loader.dll │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ ├── include-winrt │ │ │ │ ├── WebView2Interop.h │ │ │ │ ├── WebView2Interop.idl │ │ │ │ └── WebView2Interop.tlb │ │ │ ├── include │ │ │ │ ├── WebView2.h │ │ │ │ └── WebView2EnvironmentOptions.h │ │ │ ├── x64 │ │ │ │ ├── WebView2Loader.dll │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ └── x86 │ │ │ │ ├── WebView2Loader.dll │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ └── WebView2LoaderStatic.lib │ │ └── wv2winrt.targets │ │ ├── lib │ │ ├── Microsoft.Web.WebView2.Core.winmd │ │ ├── net45 │ │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ │ └── Microsoft.Web.WebView2.Wpf.xml │ │ └── netcoreapp3.0 │ │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ │ └── Microsoft.Web.WebView2.Wpf.xml │ │ ├── runtimes │ │ ├── win-arm64 │ │ │ ├── native │ │ │ │ └── WebView2Loader.dll │ │ │ └── native_uap │ │ │ │ └── Microsoft.Web.WebView2.Core.dll │ │ ├── win-x64 │ │ │ ├── native │ │ │ │ └── WebView2Loader.dll │ │ │ └── native_uap │ │ │ │ └── Microsoft.Web.WebView2.Core.dll │ │ └── win-x86 │ │ │ ├── native │ │ │ └── WebView2Loader.dll │ │ │ └── native_uap │ │ │ └── Microsoft.Web.WebView2.Core.dll │ │ └── tools │ │ ├── VisualStudioToolsManifest.xml │ │ └── wv2winrt │ │ ├── Antlr3.Runtime.dll │ │ ├── Antlr4.StringTemplate.dll │ │ ├── System.Buffers.dll │ │ ├── System.CommandLine.DragonFruit.dll │ │ ├── System.CommandLine.Rendering.dll │ │ ├── System.CommandLine.dll │ │ ├── System.Memory.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── concrt140_app.dll │ │ ├── cs │ │ └── System.CommandLine.resources.dll │ │ ├── de │ │ └── System.CommandLine.resources.dll │ │ ├── es │ │ └── System.CommandLine.resources.dll │ │ ├── fr │ │ └── System.CommandLine.resources.dll │ │ ├── it │ │ └── System.CommandLine.resources.dll │ │ ├── ja │ │ └── System.CommandLine.resources.dll │ │ ├── ko │ │ └── System.CommandLine.resources.dll │ │ ├── msvcp140_1_app.dll │ │ ├── msvcp140_2_app.dll │ │ ├── msvcp140_app.dll │ │ ├── pl │ │ └── System.CommandLine.resources.dll │ │ ├── pt-BR │ │ └── System.CommandLine.resources.dll │ │ ├── ru │ │ └── System.CommandLine.resources.dll │ │ ├── tr │ │ └── System.CommandLine.resources.dll │ │ ├── vcamp140_app.dll │ │ ├── vccorlib140_app.dll │ │ ├── vcomp140_app.dll │ │ ├── vcruntime140_app.dll │ │ ├── winrt_winmd.dll │ │ ├── winrt_winmd.winmd │ │ ├── wv2winrt.exe.config │ │ ├── wv2winrt.xml │ │ ├── zh-Hans │ │ └── System.CommandLine.resources.dll │ │ └── zh-Hant │ │ └── System.CommandLine.resources.dll │ └── resources.rc ├── External ├── asio │ ├── asio.cpp │ ├── asio.h │ ├── asiodrvr.cpp │ ├── asiodrvr.h │ ├── asiosys.h │ ├── combase.cpp │ ├── combase.h │ ├── debugmessage.cpp │ ├── dllentry.cpp │ ├── iasiodrv.h │ ├── register.cpp │ └── wxdebug.h ├── dnssd │ ├── include │ │ └── dns_sd.h │ └── lib │ │ └── dnssd.lib └── servus │ ├── include │ └── servus │ │ ├── api.h │ │ ├── avahi │ │ └── servus.h │ │ ├── defines.h │ │ ├── definesDarwin.h │ │ ├── definesDarwin.h.in │ │ ├── definesLinux.h │ │ ├── definesLinux.h.in │ │ ├── definesWin32.h │ │ ├── definesWin32.h.in │ │ ├── dnssd │ │ └── servus.h │ │ ├── listener.h │ │ ├── md5 │ │ └── md5.hh │ │ ├── none │ │ └── servus.h │ │ ├── result.h │ │ ├── serializable.h │ │ ├── servus.h │ │ ├── types.h │ │ ├── uint128_t.h │ │ ├── uri.h │ │ └── version.h │ └── lib │ ├── linux │ ├── libServus.so │ ├── libServus.so.1.6.0 │ └── libServus.so.6 │ ├── osx │ ├── debug │ │ └── libServus.a │ └── release │ │ └── libServus.a │ ├── raspberry │ ├── libServus.so │ ├── libServus.so.1.6.0 │ └── libServus.so.6 │ ├── raspberry64 │ └── libServus.so │ ├── silicon │ ├── debug │ │ └── libServus.a │ └── release │ │ └── libServus.a │ └── win │ └── x64 │ ├── debug │ └── Servus.lib │ └── release │ └── Servus.lib ├── JuceLibraryCode ├── AppConfig.h ├── BinaryData.cpp ├── BinaryData.h ├── JuceHeader.h ├── ReadMe.txt ├── include_juce_audio_basics.cpp ├── include_juce_audio_basics.mm ├── include_juce_audio_devices.cpp ├── include_juce_audio_devices.mm ├── include_juce_audio_formats.cpp ├── include_juce_audio_formats.mm ├── include_juce_audio_processors.cpp ├── include_juce_audio_processors.mm ├── include_juce_audio_processors_headless.cpp ├── include_juce_audio_processors_headless.mm ├── include_juce_audio_processors_headless_ara.cpp ├── include_juce_audio_processors_headless_lv2_libs.cpp ├── include_juce_audio_utils.cpp ├── include_juce_audio_utils.mm ├── include_juce_core.cpp ├── include_juce_core.mm ├── include_juce_core_CompilationTime.cpp ├── include_juce_cryptography.cpp ├── include_juce_cryptography.mm ├── include_juce_data_structures.cpp ├── include_juce_data_structures.mm ├── include_juce_dmx.cpp ├── include_juce_events.cpp ├── include_juce_events.mm ├── include_juce_graphics.cpp ├── include_juce_graphics.mm ├── include_juce_graphics_Harfbuzz.cpp ├── include_juce_graphics_Sheenbidi.c ├── include_juce_gui_basics.cpp ├── include_juce_gui_basics.mm ├── include_juce_gui_extra.cpp ├── include_juce_gui_extra.mm ├── include_juce_javascript.cpp ├── include_juce_opengl.cpp ├── include_juce_opengl.mm ├── include_juce_organicui.cpp ├── include_juce_organicui2.cpp ├── include_juce_organicui2b.cpp ├── include_juce_organicui3.cpp ├── include_juce_organicui4.cpp ├── include_juce_osc.cpp ├── include_juce_serial.cpp ├── include_juce_simpleweb.cpp ├── include_juce_simpleweb2.cpp ├── include_juce_timeline.cpp └── include_juce_timeline2.cpp ├── LICENSE ├── Package ├── Blux.pkgproj └── bg.png ├── README.md ├── Resources ├── colorsource │ ├── multipoint.png │ ├── node.png │ ├── patterns │ │ ├── noise.png │ │ ├── point.png │ │ ├── rainbow.png │ │ ├── solidcolor.png │ │ └── strobe.png │ ├── picture.png │ ├── script.png │ ├── timeline.png │ └── video.png ├── connected.png ├── crash.png ├── crash.psd ├── default.bluxlayout ├── disconnected.png ├── fx.png ├── icon.png ├── icon128.png ├── icon2.png ├── icon3.png ├── link.png └── seq.png ├── Source ├── Audio │ ├── AudioManager.cpp │ ├── AudioManager.h │ └── ui │ │ ├── AudioManagerHardwareEditor.cpp │ │ └── AudioManagerHardwareEditor.h ├── ChainViz │ ├── ChainViz.cpp │ ├── ChainViz.h │ ├── ChainVizTarget.cpp │ └── ChainVizTarget.h ├── Color │ ├── ColorIncludes.cpp │ ├── ColorIncludes.h │ ├── ColorSource │ │ ├── ColorSource.cpp │ │ ├── ColorSource.h │ │ ├── ColorSourceFactory.cpp │ │ ├── ColorSourceFactory.h │ │ ├── ColorSourceLibrary.cpp │ │ ├── ColorSourceLibrary.h │ │ ├── sources │ │ │ ├── node │ │ │ │ ├── NodeColorSource.cpp │ │ │ │ └── NodeColorSource.h │ │ │ ├── pattern │ │ │ │ ├── PatternColorSource.cpp │ │ │ │ └── PatternColorSource.h │ │ │ ├── picture │ │ │ │ ├── PictureColorSource.cpp │ │ │ │ └── PictureColorSource.h │ │ │ ├── script │ │ │ │ ├── ScriptColorSource.cpp │ │ │ │ └── ScriptColorSource.h │ │ │ └── video │ │ │ │ ├── VideoColorSource.cpp │ │ │ │ └── VideoColorSource.h │ │ └── ui │ │ │ ├── ColorSourceChooser.cpp │ │ │ ├── ColorSourceChooser.h │ │ │ ├── ColorSourceGridUI.cpp │ │ │ ├── ColorSourceGridUI.h │ │ │ ├── ColorSourceLibraryGridUI.cpp │ │ │ ├── ColorSourceLibraryGridUI.h │ │ │ ├── ColorViz.cpp │ │ │ └── ColorViz.h │ └── PixelShape │ │ ├── PixelShape.cpp │ │ ├── PixelShape.h │ │ └── ui │ │ ├── PixelShapeChooser.cpp │ │ ├── PixelShapeChooser.h │ │ ├── PixelShapeEditor.cpp │ │ └── PixelShapeEditor.h ├── Common │ ├── Action │ │ ├── Action.cpp │ │ ├── Action.h │ │ ├── ActionManager.cpp │ │ └── ActionManager.h │ ├── CommonClasses │ │ ├── ComponentType.h │ │ └── SceneListener.h │ ├── CommonIncludes.cpp │ ├── CommonIncludes.h │ ├── Helpers │ │ ├── ColorHelpers.cpp │ │ ├── ColorHelpers.h │ │ ├── FastNoiseLite.h │ │ ├── SceneHelpers.cpp │ │ ├── SceneHelpers.h │ │ ├── TimedEffectHiresTimer.cpp │ │ └── TimedEffectHiresTimer.h │ ├── MIDI │ │ ├── MIDIDevice.cpp │ │ ├── MIDIDevice.h │ │ ├── MIDIDeviceParameter.cpp │ │ ├── MIDIDeviceParameter.h │ │ ├── MIDIManager.cpp │ │ ├── MIDIManager.h │ │ ├── MTCReceiver.cpp │ │ ├── MTCReceiver.h │ │ ├── MTCSender.cpp │ │ ├── MTCSender.h │ │ └── ui │ │ │ ├── MIDIDeviceChooser.cpp │ │ │ ├── MIDIDeviceChooser.h │ │ │ ├── MIDIDeviceParameterUI.cpp │ │ │ └── MIDIDeviceParameterUI.h │ ├── ParameterLink │ │ ├── ParameterLink.cpp │ │ ├── ParameterLink.h │ │ └── ui │ │ │ ├── LinkableParameterEditor.cpp │ │ │ └── LinkableParameterEditor.h │ ├── Serial │ │ └── lib │ │ │ ├── cobs │ │ │ ├── cobs.cpp │ │ │ └── cobs.h │ │ │ └── serial │ │ │ ├── impl │ │ │ ├── list_ports │ │ │ │ ├── list_ports_linux.cc │ │ │ │ ├── list_ports_osx.cc │ │ │ │ └── list_ports_win.cc │ │ │ ├── unix.cc │ │ │ └── win.cc │ │ │ └── serial.cc │ ├── Spatializer │ │ ├── SpatItem.cpp │ │ ├── SpatItem.h │ │ ├── SpatManager.cpp │ │ ├── SpatManager.h │ │ └── ui │ │ │ ├── SpatItemViewUI.cpp │ │ │ ├── SpatItemViewUI.h │ │ │ ├── SpatManagerView.cpp │ │ │ └── SpatManagerView.h │ └── Zeroconf │ │ ├── ZeroconfManager.cpp │ │ └── ZeroconfManager.h ├── Effect │ ├── Effect.cpp │ ├── Effect.h │ ├── EffectIncludes.cpp │ ├── EffectIncludes.h │ ├── EffectManager.cpp │ ├── EffectManager.h │ ├── Filter │ │ ├── Filter.cpp │ │ ├── Filter.h │ │ ├── FilterManager.cpp │ │ ├── FilterManager.h │ │ ├── filters │ │ │ ├── group │ │ │ │ ├── GroupFilter.cpp │ │ │ │ └── GroupFilter.h │ │ │ ├── id │ │ │ │ ├── IDFilter.cpp │ │ │ │ └── IDFilter.h │ │ │ └── layout │ │ │ │ ├── LayoutFilter.cpp │ │ │ │ ├── LayoutFilter.h │ │ │ │ └── ui │ │ │ │ ├── LayoutFilterStageView.cpp │ │ │ │ ├── LayoutFilterStageView.h │ │ │ │ ├── LayoutFilterStageViewUI.cpp │ │ │ │ └── LayoutFilterStageViewUI.h │ │ └── ui │ │ │ ├── FilterEditor.cpp │ │ │ ├── FilterEditor.h │ │ │ ├── FilterManagerEditor.cpp │ │ │ └── FilterManagerEditor.h │ ├── GlobalEffectManager.cpp │ ├── GlobalEffectManager.h │ ├── actions │ │ ├── EffectAction.cpp │ │ └── EffectAction.h │ ├── effects │ │ ├── color │ │ │ ├── ColorEffect.cpp │ │ │ ├── ColorEffect.h │ │ │ ├── gradientmap │ │ │ │ ├── ColorGradientMapEffect.cpp │ │ │ │ └── ColorGradientMapEffect.h │ │ │ ├── hsv │ │ │ │ ├── HSVAdjustEffect.cpp │ │ │ │ └── HSVAdjustEffect.h │ │ │ ├── override │ │ │ │ ├── ColorSourceOverrideEffect.cpp │ │ │ │ ├── ColorSourceOverrideEffect.h │ │ │ │ └── ui │ │ │ │ │ ├── ColorSourceOverrideEffectEditor.cpp │ │ │ │ │ └── ColorSourceOverrideEffectEditor.h │ │ │ └── remap │ │ │ │ ├── ColorPositionRemapEffect.cpp │ │ │ │ └── ColorPositionRemapEffect.h │ │ ├── customcomponent │ │ │ ├── CustomComponentEffect.cpp │ │ │ └── CustomComponentEffect.h │ │ ├── orientation │ │ │ ├── OrientationEffect.cpp │ │ │ └── OrientationEffect.h │ │ ├── override │ │ │ ├── CurveMapEffect.cpp │ │ │ ├── CurveMapEffect.h │ │ │ ├── FreezeEffect.cpp │ │ │ ├── FreezeEffect.h │ │ │ ├── OverrideEffect.cpp │ │ │ ├── OverrideEffect.h │ │ │ ├── PointEffect.cpp │ │ │ └── PointEffect.h │ │ ├── script │ │ │ ├── ScriptEffect.cpp │ │ │ └── ScriptEffect.h │ │ ├── smooth │ │ │ ├── DampingEffect.cpp │ │ │ ├── DampingEffect.h │ │ │ ├── SmoothingEffect.cpp │ │ │ └── SmoothingEffect.h │ │ └── time │ │ │ ├── TimedEffect.cpp │ │ │ ├── TimedEffect.h │ │ │ ├── automation │ │ │ ├── AutomationEffect.cpp │ │ │ ├── AutomationEffect.h │ │ │ └── ui │ │ │ │ ├── AutomationEffectEditor.cpp │ │ │ │ └── AutomationEffectEditor.h │ │ │ └── noise │ │ │ ├── NoiseEffect.cpp │ │ │ └── NoiseEffect.h │ └── ui │ │ ├── EffectChainVizUI.cpp │ │ ├── EffectChainVizUI.h │ │ ├── EffectEditor.cpp │ │ ├── EffectEditor.h │ │ ├── EffectManagerEditor.cpp │ │ ├── EffectManagerEditor.h │ │ ├── GlobalEffectManagerUI.cpp │ │ └── GlobalEffectManagerUI.h ├── Engine │ ├── BluxEngine.cpp │ ├── BluxEngine.h │ ├── GenericAction.cpp │ └── GenericAction.h ├── Interface │ ├── Interface.cpp │ ├── Interface.h │ ├── InterfaceIncludes.cpp │ ├── InterfaceIncludes.h │ ├── InterfaceManager.cpp │ ├── InterfaceManager.h │ ├── interfaces │ │ ├── bento │ │ │ ├── BentoInterface.cpp │ │ │ └── BentoInterface.h │ │ ├── dmx │ │ │ ├── DMXInterface.cpp │ │ │ ├── DMXInterface.h │ │ │ └── ui │ │ │ │ ├── DMXChannelView.cpp │ │ │ │ ├── DMXChannelView.h │ │ │ │ ├── DMXInterfaceUI.cpp │ │ │ │ └── DMXInterfaceUI.h │ │ ├── midi │ │ │ ├── MIDIInterface.cpp │ │ │ ├── MIDIInterface.h │ │ │ ├── MIDIMapping.cpp │ │ │ ├── MIDIMapping.h │ │ │ ├── MIDIMappingManager.cpp │ │ │ ├── MIDIMappingManager.h │ │ │ └── ui │ │ │ │ ├── MIDIMappingEditor.cpp │ │ │ │ └── MIDIMappingEditor.h │ │ ├── osc │ │ │ ├── OSCInterface.cpp │ │ │ ├── OSCInterface.h │ │ │ ├── custom │ │ │ │ ├── CustomOSCInterface.cpp │ │ │ │ └── CustomOSCInterface.h │ │ │ └── ui │ │ │ │ ├── OSCInputEditor.cpp │ │ │ │ ├── OSCInputEditor.h │ │ │ │ ├── OSCOutputEditor.cpp │ │ │ │ └── OSCOutputEditor.h │ │ └── serial │ │ │ ├── SerialInterface.cpp │ │ │ └── SerialInterface.h │ └── ui │ │ ├── InterfaceManagerUI.cpp │ │ ├── InterfaceManagerUI.h │ │ ├── InterfaceUI.cpp │ │ └── InterfaceUI.h ├── Main.cpp ├── Main.h ├── MainComponent.cpp ├── MainComponent.h ├── MainComponentCommands.cpp ├── MainIncludes.cpp ├── MainIncludes.h ├── Object │ ├── Component │ │ ├── ComponentManager.cpp │ │ ├── ComponentManager.h │ │ ├── ObjectComponent.cpp │ │ ├── ObjectComponent.h │ │ ├── components │ │ │ ├── color │ │ │ │ ├── ColorComponent.cpp │ │ │ │ ├── ColorComponent.h │ │ │ │ └── ui │ │ │ │ │ ├── ColorComponentEditor.cpp │ │ │ │ │ └── ColorComponentEditor.h │ │ │ ├── custom │ │ │ │ ├── CustomComponent.cpp │ │ │ │ ├── CustomComponent.h │ │ │ │ └── ui │ │ │ │ │ ├── CustomComponentUI.cpp │ │ │ │ │ └── CustomComponentUI.h │ │ │ ├── dimmer │ │ │ │ ├── DimmerComponent.cpp │ │ │ │ └── DimmerComponent.h │ │ │ ├── orientation │ │ │ │ ├── Matrix3x3.hpp │ │ │ │ ├── OrientationComponent.cpp │ │ │ │ ├── OrientationComponent.h │ │ │ │ ├── Quaternion.hpp │ │ │ │ ├── Vector2.hpp │ │ │ │ └── Vector3.hpp │ │ │ └── shutter │ │ │ │ ├── ShutterComponent.cpp │ │ │ │ └── ShutterComponent.h │ │ └── ui │ │ │ ├── ComponentManagerEditor.cpp │ │ │ ├── ComponentManagerEditor.h │ │ │ ├── ObjectComponentEditor.cpp │ │ │ └── ObjectComponentEditor.h │ ├── Group │ │ ├── Group.cpp │ │ ├── Group.h │ │ ├── GroupManager.cpp │ │ ├── GroupManager.h │ │ ├── groups │ │ │ ├── object │ │ │ │ ├── ObjectGroup.cpp │ │ │ │ ├── ObjectGroup.h │ │ │ │ └── ui │ │ │ │ │ ├── ObjectGroupUI.cpp │ │ │ │ │ └── ObjectGroupUI.h │ │ │ └── virtual │ │ │ │ ├── VirtualGroup.cpp │ │ │ │ └── VirtualGroup.h │ │ └── ui │ │ │ ├── GroupManagerUI.cpp │ │ │ ├── GroupManagerUI.h │ │ │ ├── GroupUI.cpp │ │ │ └── GroupUI.h │ ├── Layout │ │ ├── StageLayout.cpp │ │ ├── StageLayout.h │ │ ├── StageLayoutManager.cpp │ │ ├── StageLayoutManager.h │ │ └── ui │ │ │ ├── Object2DView.cpp │ │ │ ├── Object2DView.h │ │ │ ├── StageLayout2DView.cpp │ │ │ ├── StageLayout2DView.h │ │ │ ├── StageLayoutManagerUI.cpp │ │ │ ├── StageLayoutManagerUI.h │ │ │ ├── StageLayoutUI.cpp │ │ │ └── StageLayoutUI.h │ ├── Object.cpp │ ├── Object.h │ ├── ObjectIncludes.cpp │ ├── ObjectIncludes.h │ ├── ObjectManager.cpp │ ├── ObjectManager.h │ ├── actions │ │ ├── ObjectAction.cpp │ │ └── ObjectAction.h │ └── ui │ │ ├── ObjectChainVizUI.cpp │ │ ├── ObjectChainVizUI.h │ │ ├── ObjectCustomView.cpp │ │ ├── ObjectCustomView.h │ │ ├── ObjectGridUI.cpp │ │ ├── ObjectGridUI.h │ │ ├── ObjectManagerGridUI.cpp │ │ ├── ObjectManagerGridUI.h │ │ ├── ObjectManagerUI.cpp │ │ ├── ObjectManagerUI.h │ │ ├── ObjectUI.cpp │ │ └── ObjectUI.h ├── Scene │ ├── Scene.cpp │ ├── Scene.h │ ├── SceneIncludes.cpp │ ├── SceneIncludes.h │ ├── SceneManager.cpp │ ├── SceneManager.h │ ├── actions │ │ ├── SceneAction.cpp │ │ └── SceneAction.h │ └── ui │ │ ├── SceneManagerUI.cpp │ │ ├── SceneManagerUI.h │ │ ├── SceneUI.cpp │ │ └── SceneUI.h ├── Sequence │ ├── BluxSequence.cpp │ ├── BluxSequence.h │ ├── BluxSequenceManager.cpp │ ├── BluxSequenceManager.h │ ├── GlobalSequenceManager.cpp │ ├── GlobalSequenceManager.h │ ├── SequenceIncludes.cpp │ ├── SequenceIncludes.h │ ├── actions │ │ ├── SequenceAction.cpp │ │ └── SequenceAction.h │ ├── layers │ │ ├── action │ │ │ ├── ActionLayer.cpp │ │ │ ├── ActionLayer.h │ │ │ ├── ActionTrigger.cpp │ │ │ └── ActionTrigger.h │ │ ├── automation │ │ │ ├── AutomationLayer.cpp │ │ │ └── AutomationLayer.h │ │ ├── colorsource │ │ │ ├── ColorSourceLayer.cpp │ │ │ └── ColorSourceLayer.h │ │ ├── effect │ │ │ ├── EffectBlock.cpp │ │ │ ├── EffectBlock.h │ │ │ ├── EffectBlockManager.cpp │ │ │ ├── EffectBlockManager.h │ │ │ ├── EffectLayer.cpp │ │ │ ├── EffectLayer.h │ │ │ └── ui │ │ │ │ ├── EffectBlockManagerUI.cpp │ │ │ │ ├── EffectBlockManagerUI.h │ │ │ │ ├── EffectBlockUI.cpp │ │ │ │ ├── EffectBlockUI.h │ │ │ │ ├── EffectLayerTimeline.cpp │ │ │ │ └── EffectLayerTimeline.h │ │ └── rawdata │ │ │ ├── RawDataBlock.cpp │ │ │ ├── RawDataBlock.h │ │ │ ├── RawDataBlockManager.cpp │ │ │ ├── RawDataBlockManager.h │ │ │ ├── RawDataLayer.cpp │ │ │ ├── RawDataLayer.h │ │ │ └── ui │ │ │ ├── RawDataBlockManagerUI.cpp │ │ │ ├── RawDataBlockManagerUI.h │ │ │ ├── RawDataBlockUI.cpp │ │ │ ├── RawDataBlockUI.h │ │ │ ├── RawDataLayerPanel.cpp │ │ │ ├── RawDataLayerPanel.h │ │ │ ├── RawDataLayerTimeline.cpp │ │ │ └── RawDataLayerTimeline.h │ └── ui │ │ ├── BluxSequenceChainVizUI.cpp │ │ ├── BluxSequenceChainVizUI.h │ │ ├── BluxSequenceEditor.cpp │ │ ├── BluxSequenceEditor.h │ │ ├── GlobalSequenceManagerUI.cpp │ │ └── GlobalSequenceManagerUI.h ├── UI │ ├── AssetManager.cpp │ ├── AssetManager.h │ ├── BluxInspector.cpp │ └── BluxInspector.h └── Viz │ ├── Viz.cpp │ └── Viz.h ├── install.iss └── setup.ico /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions-and-feedbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/ISSUE_TEMPLATE/questions-and-feedbacks.md -------------------------------------------------------------------------------- /.github/actions/set-variables/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/actions/set-variables/action.yml -------------------------------------------------------------------------------- /.github/actions/upload/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/actions/upload/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/.gitmodules -------------------------------------------------------------------------------- /Blux.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Blux.jucer -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/.DirIcon: -------------------------------------------------------------------------------- 1 | chataigne.png -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/LinuxMakefile/Blux.AppDir/AppRun -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/blux.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/LinuxMakefile/Blux.AppDir/blux.desktop -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/blux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/LinuxMakefile/Blux.AppDir/blux.png -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/usr/lib/libServus.so: -------------------------------------------------------------------------------- 1 | libServus.so.6 -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/usr/lib/libServus.so.1.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/LinuxMakefile/Blux.AppDir/usr/lib/libServus.so.1.6.0 -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/usr/lib/libServus.so.6: -------------------------------------------------------------------------------- 1 | libServus.so.1.6.0 -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/usr/lib/libartnet.so: -------------------------------------------------------------------------------- 1 | ELF -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/usr/lib/libartnet.so.1: -------------------------------------------------------------------------------- 1 | ELF -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Blux.AppDir/usr/lib/libartnet.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/LinuxMakefile/Blux.AppDir/usr/lib/libartnet.so.1.0.0 -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /Builds/MacOSX_CI/Blux.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/MacOSX_CI/Blux.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/MacOSX_CI/Blux.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/MacOSX_CI/Blux.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Builds/MacOSX_CI/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/MacOSX_CI/Icon.icns -------------------------------------------------------------------------------- /Builds/MacOSX_CI/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/MacOSX_CI/Info-App.plist -------------------------------------------------------------------------------- /Builds/MacOSX_CI/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/MacOSX_CI/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/.DirIcon: -------------------------------------------------------------------------------- 1 | chataigne.png -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/AppRun -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/blux.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/blux.desktop -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/blux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/blux.png -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libBLT.2.5.so.8.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libBLT.2.5.so.8.6 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libBLTlite.2.5.so.8.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libBLTlite.2.5.so.8.6 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libServus.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libServus.so.6 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libartnet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libartnet.so -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libartnet.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libartnet.so.1 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libartnet.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libartnet.so.1.0.0 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libbcm_host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libbcm_host.so -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libhidapi-hidraw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libhidapi-hidraw.so -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0.0.0 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libsndio.so.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libsndio.so.7.0 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libssl.so.1.1 -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libvchiq_arm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libvchiq_arm.so -------------------------------------------------------------------------------- /Builds/Raspberry/Blux.AppDir/usr/lib/libvcos.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Blux.AppDir/usr/lib/libvcos.so -------------------------------------------------------------------------------- /Builds/Raspberry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry/Makefile -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/.DirIcon: -------------------------------------------------------------------------------- 1 | chataigne.png -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/AppRun -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/blux.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/blux.desktop -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/blux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/blux.png -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libServus.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libServus.so.6 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libbluetooth.so.3: -------------------------------------------------------------------------------- 1 | libbluetooth.so.3.18.16 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libbluetooth.so.3.18.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libbluetooth.so.3.18.16 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libcrypto.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libcrypto.so.1.1 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libhidapi-hidraw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libhidapi-hidraw.so -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libhidapi-hidraw.so.0.0.0 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libsndio.so.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libsndio.so.7.0 -------------------------------------------------------------------------------- /Builds/Raspberry64/Blux.AppDir/usr/lib/libssl.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Blux.AppDir/usr/lib/libssl.so.1.1 -------------------------------------------------------------------------------- /Builds/Raspberry64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/Raspberry64/Makefile -------------------------------------------------------------------------------- /Builds/VisualStudio2022/Blux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022/Blux.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2022/Blux_App.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022/Blux_App.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2022/Blux_App.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022/Blux_App.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2022/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022/icon.ico -------------------------------------------------------------------------------- /Builds/VisualStudio2022/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022/packages.config -------------------------------------------------------------------------------- /Builds/VisualStudio2022/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022/resources.rc -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/Blux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/Blux.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/Blux_App.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/Blux_App.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/Blux_App.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/Blux_App.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/icon.ico -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages.config -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/.signature.p7s -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/LICENSE.txt -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/Microsoft.Web.WebView2.1.0.1901.177.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/Microsoft.Web.WebView2.1.0.1901.177.nupkg -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/NOTICE.txt -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/WebView2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/WebView2.idl -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/WebView2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/WebView2.tlb -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/Common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/Common.targets -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/Microsoft.Web.WebView2.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/Microsoft.Web.WebView2.targets -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/WebView2Rules.Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/WebView2Rules.Project.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/Microsoft.Web.WebView2.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/Microsoft.Web.WebView2.targets -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/arm64/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/arm64/WebView2Loader.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/arm64/WebView2Loader.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/arm64/WebView2Loader.dll.lib -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/arm64/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/arm64/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include-winrt/WebView2Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include-winrt/WebView2Interop.h -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include-winrt/WebView2Interop.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include-winrt/WebView2Interop.idl -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include-winrt/WebView2Interop.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include-winrt/WebView2Interop.tlb -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include/WebView2.h -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include/WebView2EnvironmentOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/include/WebView2EnvironmentOptions.h -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x64/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x64/WebView2Loader.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x64/WebView2Loader.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x64/WebView2Loader.dll.lib -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x64/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x64/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x86/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x86/WebView2Loader.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x86/WebView2Loader.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x86/WebView2Loader.dll.lib -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x86/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/native/x86/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/wv2winrt.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/build/wv2winrt.targets -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/Microsoft.Web.WebView2.Core.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/Microsoft.Web.WebView2.Core.winmd -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Core.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.WinForms.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.WinForms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.WinForms.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Wpf.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/net45/Microsoft.Web.WebView2.Wpf.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-arm64/native/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-arm64/native/WebView2Loader.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-arm64/native_uap/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-arm64/native_uap/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x64/native/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x64/native/WebView2Loader.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x64/native_uap/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x64/native_uap/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x86/native/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x86/native/WebView2Loader.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x86/native_uap/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/runtimes/win-x86/native_uap/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/VisualStudioToolsManifest.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/Antlr4.StringTemplate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/Antlr4.StringTemplate.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Buffers.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.DragonFruit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.DragonFruit.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.Rendering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.Rendering.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Memory.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/concrt140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/concrt140_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/cs/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/cs/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/de/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/de/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/es/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/es/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/fr/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/fr/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/it/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/it/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/ja/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/ja/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/ko/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/ko/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/msvcp140_1_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/msvcp140_1_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/msvcp140_2_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/msvcp140_2_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/msvcp140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/msvcp140_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/pl/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/pl/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/pt-BR/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/pt-BR/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/ru/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/ru/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/tr/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/tr/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vcamp140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vcamp140_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vccorlib140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vccorlib140_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vcomp140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vcomp140_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vcruntime140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/vcruntime140_app.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/winrt_winmd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/winrt_winmd.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/winrt_winmd.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/winrt_winmd.winmd -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/wv2winrt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/wv2winrt.exe.config -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/wv2winrt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/wv2winrt.xml -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/zh-Hans/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/zh-Hans/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/zh-Hant/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/zh-Hant/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /Builds/VisualStudio2022_CI/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Builds/VisualStudio2022_CI/resources.rc -------------------------------------------------------------------------------- /External/asio/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/asio.cpp -------------------------------------------------------------------------------- /External/asio/asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/asio.h -------------------------------------------------------------------------------- /External/asio/asiodrvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/asiodrvr.cpp -------------------------------------------------------------------------------- /External/asio/asiodrvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/asiodrvr.h -------------------------------------------------------------------------------- /External/asio/asiosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/asiosys.h -------------------------------------------------------------------------------- /External/asio/combase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/combase.cpp -------------------------------------------------------------------------------- /External/asio/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/combase.h -------------------------------------------------------------------------------- /External/asio/debugmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/debugmessage.cpp -------------------------------------------------------------------------------- /External/asio/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/dllentry.cpp -------------------------------------------------------------------------------- /External/asio/iasiodrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/iasiodrv.h -------------------------------------------------------------------------------- /External/asio/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/register.cpp -------------------------------------------------------------------------------- /External/asio/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/asio/wxdebug.h -------------------------------------------------------------------------------- /External/dnssd/include/dns_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/dnssd/include/dns_sd.h -------------------------------------------------------------------------------- /External/dnssd/lib/dnssd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/dnssd/lib/dnssd.lib -------------------------------------------------------------------------------- /External/servus/include/servus/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/api.h -------------------------------------------------------------------------------- /External/servus/include/servus/avahi/servus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/avahi/servus.h -------------------------------------------------------------------------------- /External/servus/include/servus/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/defines.h -------------------------------------------------------------------------------- /External/servus/include/servus/definesDarwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/definesDarwin.h -------------------------------------------------------------------------------- /External/servus/include/servus/definesDarwin.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/definesDarwin.h.in -------------------------------------------------------------------------------- /External/servus/include/servus/definesLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/definesLinux.h -------------------------------------------------------------------------------- /External/servus/include/servus/definesLinux.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/definesLinux.h.in -------------------------------------------------------------------------------- /External/servus/include/servus/definesWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/definesWin32.h -------------------------------------------------------------------------------- /External/servus/include/servus/definesWin32.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/definesWin32.h.in -------------------------------------------------------------------------------- /External/servus/include/servus/dnssd/servus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/dnssd/servus.h -------------------------------------------------------------------------------- /External/servus/include/servus/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/listener.h -------------------------------------------------------------------------------- /External/servus/include/servus/md5/md5.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/md5/md5.hh -------------------------------------------------------------------------------- /External/servus/include/servus/none/servus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/none/servus.h -------------------------------------------------------------------------------- /External/servus/include/servus/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/result.h -------------------------------------------------------------------------------- /External/servus/include/servus/serializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/serializable.h -------------------------------------------------------------------------------- /External/servus/include/servus/servus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/servus.h -------------------------------------------------------------------------------- /External/servus/include/servus/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/types.h -------------------------------------------------------------------------------- /External/servus/include/servus/uint128_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/uint128_t.h -------------------------------------------------------------------------------- /External/servus/include/servus/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/uri.h -------------------------------------------------------------------------------- /External/servus/include/servus/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/include/servus/version.h -------------------------------------------------------------------------------- /External/servus/lib/linux/libServus.so: -------------------------------------------------------------------------------- 1 | libServus.so.6 -------------------------------------------------------------------------------- /External/servus/lib/linux/libServus.so.1.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/linux/libServus.so.1.6.0 -------------------------------------------------------------------------------- /External/servus/lib/linux/libServus.so.6: -------------------------------------------------------------------------------- 1 | libServus.so.1.6.0 -------------------------------------------------------------------------------- /External/servus/lib/osx/debug/libServus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/osx/debug/libServus.a -------------------------------------------------------------------------------- /External/servus/lib/osx/release/libServus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/osx/release/libServus.a -------------------------------------------------------------------------------- /External/servus/lib/raspberry/libServus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/raspberry/libServus.so -------------------------------------------------------------------------------- /External/servus/lib/raspberry/libServus.so.1.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/raspberry/libServus.so.1.6.0 -------------------------------------------------------------------------------- /External/servus/lib/raspberry/libServus.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/raspberry/libServus.so.6 -------------------------------------------------------------------------------- /External/servus/lib/raspberry64/libServus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/raspberry64/libServus.so -------------------------------------------------------------------------------- /External/servus/lib/silicon/debug/libServus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/silicon/debug/libServus.a -------------------------------------------------------------------------------- /External/servus/lib/silicon/release/libServus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/silicon/release/libServus.a -------------------------------------------------------------------------------- /External/servus/lib/win/x64/debug/Servus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/win/x64/debug/Servus.lib -------------------------------------------------------------------------------- /External/servus/lib/win/x64/release/Servus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/External/servus/lib/win/x64/release/Servus.lib -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_headless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_processors_headless.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_headless.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_processors_headless.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_headless_ara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_processors_headless_ara.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_headless_lv2_libs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_processors_headless_lv2_libs.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core_CompilationTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_core_CompilationTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_cryptography.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_cryptography.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_dmx.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics_Harfbuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_graphics_Harfbuzz.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics_Sheenbidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_graphics_Sheenbidi.c -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_javascript.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_opengl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_opengl.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_organicui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_organicui.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_organicui2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_organicui2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_organicui2b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_organicui2b.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_organicui3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_organicui3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_organicui4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_organicui4.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_osc.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_serial.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_simpleweb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_simpleweb.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_simpleweb2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_simpleweb2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_timeline.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_timeline2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/JuceLibraryCode/include_juce_timeline2.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/LICENSE -------------------------------------------------------------------------------- /Package/Blux.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Package/Blux.pkgproj -------------------------------------------------------------------------------- /Package/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Package/bg.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/README.md -------------------------------------------------------------------------------- /Resources/colorsource/multipoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/multipoint.png -------------------------------------------------------------------------------- /Resources/colorsource/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/node.png -------------------------------------------------------------------------------- /Resources/colorsource/patterns/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/patterns/noise.png -------------------------------------------------------------------------------- /Resources/colorsource/patterns/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/patterns/point.png -------------------------------------------------------------------------------- /Resources/colorsource/patterns/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/patterns/rainbow.png -------------------------------------------------------------------------------- /Resources/colorsource/patterns/solidcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/patterns/solidcolor.png -------------------------------------------------------------------------------- /Resources/colorsource/patterns/strobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/patterns/strobe.png -------------------------------------------------------------------------------- /Resources/colorsource/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/picture.png -------------------------------------------------------------------------------- /Resources/colorsource/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/script.png -------------------------------------------------------------------------------- /Resources/colorsource/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/timeline.png -------------------------------------------------------------------------------- /Resources/colorsource/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/colorsource/video.png -------------------------------------------------------------------------------- /Resources/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/connected.png -------------------------------------------------------------------------------- /Resources/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/crash.png -------------------------------------------------------------------------------- /Resources/crash.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/crash.psd -------------------------------------------------------------------------------- /Resources/default.bluxlayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/default.bluxlayout -------------------------------------------------------------------------------- /Resources/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/disconnected.png -------------------------------------------------------------------------------- /Resources/fx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/fx.png -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/icon.png -------------------------------------------------------------------------------- /Resources/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/icon128.png -------------------------------------------------------------------------------- /Resources/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/icon2.png -------------------------------------------------------------------------------- /Resources/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/icon3.png -------------------------------------------------------------------------------- /Resources/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/link.png -------------------------------------------------------------------------------- /Resources/seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Resources/seq.png -------------------------------------------------------------------------------- /Source/Audio/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Audio/AudioManager.cpp -------------------------------------------------------------------------------- /Source/Audio/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Audio/AudioManager.h -------------------------------------------------------------------------------- /Source/Audio/ui/AudioManagerHardwareEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Audio/ui/AudioManagerHardwareEditor.cpp -------------------------------------------------------------------------------- /Source/Audio/ui/AudioManagerHardwareEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Audio/ui/AudioManagerHardwareEditor.h -------------------------------------------------------------------------------- /Source/ChainViz/ChainViz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/ChainViz/ChainViz.cpp -------------------------------------------------------------------------------- /Source/ChainViz/ChainViz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/ChainViz/ChainViz.h -------------------------------------------------------------------------------- /Source/ChainViz/ChainVizTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/ChainViz/ChainVizTarget.cpp -------------------------------------------------------------------------------- /Source/ChainViz/ChainVizTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/ChainViz/ChainVizTarget.h -------------------------------------------------------------------------------- /Source/Color/ColorIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorIncludes.cpp -------------------------------------------------------------------------------- /Source/Color/ColorIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorIncludes.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ColorSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ColorSource.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ColorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ColorSource.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ColorSourceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ColorSourceFactory.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ColorSourceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ColorSourceFactory.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ColorSourceLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ColorSourceLibrary.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ColorSourceLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ColorSourceLibrary.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/node/NodeColorSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/node/NodeColorSource.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/node/NodeColorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/node/NodeColorSource.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/pattern/PatternColorSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/pattern/PatternColorSource.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/pattern/PatternColorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/pattern/PatternColorSource.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/picture/PictureColorSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/picture/PictureColorSource.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/picture/PictureColorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/picture/PictureColorSource.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/script/ScriptColorSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/script/ScriptColorSource.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/script/ScriptColorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/script/ScriptColorSource.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/video/VideoColorSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/video/VideoColorSource.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/sources/video/VideoColorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/sources/video/VideoColorSource.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorSourceChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorSourceChooser.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorSourceChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorSourceChooser.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorSourceGridUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorSourceGridUI.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorSourceGridUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorSourceGridUI.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorSourceLibraryGridUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorSourceLibraryGridUI.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorSourceLibraryGridUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorSourceLibraryGridUI.h -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorViz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorViz.cpp -------------------------------------------------------------------------------- /Source/Color/ColorSource/ui/ColorViz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/ColorSource/ui/ColorViz.h -------------------------------------------------------------------------------- /Source/Color/PixelShape/PixelShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/PixelShape/PixelShape.cpp -------------------------------------------------------------------------------- /Source/Color/PixelShape/PixelShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/PixelShape/PixelShape.h -------------------------------------------------------------------------------- /Source/Color/PixelShape/ui/PixelShapeChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/PixelShape/ui/PixelShapeChooser.cpp -------------------------------------------------------------------------------- /Source/Color/PixelShape/ui/PixelShapeChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/PixelShape/ui/PixelShapeChooser.h -------------------------------------------------------------------------------- /Source/Color/PixelShape/ui/PixelShapeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/PixelShape/ui/PixelShapeEditor.cpp -------------------------------------------------------------------------------- /Source/Color/PixelShape/ui/PixelShapeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Color/PixelShape/ui/PixelShapeEditor.h -------------------------------------------------------------------------------- /Source/Common/Action/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Action/Action.cpp -------------------------------------------------------------------------------- /Source/Common/Action/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Action/Action.h -------------------------------------------------------------------------------- /Source/Common/Action/ActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Action/ActionManager.cpp -------------------------------------------------------------------------------- /Source/Common/Action/ActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Action/ActionManager.h -------------------------------------------------------------------------------- /Source/Common/CommonClasses/ComponentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/CommonClasses/ComponentType.h -------------------------------------------------------------------------------- /Source/Common/CommonClasses/SceneListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/CommonClasses/SceneListener.h -------------------------------------------------------------------------------- /Source/Common/CommonIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/CommonIncludes.cpp -------------------------------------------------------------------------------- /Source/Common/CommonIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/CommonIncludes.h -------------------------------------------------------------------------------- /Source/Common/Helpers/ColorHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/ColorHelpers.cpp -------------------------------------------------------------------------------- /Source/Common/Helpers/ColorHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/ColorHelpers.h -------------------------------------------------------------------------------- /Source/Common/Helpers/FastNoiseLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/FastNoiseLite.h -------------------------------------------------------------------------------- /Source/Common/Helpers/SceneHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/SceneHelpers.cpp -------------------------------------------------------------------------------- /Source/Common/Helpers/SceneHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/SceneHelpers.h -------------------------------------------------------------------------------- /Source/Common/Helpers/TimedEffectHiresTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/TimedEffectHiresTimer.cpp -------------------------------------------------------------------------------- /Source/Common/Helpers/TimedEffectHiresTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Helpers/TimedEffectHiresTimer.h -------------------------------------------------------------------------------- /Source/Common/MIDI/MIDIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MIDIDevice.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/MIDIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MIDIDevice.h -------------------------------------------------------------------------------- /Source/Common/MIDI/MIDIDeviceParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MIDIDeviceParameter.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/MIDIDeviceParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MIDIDeviceParameter.h -------------------------------------------------------------------------------- /Source/Common/MIDI/MIDIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MIDIManager.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/MIDIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MIDIManager.h -------------------------------------------------------------------------------- /Source/Common/MIDI/MTCReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MTCReceiver.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/MTCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MTCReceiver.h -------------------------------------------------------------------------------- /Source/Common/MIDI/MTCSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MTCSender.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/MTCSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/MTCSender.h -------------------------------------------------------------------------------- /Source/Common/MIDI/ui/MIDIDeviceChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/ui/MIDIDeviceChooser.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/ui/MIDIDeviceChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/ui/MIDIDeviceChooser.h -------------------------------------------------------------------------------- /Source/Common/MIDI/ui/MIDIDeviceParameterUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/ui/MIDIDeviceParameterUI.cpp -------------------------------------------------------------------------------- /Source/Common/MIDI/ui/MIDIDeviceParameterUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/MIDI/ui/MIDIDeviceParameterUI.h -------------------------------------------------------------------------------- /Source/Common/ParameterLink/ParameterLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/ParameterLink/ParameterLink.cpp -------------------------------------------------------------------------------- /Source/Common/ParameterLink/ParameterLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/ParameterLink/ParameterLink.h -------------------------------------------------------------------------------- /Source/Common/ParameterLink/ui/LinkableParameterEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/ParameterLink/ui/LinkableParameterEditor.cpp -------------------------------------------------------------------------------- /Source/Common/ParameterLink/ui/LinkableParameterEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/ParameterLink/ui/LinkableParameterEditor.h -------------------------------------------------------------------------------- /Source/Common/Serial/lib/cobs/cobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/cobs/cobs.cpp -------------------------------------------------------------------------------- /Source/Common/Serial/lib/cobs/cobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/cobs/cobs.h -------------------------------------------------------------------------------- /Source/Common/Serial/lib/serial/impl/list_ports/list_ports_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/serial/impl/list_ports/list_ports_linux.cc -------------------------------------------------------------------------------- /Source/Common/Serial/lib/serial/impl/list_ports/list_ports_osx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/serial/impl/list_ports/list_ports_osx.cc -------------------------------------------------------------------------------- /Source/Common/Serial/lib/serial/impl/list_ports/list_ports_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/serial/impl/list_ports/list_ports_win.cc -------------------------------------------------------------------------------- /Source/Common/Serial/lib/serial/impl/unix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/serial/impl/unix.cc -------------------------------------------------------------------------------- /Source/Common/Serial/lib/serial/impl/win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/serial/impl/win.cc -------------------------------------------------------------------------------- /Source/Common/Serial/lib/serial/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Serial/lib/serial/serial.cc -------------------------------------------------------------------------------- /Source/Common/Spatializer/SpatItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/SpatItem.cpp -------------------------------------------------------------------------------- /Source/Common/Spatializer/SpatItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/SpatItem.h -------------------------------------------------------------------------------- /Source/Common/Spatializer/SpatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/SpatManager.cpp -------------------------------------------------------------------------------- /Source/Common/Spatializer/SpatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/SpatManager.h -------------------------------------------------------------------------------- /Source/Common/Spatializer/ui/SpatItemViewUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/ui/SpatItemViewUI.cpp -------------------------------------------------------------------------------- /Source/Common/Spatializer/ui/SpatItemViewUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/ui/SpatItemViewUI.h -------------------------------------------------------------------------------- /Source/Common/Spatializer/ui/SpatManagerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/ui/SpatManagerView.cpp -------------------------------------------------------------------------------- /Source/Common/Spatializer/ui/SpatManagerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Spatializer/ui/SpatManagerView.h -------------------------------------------------------------------------------- /Source/Common/Zeroconf/ZeroconfManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Zeroconf/ZeroconfManager.cpp -------------------------------------------------------------------------------- /Source/Common/Zeroconf/ZeroconfManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Common/Zeroconf/ZeroconfManager.h -------------------------------------------------------------------------------- /Source/Effect/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Effect.cpp -------------------------------------------------------------------------------- /Source/Effect/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Effect.h -------------------------------------------------------------------------------- /Source/Effect/EffectIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/EffectIncludes.cpp -------------------------------------------------------------------------------- /Source/Effect/EffectIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/EffectIncludes.h -------------------------------------------------------------------------------- /Source/Effect/EffectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/EffectManager.cpp -------------------------------------------------------------------------------- /Source/Effect/EffectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/EffectManager.h -------------------------------------------------------------------------------- /Source/Effect/Filter/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/Filter.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/Filter.h -------------------------------------------------------------------------------- /Source/Effect/Filter/FilterManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/FilterManager.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/FilterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/FilterManager.h -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/group/GroupFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/group/GroupFilter.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/group/GroupFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/group/GroupFilter.h -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/id/IDFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/id/IDFilter.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/id/IDFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/id/IDFilter.h -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/layout/LayoutFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/layout/LayoutFilter.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/layout/LayoutFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/layout/LayoutFilter.h -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/layout/ui/LayoutFilterStageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/layout/ui/LayoutFilterStageView.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/layout/ui/LayoutFilterStageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/layout/ui/LayoutFilterStageView.h -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/layout/ui/LayoutFilterStageViewUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/layout/ui/LayoutFilterStageViewUI.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/filters/layout/ui/LayoutFilterStageViewUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/filters/layout/ui/LayoutFilterStageViewUI.h -------------------------------------------------------------------------------- /Source/Effect/Filter/ui/FilterEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/ui/FilterEditor.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/ui/FilterEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/ui/FilterEditor.h -------------------------------------------------------------------------------- /Source/Effect/Filter/ui/FilterManagerEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/ui/FilterManagerEditor.cpp -------------------------------------------------------------------------------- /Source/Effect/Filter/ui/FilterManagerEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/Filter/ui/FilterManagerEditor.h -------------------------------------------------------------------------------- /Source/Effect/GlobalEffectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/GlobalEffectManager.cpp -------------------------------------------------------------------------------- /Source/Effect/GlobalEffectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/GlobalEffectManager.h -------------------------------------------------------------------------------- /Source/Effect/actions/EffectAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/actions/EffectAction.cpp -------------------------------------------------------------------------------- /Source/Effect/actions/EffectAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/actions/EffectAction.h -------------------------------------------------------------------------------- /Source/Effect/effects/color/ColorEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/ColorEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/color/ColorEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/ColorEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/color/gradientmap/ColorGradientMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/gradientmap/ColorGradientMapEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/color/gradientmap/ColorGradientMapEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/gradientmap/ColorGradientMapEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/color/hsv/HSVAdjustEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/hsv/HSVAdjustEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/color/hsv/HSVAdjustEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/hsv/HSVAdjustEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/color/override/ColorSourceOverrideEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/override/ColorSourceOverrideEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/color/override/ColorSourceOverrideEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/override/ColorSourceOverrideEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/color/override/ui/ColorSourceOverrideEffectEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/override/ui/ColorSourceOverrideEffectEditor.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/color/override/ui/ColorSourceOverrideEffectEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/override/ui/ColorSourceOverrideEffectEditor.h -------------------------------------------------------------------------------- /Source/Effect/effects/color/remap/ColorPositionRemapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/remap/ColorPositionRemapEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/color/remap/ColorPositionRemapEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/color/remap/ColorPositionRemapEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/customcomponent/CustomComponentEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/customcomponent/CustomComponentEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/customcomponent/CustomComponentEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/customcomponent/CustomComponentEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/orientation/OrientationEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/orientation/OrientationEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/orientation/OrientationEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/orientation/OrientationEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/override/CurveMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/CurveMapEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/override/CurveMapEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/CurveMapEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/override/FreezeEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/FreezeEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/override/FreezeEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/FreezeEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/override/OverrideEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/OverrideEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/override/OverrideEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/OverrideEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/override/PointEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/PointEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/override/PointEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/override/PointEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/script/ScriptEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/script/ScriptEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/script/ScriptEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/script/ScriptEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/smooth/DampingEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/smooth/DampingEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/smooth/DampingEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/smooth/DampingEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/smooth/SmoothingEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/smooth/SmoothingEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/smooth/SmoothingEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/smooth/SmoothingEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/time/TimedEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/TimedEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/time/TimedEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/TimedEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/time/automation/AutomationEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/automation/AutomationEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/time/automation/AutomationEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/automation/AutomationEffect.h -------------------------------------------------------------------------------- /Source/Effect/effects/time/automation/ui/AutomationEffectEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/automation/ui/AutomationEffectEditor.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/time/automation/ui/AutomationEffectEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/automation/ui/AutomationEffectEditor.h -------------------------------------------------------------------------------- /Source/Effect/effects/time/noise/NoiseEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/noise/NoiseEffect.cpp -------------------------------------------------------------------------------- /Source/Effect/effects/time/noise/NoiseEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/effects/time/noise/NoiseEffect.h -------------------------------------------------------------------------------- /Source/Effect/ui/EffectChainVizUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/EffectChainVizUI.cpp -------------------------------------------------------------------------------- /Source/Effect/ui/EffectChainVizUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/EffectChainVizUI.h -------------------------------------------------------------------------------- /Source/Effect/ui/EffectEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/EffectEditor.cpp -------------------------------------------------------------------------------- /Source/Effect/ui/EffectEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/EffectEditor.h -------------------------------------------------------------------------------- /Source/Effect/ui/EffectManagerEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/EffectManagerEditor.cpp -------------------------------------------------------------------------------- /Source/Effect/ui/EffectManagerEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/EffectManagerEditor.h -------------------------------------------------------------------------------- /Source/Effect/ui/GlobalEffectManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/GlobalEffectManagerUI.cpp -------------------------------------------------------------------------------- /Source/Effect/ui/GlobalEffectManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Effect/ui/GlobalEffectManagerUI.h -------------------------------------------------------------------------------- /Source/Engine/BluxEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Engine/BluxEngine.cpp -------------------------------------------------------------------------------- /Source/Engine/BluxEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Engine/BluxEngine.h -------------------------------------------------------------------------------- /Source/Engine/GenericAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Engine/GenericAction.cpp -------------------------------------------------------------------------------- /Source/Engine/GenericAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Engine/GenericAction.h -------------------------------------------------------------------------------- /Source/Interface/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/Interface.cpp -------------------------------------------------------------------------------- /Source/Interface/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/Interface.h -------------------------------------------------------------------------------- /Source/Interface/InterfaceIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/InterfaceIncludes.cpp -------------------------------------------------------------------------------- /Source/Interface/InterfaceIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/InterfaceIncludes.h -------------------------------------------------------------------------------- /Source/Interface/InterfaceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/InterfaceManager.cpp -------------------------------------------------------------------------------- /Source/Interface/InterfaceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/InterfaceManager.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/bento/BentoInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/bento/BentoInterface.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/bento/BentoInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/bento/BentoInterface.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/dmx/DMXInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/dmx/DMXInterface.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/dmx/DMXInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/dmx/DMXInterface.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/dmx/ui/DMXChannelView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/dmx/ui/DMXChannelView.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/dmx/ui/DMXChannelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/dmx/ui/DMXChannelView.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/dmx/ui/DMXInterfaceUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/dmx/ui/DMXInterfaceUI.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/dmx/ui/DMXInterfaceUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/dmx/ui/DMXInterfaceUI.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/MIDIInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/MIDIInterface.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/MIDIInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/MIDIInterface.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/MIDIMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/MIDIMapping.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/MIDIMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/MIDIMapping.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/MIDIMappingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/MIDIMappingManager.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/MIDIMappingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/MIDIMappingManager.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/ui/MIDIMappingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/ui/MIDIMappingEditor.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/midi/ui/MIDIMappingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/midi/ui/MIDIMappingEditor.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/OSCInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/OSCInterface.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/OSCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/OSCInterface.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/custom/CustomOSCInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/custom/CustomOSCInterface.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/custom/CustomOSCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/custom/CustomOSCInterface.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/ui/OSCInputEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/ui/OSCInputEditor.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/ui/OSCInputEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/ui/OSCInputEditor.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/ui/OSCOutputEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/ui/OSCOutputEditor.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/osc/ui/OSCOutputEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/osc/ui/OSCOutputEditor.h -------------------------------------------------------------------------------- /Source/Interface/interfaces/serial/SerialInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/serial/SerialInterface.cpp -------------------------------------------------------------------------------- /Source/Interface/interfaces/serial/SerialInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/interfaces/serial/SerialInterface.h -------------------------------------------------------------------------------- /Source/Interface/ui/InterfaceManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/ui/InterfaceManagerUI.cpp -------------------------------------------------------------------------------- /Source/Interface/ui/InterfaceManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/ui/InterfaceManagerUI.h -------------------------------------------------------------------------------- /Source/Interface/ui/InterfaceUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/ui/InterfaceUI.cpp -------------------------------------------------------------------------------- /Source/Interface/ui/InterfaceUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Interface/ui/InterfaceUI.h -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Main.h -------------------------------------------------------------------------------- /Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/MainComponent.h -------------------------------------------------------------------------------- /Source/MainComponentCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/MainComponentCommands.cpp -------------------------------------------------------------------------------- /Source/MainIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/MainIncludes.cpp -------------------------------------------------------------------------------- /Source/MainIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/MainIncludes.h -------------------------------------------------------------------------------- /Source/Object/Component/ComponentManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ComponentManager.cpp -------------------------------------------------------------------------------- /Source/Object/Component/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ComponentManager.h -------------------------------------------------------------------------------- /Source/Object/Component/ObjectComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ObjectComponent.cpp -------------------------------------------------------------------------------- /Source/Object/Component/ObjectComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ObjectComponent.h -------------------------------------------------------------------------------- /Source/Object/Component/components/color/ColorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/color/ColorComponent.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/color/ColorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/color/ColorComponent.h -------------------------------------------------------------------------------- /Source/Object/Component/components/color/ui/ColorComponentEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/color/ui/ColorComponentEditor.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/color/ui/ColorComponentEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/color/ui/ColorComponentEditor.h -------------------------------------------------------------------------------- /Source/Object/Component/components/custom/CustomComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/custom/CustomComponent.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/custom/CustomComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/custom/CustomComponent.h -------------------------------------------------------------------------------- /Source/Object/Component/components/custom/ui/CustomComponentUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/custom/ui/CustomComponentUI.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/custom/ui/CustomComponentUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/custom/ui/CustomComponentUI.h -------------------------------------------------------------------------------- /Source/Object/Component/components/dimmer/DimmerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/dimmer/DimmerComponent.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/dimmer/DimmerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/dimmer/DimmerComponent.h -------------------------------------------------------------------------------- /Source/Object/Component/components/orientation/Matrix3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/orientation/Matrix3x3.hpp -------------------------------------------------------------------------------- /Source/Object/Component/components/orientation/OrientationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/orientation/OrientationComponent.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/orientation/OrientationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/orientation/OrientationComponent.h -------------------------------------------------------------------------------- /Source/Object/Component/components/orientation/Quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/orientation/Quaternion.hpp -------------------------------------------------------------------------------- /Source/Object/Component/components/orientation/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/orientation/Vector2.hpp -------------------------------------------------------------------------------- /Source/Object/Component/components/orientation/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/orientation/Vector3.hpp -------------------------------------------------------------------------------- /Source/Object/Component/components/shutter/ShutterComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/shutter/ShutterComponent.cpp -------------------------------------------------------------------------------- /Source/Object/Component/components/shutter/ShutterComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/components/shutter/ShutterComponent.h -------------------------------------------------------------------------------- /Source/Object/Component/ui/ComponentManagerEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ui/ComponentManagerEditor.cpp -------------------------------------------------------------------------------- /Source/Object/Component/ui/ComponentManagerEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ui/ComponentManagerEditor.h -------------------------------------------------------------------------------- /Source/Object/Component/ui/ObjectComponentEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ui/ObjectComponentEditor.cpp -------------------------------------------------------------------------------- /Source/Object/Component/ui/ObjectComponentEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Component/ui/ObjectComponentEditor.h -------------------------------------------------------------------------------- /Source/Object/Group/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/Group.cpp -------------------------------------------------------------------------------- /Source/Object/Group/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/Group.h -------------------------------------------------------------------------------- /Source/Object/Group/GroupManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/GroupManager.cpp -------------------------------------------------------------------------------- /Source/Object/Group/GroupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/GroupManager.h -------------------------------------------------------------------------------- /Source/Object/Group/groups/object/ObjectGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/groups/object/ObjectGroup.cpp -------------------------------------------------------------------------------- /Source/Object/Group/groups/object/ObjectGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/groups/object/ObjectGroup.h -------------------------------------------------------------------------------- /Source/Object/Group/groups/object/ui/ObjectGroupUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/groups/object/ui/ObjectGroupUI.cpp -------------------------------------------------------------------------------- /Source/Object/Group/groups/object/ui/ObjectGroupUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/groups/object/ui/ObjectGroupUI.h -------------------------------------------------------------------------------- /Source/Object/Group/groups/virtual/VirtualGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/groups/virtual/VirtualGroup.cpp -------------------------------------------------------------------------------- /Source/Object/Group/groups/virtual/VirtualGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/groups/virtual/VirtualGroup.h -------------------------------------------------------------------------------- /Source/Object/Group/ui/GroupManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/ui/GroupManagerUI.cpp -------------------------------------------------------------------------------- /Source/Object/Group/ui/GroupManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/ui/GroupManagerUI.h -------------------------------------------------------------------------------- /Source/Object/Group/ui/GroupUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/ui/GroupUI.cpp -------------------------------------------------------------------------------- /Source/Object/Group/ui/GroupUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Group/ui/GroupUI.h -------------------------------------------------------------------------------- /Source/Object/Layout/StageLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/StageLayout.cpp -------------------------------------------------------------------------------- /Source/Object/Layout/StageLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/StageLayout.h -------------------------------------------------------------------------------- /Source/Object/Layout/StageLayoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/StageLayoutManager.cpp -------------------------------------------------------------------------------- /Source/Object/Layout/StageLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/StageLayoutManager.h -------------------------------------------------------------------------------- /Source/Object/Layout/ui/Object2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/Object2DView.cpp -------------------------------------------------------------------------------- /Source/Object/Layout/ui/Object2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/Object2DView.h -------------------------------------------------------------------------------- /Source/Object/Layout/ui/StageLayout2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/StageLayout2DView.cpp -------------------------------------------------------------------------------- /Source/Object/Layout/ui/StageLayout2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/StageLayout2DView.h -------------------------------------------------------------------------------- /Source/Object/Layout/ui/StageLayoutManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/StageLayoutManagerUI.cpp -------------------------------------------------------------------------------- /Source/Object/Layout/ui/StageLayoutManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/StageLayoutManagerUI.h -------------------------------------------------------------------------------- /Source/Object/Layout/ui/StageLayoutUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/StageLayoutUI.cpp -------------------------------------------------------------------------------- /Source/Object/Layout/ui/StageLayoutUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Layout/ui/StageLayoutUI.h -------------------------------------------------------------------------------- /Source/Object/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Object.cpp -------------------------------------------------------------------------------- /Source/Object/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/Object.h -------------------------------------------------------------------------------- /Source/Object/ObjectIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ObjectIncludes.cpp -------------------------------------------------------------------------------- /Source/Object/ObjectIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ObjectIncludes.h -------------------------------------------------------------------------------- /Source/Object/ObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ObjectManager.cpp -------------------------------------------------------------------------------- /Source/Object/ObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ObjectManager.h -------------------------------------------------------------------------------- /Source/Object/actions/ObjectAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/actions/ObjectAction.cpp -------------------------------------------------------------------------------- /Source/Object/actions/ObjectAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/actions/ObjectAction.h -------------------------------------------------------------------------------- /Source/Object/ui/ObjectChainVizUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectChainVizUI.cpp -------------------------------------------------------------------------------- /Source/Object/ui/ObjectChainVizUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectChainVizUI.h -------------------------------------------------------------------------------- /Source/Object/ui/ObjectCustomView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectCustomView.cpp -------------------------------------------------------------------------------- /Source/Object/ui/ObjectCustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectCustomView.h -------------------------------------------------------------------------------- /Source/Object/ui/ObjectGridUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectGridUI.cpp -------------------------------------------------------------------------------- /Source/Object/ui/ObjectGridUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectGridUI.h -------------------------------------------------------------------------------- /Source/Object/ui/ObjectManagerGridUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectManagerGridUI.cpp -------------------------------------------------------------------------------- /Source/Object/ui/ObjectManagerGridUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectManagerGridUI.h -------------------------------------------------------------------------------- /Source/Object/ui/ObjectManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectManagerUI.cpp -------------------------------------------------------------------------------- /Source/Object/ui/ObjectManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectManagerUI.h -------------------------------------------------------------------------------- /Source/Object/ui/ObjectUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectUI.cpp -------------------------------------------------------------------------------- /Source/Object/ui/ObjectUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Object/ui/ObjectUI.h -------------------------------------------------------------------------------- /Source/Scene/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/Scene.cpp -------------------------------------------------------------------------------- /Source/Scene/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/Scene.h -------------------------------------------------------------------------------- /Source/Scene/SceneIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/SceneIncludes.cpp -------------------------------------------------------------------------------- /Source/Scene/SceneIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/SceneIncludes.h -------------------------------------------------------------------------------- /Source/Scene/SceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/SceneManager.cpp -------------------------------------------------------------------------------- /Source/Scene/SceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/SceneManager.h -------------------------------------------------------------------------------- /Source/Scene/actions/SceneAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/actions/SceneAction.cpp -------------------------------------------------------------------------------- /Source/Scene/actions/SceneAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/actions/SceneAction.h -------------------------------------------------------------------------------- /Source/Scene/ui/SceneManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/ui/SceneManagerUI.cpp -------------------------------------------------------------------------------- /Source/Scene/ui/SceneManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/ui/SceneManagerUI.h -------------------------------------------------------------------------------- /Source/Scene/ui/SceneUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/ui/SceneUI.cpp -------------------------------------------------------------------------------- /Source/Scene/ui/SceneUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Scene/ui/SceneUI.h -------------------------------------------------------------------------------- /Source/Sequence/BluxSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/BluxSequence.cpp -------------------------------------------------------------------------------- /Source/Sequence/BluxSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/BluxSequence.h -------------------------------------------------------------------------------- /Source/Sequence/BluxSequenceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/BluxSequenceManager.cpp -------------------------------------------------------------------------------- /Source/Sequence/BluxSequenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/BluxSequenceManager.h -------------------------------------------------------------------------------- /Source/Sequence/GlobalSequenceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/GlobalSequenceManager.cpp -------------------------------------------------------------------------------- /Source/Sequence/GlobalSequenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/GlobalSequenceManager.h -------------------------------------------------------------------------------- /Source/Sequence/SequenceIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/SequenceIncludes.cpp -------------------------------------------------------------------------------- /Source/Sequence/SequenceIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/SequenceIncludes.h -------------------------------------------------------------------------------- /Source/Sequence/actions/SequenceAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/actions/SequenceAction.cpp -------------------------------------------------------------------------------- /Source/Sequence/actions/SequenceAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/actions/SequenceAction.h -------------------------------------------------------------------------------- /Source/Sequence/layers/action/ActionLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/action/ActionLayer.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/action/ActionLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/action/ActionLayer.h -------------------------------------------------------------------------------- /Source/Sequence/layers/action/ActionTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/action/ActionTrigger.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/action/ActionTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/action/ActionTrigger.h -------------------------------------------------------------------------------- /Source/Sequence/layers/automation/AutomationLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/automation/AutomationLayer.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/automation/AutomationLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/automation/AutomationLayer.h -------------------------------------------------------------------------------- /Source/Sequence/layers/colorsource/ColorSourceLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/colorsource/ColorSourceLayer.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/colorsource/ColorSourceLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/colorsource/ColorSourceLayer.h -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/EffectBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/EffectBlock.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/EffectBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/EffectBlock.h -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/EffectBlockManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/EffectBlockManager.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/EffectBlockManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/EffectBlockManager.h -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/EffectLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/EffectLayer.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/EffectLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/EffectLayer.h -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/ui/EffectBlockManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/ui/EffectBlockManagerUI.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/ui/EffectBlockManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/ui/EffectBlockManagerUI.h -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/ui/EffectBlockUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/ui/EffectBlockUI.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/ui/EffectBlockUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/ui/EffectBlockUI.h -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/ui/EffectLayerTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/ui/EffectLayerTimeline.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/effect/ui/EffectLayerTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/effect/ui/EffectLayerTimeline.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/RawDataBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/RawDataBlock.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/RawDataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/RawDataBlock.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/RawDataBlockManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/RawDataBlockManager.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/RawDataBlockManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/RawDataBlockManager.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/RawDataLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/RawDataLayer.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/RawDataLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/RawDataLayer.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataBlockManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataBlockManagerUI.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataBlockManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataBlockManagerUI.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataBlockUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataBlockUI.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataBlockUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataBlockUI.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataLayerPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataLayerPanel.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataLayerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataLayerPanel.h -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataLayerTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataLayerTimeline.cpp -------------------------------------------------------------------------------- /Source/Sequence/layers/rawdata/ui/RawDataLayerTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/layers/rawdata/ui/RawDataLayerTimeline.h -------------------------------------------------------------------------------- /Source/Sequence/ui/BluxSequenceChainVizUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/ui/BluxSequenceChainVizUI.cpp -------------------------------------------------------------------------------- /Source/Sequence/ui/BluxSequenceChainVizUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/ui/BluxSequenceChainVizUI.h -------------------------------------------------------------------------------- /Source/Sequence/ui/BluxSequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/ui/BluxSequenceEditor.cpp -------------------------------------------------------------------------------- /Source/Sequence/ui/BluxSequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/ui/BluxSequenceEditor.h -------------------------------------------------------------------------------- /Source/Sequence/ui/GlobalSequenceManagerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/ui/GlobalSequenceManagerUI.cpp -------------------------------------------------------------------------------- /Source/Sequence/ui/GlobalSequenceManagerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Sequence/ui/GlobalSequenceManagerUI.h -------------------------------------------------------------------------------- /Source/UI/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/UI/AssetManager.cpp -------------------------------------------------------------------------------- /Source/UI/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/UI/AssetManager.h -------------------------------------------------------------------------------- /Source/UI/BluxInspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/UI/BluxInspector.cpp -------------------------------------------------------------------------------- /Source/UI/BluxInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/UI/BluxInspector.h -------------------------------------------------------------------------------- /Source/Viz/Viz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Viz/Viz.cpp -------------------------------------------------------------------------------- /Source/Viz/Viz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/Source/Viz/Viz.h -------------------------------------------------------------------------------- /install.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/install.iss -------------------------------------------------------------------------------- /setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuper/Blux/HEAD/setup.ico --------------------------------------------------------------------------------