├── .gitignore ├── Documentation ├── Makefile ├── conf.py ├── index.rst ├── index │ ├── feature_reference.rst │ ├── getting_started.rst │ ├── images │ │ ├── 3dsMaxIntegration.png │ │ ├── BlenderIntegration.png │ │ ├── HoudiniIntegration.png │ │ ├── MayaIntegration.png │ │ ├── PandoraInstallerDialog.png │ │ ├── PandoraSettings.png │ │ ├── PandoraSubmitter.png │ │ ├── RenderHandler.jpg │ │ ├── TrayIcon.png │ │ ├── title.png │ │ └── windows-smartscreen.png │ └── overview.rst └── make.bat ├── LICENSE ├── Pandora ├── Plugins │ ├── Apps │ │ ├── 3dsMax │ │ │ ├── Integration │ │ │ │ ├── PandoraMacros.mcr │ │ │ │ ├── PandoraMenu.ms │ │ │ │ ├── initPandora.ms │ │ │ │ └── initPandora.py │ │ │ └── Scripts │ │ │ │ ├── Pandora_3dsMax_Functions.py │ │ │ │ ├── Pandora_3dsMax_Integration.py │ │ │ │ ├── Pandora_3dsMax_Variables.py │ │ │ │ ├── Pandora_3dsMax_externalAccess_Functions.py │ │ │ │ ├── Pandora_3dsMax_init.py │ │ │ │ └── Pandora_3dsMax_init_unloaded.py │ │ ├── Blender │ │ │ ├── Integration │ │ │ │ ├── PandoraInit.py │ │ │ │ ├── python3.dll │ │ │ │ ├── qminimal.dll │ │ │ │ ├── qoffscreen.dll │ │ │ │ ├── qwindows.dll │ │ │ │ ├── space_topbar1.py │ │ │ │ └── space_topbar2.py │ │ │ ├── Scripts │ │ │ │ ├── Pandora_Blender_Functions.py │ │ │ │ ├── Pandora_Blender_Integration.py │ │ │ │ ├── Pandora_Blender_Variables.py │ │ │ │ ├── Pandora_Blender_externalAccess_Functions.py │ │ │ │ ├── Pandora_Blender_init.py │ │ │ │ └── Pandora_Blender_init_unloaded.py │ │ │ └── UserInterfaces │ │ │ │ └── BlenderStyleSheet │ │ │ │ ├── Blender2.79.qss │ │ │ │ ├── Blender2.8.qss │ │ │ │ ├── README.md │ │ │ │ ├── images │ │ │ │ ├── Hmovetoolbar_dark.png │ │ │ │ ├── Hmovetoolbar_light.png │ │ │ │ ├── Hsepartoolbar_dark.png │ │ │ │ ├── Hsepartoolbar_light.png │ │ │ │ ├── Thumbs.db │ │ │ │ ├── Vmovetoolbar_dark.png │ │ │ │ ├── Vmovetoolbar_light.png │ │ │ │ ├── Vsepartoolbar_dark.png │ │ │ │ ├── Vsepartoolbar_light.png │ │ │ │ ├── background_freecad.png │ │ │ │ ├── branch_closed_dark.png │ │ │ │ ├── branch_closed_darker.png │ │ │ │ ├── branch_closed_light.png │ │ │ │ ├── branch_end.png │ │ │ │ ├── branch_more.png │ │ │ │ ├── branch_open_dark.png │ │ │ │ ├── branch_open_darker.png │ │ │ │ ├── branch_open_light.png │ │ │ │ ├── branch_vline.png │ │ │ │ ├── checkbox_indeterminate_light.png │ │ │ │ ├── checkbox_light.png │ │ │ │ ├── close_dark.png │ │ │ │ ├── close_light.png │ │ │ │ ├── down_arrow_dark.png │ │ │ │ ├── down_arrow_darker.png │ │ │ │ ├── down_arrow_disabled_dark.png │ │ │ │ ├── down_arrow_disabled_light.png │ │ │ │ ├── down_arrow_light.png │ │ │ │ ├── down_arrow_lighter.png │ │ │ │ ├── left_arrow_dark.png │ │ │ │ ├── left_arrow_darker.png │ │ │ │ ├── left_arrow_disabled_dark.png │ │ │ │ ├── left_arrow_disabled_light.png │ │ │ │ ├── left_arrow_light.png │ │ │ │ ├── left_arrow_lighter.png │ │ │ │ ├── more_dark.png │ │ │ │ ├── more_light.png │ │ │ │ ├── radiobutton_light.png │ │ │ │ ├── right_arrow_dark.png │ │ │ │ ├── right_arrow_darker.png │ │ │ │ ├── right_arrow_disabled_dark.png │ │ │ │ ├── right_arrow_disabled_light.png │ │ │ │ ├── right_arrow_light.png │ │ │ │ ├── right_arrow_lighter.png │ │ │ │ ├── sizegrip_dark.png │ │ │ │ ├── sizegrip_light.png │ │ │ │ ├── splitter_horizontal_dark.png │ │ │ │ ├── splitter_horizontal_light.png │ │ │ │ ├── splitter_vertical_dark.png │ │ │ │ ├── splitter_vertical_light.png │ │ │ │ ├── transparent.png │ │ │ │ ├── undock_dark.png │ │ │ │ ├── undock_light.png │ │ │ │ ├── up_arrow_dark.png │ │ │ │ ├── up_arrow_darker.png │ │ │ │ ├── up_arrow_disabled_dark.png │ │ │ │ ├── up_arrow_disabled_light.png │ │ │ │ ├── up_arrow_light.png │ │ │ │ └── up_arrow_lighter.png │ │ │ │ └── images_blender │ │ │ │ ├── Thumbs.db │ │ │ │ ├── horizontal_line.png │ │ │ │ └── vertical_line.png │ │ ├── Houdini │ │ │ ├── Integration │ │ │ │ ├── Pandora.json │ │ │ │ ├── config │ │ │ │ │ └── Icons │ │ │ │ │ │ ├── pandoraRenderHandler.png │ │ │ │ │ │ ├── pandoraSettings.png │ │ │ │ │ │ └── pandoraSubmitter.png │ │ │ │ ├── python2.7libs │ │ │ │ │ ├── Pandora.py │ │ │ │ │ └── pythonrc.py │ │ │ │ └── toolbar │ │ │ │ │ └── Pandora.shelf │ │ │ └── Scripts │ │ │ │ ├── Pandora_Houdini_Functions.py │ │ │ │ ├── Pandora_Houdini_Integration.py │ │ │ │ ├── Pandora_Houdini_Variables.py │ │ │ │ ├── Pandora_Houdini_externalAccess_Functions.py │ │ │ │ ├── Pandora_Houdini_init.py │ │ │ │ └── Pandora_Houdini_init_unloaded.py │ │ ├── Maya │ │ │ ├── Integration │ │ │ │ ├── PandoraInit.py │ │ │ │ ├── shelf_Pandora.mel │ │ │ │ └── userSetup.py │ │ │ └── Scripts │ │ │ │ ├── Pandora_Maya_Functions.py │ │ │ │ ├── Pandora_Maya_Integration.py │ │ │ │ ├── Pandora_Maya_Variables.py │ │ │ │ ├── Pandora_Maya_externalAccess_Functions.py │ │ │ │ ├── Pandora_Maya_init.py │ │ │ │ └── Pandora_Maya_init_unloaded.py │ │ └── Standalone │ │ │ └── Scripts │ │ │ ├── Pandora_Standalone_Functions.py │ │ │ ├── Pandora_Standalone_Variables.py │ │ │ ├── Pandora_Standalone_externalAccess_Functions.py │ │ │ ├── Pandora_Standalone_init.py │ │ │ └── Pandora_Standalone_init_unloaded.py │ └── Custom │ │ └── PluginPreset │ │ └── Scripts │ │ ├── Pandora_PluginPreset_Functions.py │ │ ├── Pandora_PluginPreset_Variables.py │ │ └── Pandora_PluginPreset_init_unloaded.py ├── Scripts │ ├── PandoraCoordinator.py │ ├── PandoraCore.py │ ├── PandoraInstaller.py │ ├── PandoraRenderHandler.py │ ├── PandoraSendEmail.py │ ├── PandoraSettings.py │ ├── PandoraSlave.py │ ├── PandoraSlaveAssignment.py │ ├── PandoraStartHouJob.py │ ├── PandoraSubmitter.py │ ├── PandoraTray.py │ └── UserInterfacesPandora │ │ ├── ConvertUI.py │ │ ├── InstallList.py │ │ ├── PandoraInstaller.ui │ │ ├── PandoraInstaller_ui.py │ │ ├── PandoraInstaller_ui_ps2.py │ │ ├── PandoraSettings.ui │ │ ├── PandoraSettings_ui.py │ │ ├── PandoraSettings_ui_ps2.py │ │ ├── PandoraSlaveAssignment.ui │ │ ├── PandoraSlaveAssignment_ui.py │ │ ├── PandoraSlaveAssignment_ui_ps2.py │ │ ├── PandoraSubmitter.ui │ │ ├── PandoraSubmitter_ui.py │ │ ├── PandoraSubmitter_ui_ps2.py │ │ ├── RenderHandler.ui │ │ ├── RenderHandler_ui.py │ │ ├── RenderHandler_ui_ps2.py │ │ ├── __init__.py │ │ ├── pandoraRenderHandler.png │ │ ├── pandoraSettings.png │ │ ├── pandoraSubmitter.png │ │ ├── pandora_slave.ico │ │ ├── pandora_slave.png │ │ ├── pandora_tray.ico │ │ ├── pandora_tray.png │ │ ├── qdarkstyle │ │ ├── __init__.py │ │ ├── rc │ │ │ ├── Hmovetoolbar.png │ │ │ ├── Hsepartoolbar.png │ │ │ ├── Thumbs.db │ │ │ ├── Vmovetoolbar.png │ │ │ ├── Vsepartoolbar.png │ │ │ ├── branch_closed-on.png │ │ │ ├── branch_closed.png │ │ │ ├── branch_open-on.png │ │ │ ├── branch_open.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disabled.png │ │ │ ├── checkbox_checked_focus.png │ │ │ ├── checkbox_indeterminate.png │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ ├── checkbox_indeterminate_focus.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ ├── checkbox_unchecked_focus.png │ │ │ ├── close-hover.png │ │ │ ├── close-pressed.png │ │ │ ├── close.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_disabled.png │ │ │ ├── left_arrow.png │ │ │ ├── left_arrow_disabled.png │ │ │ ├── radio_checked.png │ │ │ ├── radio_checked_disabled.png │ │ │ ├── radio_checked_focus.png │ │ │ ├── radio_unchecked.png │ │ │ ├── radio_unchecked_disabled.png │ │ │ ├── radio_unchecked_focus.png │ │ │ ├── right_arrow.png │ │ │ ├── right_arrow_disabled.png │ │ │ ├── sizegrip.png │ │ │ ├── stylesheet-branch-end.png │ │ │ ├── stylesheet-branch-more.png │ │ │ ├── stylesheet-vline.png │ │ │ ├── transparent.png │ │ │ ├── undock.png │ │ │ ├── up_arrow.png │ │ │ └── up_arrow_disabled.png │ │ └── style.qss │ │ ├── rh_tray.ico │ │ └── rh_tray.png ├── Setup_Integrations.bat ├── Setup_Startmenu.bat └── Uninstall.bat ├── Pandora_Setup.bat └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /Documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/Makefile -------------------------------------------------------------------------------- /Documentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/conf.py -------------------------------------------------------------------------------- /Documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index.rst -------------------------------------------------------------------------------- /Documentation/index/feature_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/feature_reference.rst -------------------------------------------------------------------------------- /Documentation/index/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/getting_started.rst -------------------------------------------------------------------------------- /Documentation/index/images/3dsMaxIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/3dsMaxIntegration.png -------------------------------------------------------------------------------- /Documentation/index/images/BlenderIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/BlenderIntegration.png -------------------------------------------------------------------------------- /Documentation/index/images/HoudiniIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/HoudiniIntegration.png -------------------------------------------------------------------------------- /Documentation/index/images/MayaIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/MayaIntegration.png -------------------------------------------------------------------------------- /Documentation/index/images/PandoraInstallerDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/PandoraInstallerDialog.png -------------------------------------------------------------------------------- /Documentation/index/images/PandoraSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/PandoraSettings.png -------------------------------------------------------------------------------- /Documentation/index/images/PandoraSubmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/PandoraSubmitter.png -------------------------------------------------------------------------------- /Documentation/index/images/RenderHandler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/RenderHandler.jpg -------------------------------------------------------------------------------- /Documentation/index/images/TrayIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/TrayIcon.png -------------------------------------------------------------------------------- /Documentation/index/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/title.png -------------------------------------------------------------------------------- /Documentation/index/images/windows-smartscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/images/windows-smartscreen.png -------------------------------------------------------------------------------- /Documentation/index/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/index/overview.rst -------------------------------------------------------------------------------- /Documentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Documentation/make.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/LICENSE -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Integration/PandoraMacros.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Integration/PandoraMacros.mcr -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Integration/PandoraMenu.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Integration/PandoraMenu.ms -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Integration/initPandora.ms: -------------------------------------------------------------------------------- 1 | if not IsNetServer() then python.ExecuteFile "initPandora.py" -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Integration/initPandora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Integration/initPandora.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_Integration.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_Variables.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_externalAccess_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_externalAccess_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_init.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_init_unloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/3dsMax/Scripts/Pandora_3dsMax_init_unloaded.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/PandoraInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/PandoraInit.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/python3.dll -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/qminimal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/qminimal.dll -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/qoffscreen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/qoffscreen.dll -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/qwindows.dll -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/space_topbar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/space_topbar1.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Integration/space_topbar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Integration/space_topbar2.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_Integration.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_Variables.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_externalAccess_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_externalAccess_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_init.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_init_unloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/Scripts/Pandora_Blender_init_unloaded.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/Blender2.79.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/Blender2.79.qss -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/Blender2.8.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/Blender2.8.qss -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/README.md -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hmovetoolbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hmovetoolbar_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hmovetoolbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hmovetoolbar_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hsepartoolbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hsepartoolbar_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hsepartoolbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Hsepartoolbar_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Thumbs.db -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vmovetoolbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vmovetoolbar_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vmovetoolbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vmovetoolbar_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vsepartoolbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vsepartoolbar_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vsepartoolbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/Vsepartoolbar_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/background_freecad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/background_freecad.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_closed_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_closed_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_closed_darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_closed_darker.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_closed_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_closed_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_end.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_more.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_open_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_open_darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_open_darker.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_open_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/branch_vline.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/checkbox_indeterminate_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/checkbox_indeterminate_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/checkbox_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/checkbox_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/close_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/close_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/close_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/close_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_darker.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_disabled_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_disabled_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_disabled_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_disabled_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/down_arrow_lighter.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_darker.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_disabled_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_disabled_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_disabled_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_disabled_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/left_arrow_lighter.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/more_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/more_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/more_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/more_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/radiobutton_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/radiobutton_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_darker.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_disabled_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_disabled_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_disabled_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_disabled_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/right_arrow_lighter.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/sizegrip_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/sizegrip_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/sizegrip_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/sizegrip_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_horizontal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_horizontal_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_horizontal_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_horizontal_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_vertical_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_vertical_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_vertical_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/splitter_vertical_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/transparent.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/undock_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/undock_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/undock_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/undock_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_darker.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_disabled_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_disabled_dark.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_disabled_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_disabled_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_light.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images/up_arrow_lighter.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images_blender/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images_blender/Thumbs.db -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images_blender/horizontal_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images_blender/horizontal_line.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images_blender/vertical_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Blender/UserInterfaces/BlenderStyleSheet/images_blender/vertical_line.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/Pandora.json: -------------------------------------------------------------------------------- 1 | { 2 | "path" : "PANDORAROOT/Plugins/Apps/Houdini/Integration" 3 | } -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/config/Icons/pandoraRenderHandler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Integration/config/Icons/pandoraRenderHandler.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/config/Icons/pandoraSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Integration/config/Icons/pandoraSettings.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/config/Icons/pandoraSubmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Integration/config/Icons/pandoraSubmitter.png -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/python2.7libs/Pandora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Integration/python2.7libs/Pandora.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/python2.7libs/pythonrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Integration/python2.7libs/pythonrc.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Integration/toolbar/Pandora.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Integration/toolbar/Pandora.shelf -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_Integration.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_Variables.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_externalAccess_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_externalAccess_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_init.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_init_unloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Houdini/Scripts/Pandora_Houdini_init_unloaded.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Integration/PandoraInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Integration/PandoraInit.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Integration/shelf_Pandora.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Integration/shelf_Pandora.mel -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Integration/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Integration/userSetup.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_Integration.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_Variables.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_externalAccess_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_externalAccess_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_init.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_init_unloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Maya/Scripts/Pandora_Maya_init_unloaded.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_Variables.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_externalAccess_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_externalAccess_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_init.py -------------------------------------------------------------------------------- /Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_init_unloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Apps/Standalone/Scripts/Pandora_Standalone_init_unloaded.py -------------------------------------------------------------------------------- /Pandora/Plugins/Custom/PluginPreset/Scripts/Pandora_PluginPreset_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Custom/PluginPreset/Scripts/Pandora_PluginPreset_Functions.py -------------------------------------------------------------------------------- /Pandora/Plugins/Custom/PluginPreset/Scripts/Pandora_PluginPreset_Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Custom/PluginPreset/Scripts/Pandora_PluginPreset_Variables.py -------------------------------------------------------------------------------- /Pandora/Plugins/Custom/PluginPreset/Scripts/Pandora_PluginPreset_init_unloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Plugins/Custom/PluginPreset/Scripts/Pandora_PluginPreset_init_unloaded.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraCoordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraCoordinator.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraCore.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraInstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraInstaller.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraRenderHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraRenderHandler.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraSendEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraSendEmail.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraSettings.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraSlave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraSlave.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraSlaveAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraSlaveAssignment.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraStartHouJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraStartHouJob.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraSubmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraSubmitter.py -------------------------------------------------------------------------------- /Pandora/Scripts/PandoraTray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/PandoraTray.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/ConvertUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/ConvertUI.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/InstallList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/InstallList.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraInstaller.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraInstaller.ui -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraInstaller_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraInstaller_ui.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraInstaller_ui_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraInstaller_ui_ps2.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSettings.ui -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSettings_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSettings_ui.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSettings_ui_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSettings_ui_ps2.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSlaveAssignment.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSlaveAssignment.ui -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSlaveAssignment_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSlaveAssignment_ui.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSlaveAssignment_ui_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSlaveAssignment_ui_ps2.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSubmitter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSubmitter.ui -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSubmitter_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSubmitter_ui.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/PandoraSubmitter_ui_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/PandoraSubmitter_ui_ps2.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/RenderHandler.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/RenderHandler.ui -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/RenderHandler_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/RenderHandler_ui.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/RenderHandler_ui_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/RenderHandler_ui_ps2.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandoraRenderHandler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandoraRenderHandler.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandoraSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandoraSettings.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandoraSubmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandoraSubmitter.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandora_slave.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandora_slave.ico -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandora_slave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandora_slave.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandora_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandora_tray.ico -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/pandora_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/pandora_tray.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/__init__.py -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Hmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Hmovetoolbar.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Hsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Hsepartoolbar.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Thumbs.db -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Vmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Vmovetoolbar.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Vsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/Vsepartoolbar.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_closed-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_closed-on.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_closed.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_open-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_open-on.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/branch_open.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_checked.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_checked_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_checked_focus.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_indeterminate.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_indeterminate_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_indeterminate_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_indeterminate_focus.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_unchecked_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/checkbox_unchecked_focus.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/close-hover.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/close-pressed.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/close.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/down_arrow.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/down_arrow_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/left_arrow.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/left_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/left_arrow_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_checked.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_checked_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_checked_focus.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_unchecked.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_unchecked_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/radio_unchecked_focus.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/right_arrow.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/right_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/right_arrow_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/sizegrip.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/stylesheet-branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/stylesheet-branch-end.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/stylesheet-branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/stylesheet-branch-more.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/stylesheet-vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/stylesheet-vline.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/transparent.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/undock.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/up_arrow.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/rc/up_arrow_disabled.png -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/qdarkstyle/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/qdarkstyle/style.qss -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/rh_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/rh_tray.ico -------------------------------------------------------------------------------- /Pandora/Scripts/UserInterfacesPandora/rh_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Scripts/UserInterfacesPandora/rh_tray.png -------------------------------------------------------------------------------- /Pandora/Setup_Integrations.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Setup_Integrations.bat -------------------------------------------------------------------------------- /Pandora/Setup_Startmenu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Setup_Startmenu.bat -------------------------------------------------------------------------------- /Pandora/Uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora/Uninstall.bat -------------------------------------------------------------------------------- /Pandora_Setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/Pandora_Setup.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardFrangenberg/Pandora/HEAD/README.md --------------------------------------------------------------------------------