├── .gitignore ├── Developer ├── cleanGenerate.bat ├── cleanGenerate.command ├── detachFromCEPSparker.bat ├── detachFromCEPSparker.command ├── downloadZXPSignCmd.bat ├── downloadZXPSignCmd.command ├── makeSelfSignedCert.bat ├── makeSelfSignedCert.command ├── update_CRDT.bat └── update_CRDT.command ├── LICENSE ├── Mac ├── Do not forget to de-quarantine!.txt ├── ReadMe.md ├── SparkerConfig.app │ └── Contents │ │ ├── Frameworks │ │ ├── Crypto.dylib │ │ ├── InternetEncodings.dylib │ │ ├── MBS_Compression_Archive_Plugin_21067.dylib │ │ ├── MBS_Main_Registration_Plugin_21067.dylib │ │ ├── MBS_Util_JSON2_Plugin_21067.dylib │ │ ├── MBS_Util_UUID_Plugin_21067.dylib │ │ ├── RegEx.dylib │ │ ├── Shell.dylib │ │ ├── XojoFramework.framework │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── AllDirectionsCursor.pdf │ │ │ │ │ │ ├── ControllerBackgroundLeft.tiff │ │ │ │ │ │ ├── ControllerBackgroundMiddle.tiff │ │ │ │ │ │ ├── ControllerBackgroundRight.tiff │ │ │ │ │ │ ├── Cursors.plist │ │ │ │ │ │ ├── EastWestCursor.pdf │ │ │ │ │ │ ├── FileTypeChooser.nib │ │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── InvisibleCursor.png │ │ │ │ │ │ ├── MacWaitCursor.pdf │ │ │ │ │ │ ├── MagnifyLargerCursor.pdf │ │ │ │ │ │ ├── MagnifySmallerCursor.pdf │ │ │ │ │ │ ├── NorthEastSouthWestCursor.pdf │ │ │ │ │ │ ├── NorthSouthCursor.pdf │ │ │ │ │ │ ├── NorthWestSouthEastCursor.pdf │ │ │ │ │ │ ├── Pause.tiff │ │ │ │ │ │ ├── Play.tiff │ │ │ │ │ │ ├── ScrubberKnob.tiff │ │ │ │ │ │ ├── ScrubberTrackLoadedLeft.tiff │ │ │ │ │ │ ├── ScrubberTrackLoadedMiddle.tiff │ │ │ │ │ │ ├── ScrubberTrackLoadedRight.tiff │ │ │ │ │ │ ├── ScrubberTrackUnloadedLeft.tiff │ │ │ │ │ │ ├── ScrubberTrackUnloadedMiddle.tiff │ │ │ │ │ │ ├── ScrubberTrackUnloadedRight.tiff │ │ │ │ │ │ ├── StepBackward.tiff │ │ │ │ │ │ ├── StepForward.tiff │ │ │ │ │ │ ├── VolumeHigh.tiff │ │ │ │ │ │ ├── VolumeLow.tiff │ │ │ │ │ │ ├── VolumeMedium.tiff │ │ │ │ │ │ ├── VolumeMuted.tiff │ │ │ │ │ │ ├── VolumeOff.tiff │ │ │ │ │ │ ├── VolumeSliderKnob.tiff │ │ │ │ │ │ ├── VolumeSliderTrack.tiff │ │ │ │ │ │ ├── VolumeWindow.tiff │ │ │ │ │ │ ├── XOJPrintProgressDialog.nib │ │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ │ ├── XOJTooltipController.nib │ │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── pt-BR.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── pt-PT.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── zh-CN.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ └── zh-TW.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── XojoFramework │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── XojoFramework │ │ └── libGzip.dylib │ │ ├── Info.plist │ │ ├── MacOS │ │ └── SparkerConfig │ │ ├── PkgInfo │ │ └── _CodeSignature │ │ └── CodeResources ├── adjustVersionInManifest.command ├── clean.command ├── clearPlayerDebugMode.command ├── initialSetupConfigApp.command ├── localDebugInstall.command ├── postPackage.command ├── setPlayerDebugMode.command ├── setTarget.command ├── setupLocalLinks.command └── zxpBuild.command ├── ReadMe.md ├── Templates ├── $$~STARTERCODE$$~IFrameUIServer │ └── IFrameUIServer │ │ ├── root │ │ ├── 404.html │ │ └── panelUI.html │ │ └── server.js ├── $$~STARTERCODE$$~ImageBrowser │ └── SampleImageServer │ │ ├── includes │ │ ├── prefix.ihtml │ │ └── suffix.ihtml │ │ ├── root │ │ ├── 404.html │ │ └── images │ │ │ ├── 175-1.jpg │ │ │ └── DSC_0117.jpg │ │ └── server.js ├── BuildSettings │ ├── buildSettings.bat │ ├── buildSettings.command │ ├── certinfo.bat │ └── certinfo.command ├── CEP_html │ └── index.html ├── CEP_js │ ├── $$~CEPVERSION$$~10.0 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~11.0 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~4.2 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~5.2 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~6.1 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~7.0 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~8.0 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── $$~CEPVERSION$$~9.0 │ │ ├── CEPEngine_extensions.js │ │ └── CSInterface.js │ ├── Tests │ │ └── CEP_js.js │ ├── environment.js │ ├── init.js │ ├── pathutils.js │ ├── themeManager.js │ └── utils.js ├── CRDT_manifest.json ├── CSXS │ ├── $$~CEPVERSION$$~10.0 │ │ └── manifest.xml │ ├── $$~CEPVERSION$$~11.0 │ │ └── manifest.xml │ ├── $$~CEPVERSION$$~4.2 │ │ └── manifest.xml │ ├── $$~CEPVERSION$$~5.2 │ │ └── manifest.xml │ ├── $$~CEPVERSION$$~6.1 │ │ └── manifest.xml │ ├── $$~CEPVERSION$$~7.0 │ │ └── manifest.xml │ ├── $$~CEPVERSION$$~8.0 │ │ └── manifest.xml │ └── $$~CEPVERSION$$~9.0 │ │ └── manifest.xml ├── ProjectConfig.txt ├── VSCode │ └── $$DESPACED_TARGET_NAME$$.code-workspace ├── appMap.json ├── browser_js │ ├── Tests │ │ └── browser_js.js │ ├── environment.js │ ├── iFrameUI.js │ ├── init.js │ └── utils.js ├── css │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── jquery-ui.min.css │ ├── panel.css │ ├── topcoat-desktop-dark.css │ └── topcoat-desktop-light.css ├── debug ├── includes │ ├── hideNode.ihtml │ ├── iFrameUIClient.ihtml │ ├── iFrameUIClient.ijs │ ├── imageBrowser.ihtml │ ├── imageBrowser.ijs │ ├── loadBrowserCSS.ihtml │ ├── loadBrowserScripts.ihtml │ ├── loadCEPCSS.ihtml │ ├── loadCEPScripts.ihtml │ ├── restoreNode.ihtml │ ├── samplePanel.ihtml │ ├── scriptRunner.ihtml │ ├── scriptRunner_updateUI.ijs │ └── scriptRunner_wireUI.ijs ├── jsx │ ├── CreativeDeveloperTools_ES │ │ ├── ARM64 │ │ │ └── TightenerESDLL_ARM64R.dll │ │ ├── crdtes.jsx │ │ ├── crdtesDLLLoader.jsx │ │ ├── crdtes_test.jsx │ │ ├── mac64 │ │ │ └── TightenerESDLL_x64R.framework │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── TightenerESDLL_x64R │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── win32 │ │ │ └── TightenerESDLL_x32R.dll │ │ └── win64 │ │ │ └── TightenerESDLL_x64R.dll │ ├── JSInterface.jsx │ ├── Tests │ │ ├── jsx.jsx │ │ ├── sampleClass_Test.jsx │ │ └── standaloneInitDirs.jsx │ ├── hostscript.jsx │ ├── idUtils.jsx │ ├── imageBrowser.jsx │ ├── init.jsx │ ├── json2.jsx │ ├── manuallyClearGlobalsIDSN_ES_FromDebugger.jsx │ ├── manuallyPreloadIDSN_ES_EngineFromDebugger.jsx │ ├── pathUtils.jsx │ ├── runTests.jsx │ ├── sampleClass.jsx │ └── utils.jsx ├── node_js │ ├── Tests │ │ └── node_js.js │ ├── environment.js │ ├── init.js │ ├── pathUtils.js │ ├── runTests.js │ └── utils.js ├── node_modules │ ├── .package-lock.json │ ├── @types │ │ └── node │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assert.d.ts │ │ │ ├── assert │ │ │ └── strict.d.ts │ │ │ ├── async_hooks.d.ts │ │ │ ├── buffer.d.ts │ │ │ ├── child_process.d.ts │ │ │ ├── cluster.d.ts │ │ │ ├── console.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── crypto.d.ts │ │ │ ├── dgram.d.ts │ │ │ ├── diagnostics_channel.d.ts │ │ │ ├── dns.d.ts │ │ │ ├── dns │ │ │ └── promises.d.ts │ │ │ ├── dom-events.d.ts │ │ │ ├── domain.d.ts │ │ │ ├── events.d.ts │ │ │ ├── fs.d.ts │ │ │ ├── fs │ │ │ └── promises.d.ts │ │ │ ├── globals.d.ts │ │ │ ├── globals.global.d.ts │ │ │ ├── http.d.ts │ │ │ ├── http2.d.ts │ │ │ ├── https.d.ts │ │ │ ├── index.d.ts │ │ │ ├── inspector.d.ts │ │ │ ├── module.d.ts │ │ │ ├── net.d.ts │ │ │ ├── os.d.ts │ │ │ ├── package.json │ │ │ ├── path.d.ts │ │ │ ├── perf_hooks.d.ts │ │ │ ├── process.d.ts │ │ │ ├── punycode.d.ts │ │ │ ├── querystring.d.ts │ │ │ ├── readline.d.ts │ │ │ ├── readline │ │ │ └── promises.d.ts │ │ │ ├── repl.d.ts │ │ │ ├── sea.d.ts │ │ │ ├── stream.d.ts │ │ │ ├── stream │ │ │ ├── consumers.d.ts │ │ │ ├── promises.d.ts │ │ │ └── web.d.ts │ │ │ ├── string_decoder.d.ts │ │ │ ├── test.d.ts │ │ │ ├── timers.d.ts │ │ │ ├── timers │ │ │ └── promises.d.ts │ │ │ ├── tls.d.ts │ │ │ ├── trace_events.d.ts │ │ │ ├── tty.d.ts │ │ │ ├── url.d.ts │ │ │ ├── util.d.ts │ │ │ ├── v8.d.ts │ │ │ ├── vm.d.ts │ │ │ ├── wasi.d.ts │ │ │ ├── worker_threads.d.ts │ │ │ └── zlib.d.ts │ ├── geturl │ │ ├── index.js │ │ └── package.json │ ├── jsinterface │ │ ├── index.js │ │ ├── package.json │ │ └── plugins │ │ │ └── getURLPlugin.js │ ├── runtests │ │ ├── index.js │ │ └── package.json │ ├── types-for-adobe │ │ ├── AfterEffects │ │ │ ├── 10.5 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 11.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 12.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 13.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 13.1 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 13.2 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 13.6 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 13.8 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 14.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 14.2 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 15.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 16.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 16.1 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 17.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 17.1 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 18.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 22.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 22.3 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 22.6 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 23.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 8.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── 9.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── Animate │ │ │ ├── 13.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── 22.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── Audition │ │ │ ├── 2017 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 2018 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── 2015.2 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── Illustrator │ │ │ ├── 2022 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── 2015.3 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── InDesign │ │ │ ├── 2018 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 2021 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── 2015.3 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── Photoshop │ │ │ └── 2015.5 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── Premiere │ │ │ ├── 11.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 12.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 13.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── 14.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ │ └── 15.0 │ │ │ │ ├── index.d.ts │ │ │ │ └── tsconfig.json │ │ ├── README.md │ │ ├── package.json │ │ └── shared │ │ │ ├── JavaScript.d.ts │ │ │ ├── PlugPlugExternalObject.d.ts │ │ │ ├── ScriptUI.d.ts │ │ │ ├── XMPScript.d.ts │ │ │ ├── global.d.ts │ │ │ └── tsconfig.json │ └── undici-types │ │ ├── README.md │ │ ├── agent.d.ts │ │ ├── api.d.ts │ │ ├── balanced-pool.d.ts │ │ ├── cache.d.ts │ │ ├── client.d.ts │ │ ├── connector.d.ts │ │ ├── content-type.d.ts │ │ ├── cookies.d.ts │ │ ├── diagnostics-channel.d.ts │ │ ├── dispatcher.d.ts │ │ ├── errors.d.ts │ │ ├── fetch.d.ts │ │ ├── file.d.ts │ │ ├── filereader.d.ts │ │ ├── formdata.d.ts │ │ ├── global-dispatcher.d.ts │ │ ├── global-origin.d.ts │ │ ├── handlers.d.ts │ │ ├── header.d.ts │ │ ├── index.d.ts │ │ ├── interceptors.d.ts │ │ ├── mock-agent.d.ts │ │ ├── mock-client.d.ts │ │ ├── mock-errors.d.ts │ │ ├── mock-interceptor.d.ts │ │ ├── mock-pool.d.ts │ │ ├── package.json │ │ ├── patch.d.ts │ │ ├── pool-stats.d.ts │ │ ├── pool.d.ts │ │ ├── proxy-agent.d.ts │ │ ├── readable.d.ts │ │ ├── webidl.d.ts │ │ └── websocket.d.ts ├── package.json ├── shared_js │ ├── Tests │ │ └── shared_js.js │ ├── bootstrap │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── cryptoUtils.js │ ├── defaults.js │ ├── iFrame.js │ ├── init.js │ ├── jQuery │ │ ├── jquery-3.7.0.min.js │ │ └── jquery-ui.min.js │ ├── pathUtils.js │ ├── promiscuous │ │ └── promiscuous-browser.js │ ├── themeManager.js │ └── utils.js ├── shared_js_jsx │ ├── Tests │ │ ├── shared_js_jsx.js │ │ └── utils_Test.js │ ├── defaults.js │ ├── fnv32.js │ ├── globals.js │ ├── init.js │ ├── pathUtils.js │ ├── protectedObject.js │ ├── sampleClass.js │ ├── sampleDerivedClass.js │ ├── tests.js │ ├── tweakableSettings.js │ └── utils.js └── tsconfig.json ├── ToolSources ├── bootstrap-3.3.7.zip ├── jquery-3.7.0.js.zip ├── jquery-ui-1.13.2.zip └── promiscuous-master.zip └── Windows ├── Run CMD with administrative permissions!.txt ├── ReadMe.md ├── SparkerConfig Libs ├── Crypto.dll ├── GZip.dll ├── Internet Encodings.dll ├── MBS_Compression_Archive_Plugin_21067.dll ├── MBS_Main_Registration_Plugin_21067.dll ├── MBS_Util_JSON2_Plugin_21067.dll ├── MBS_Util_UUID_Plugin_21067.dll ├── RegEx.dll ├── XojoGUIFramework32.dll ├── icudt73.dll ├── icuin73.dll ├── icuuc73.dll ├── msvcp140.dll ├── vccorlib140.dll └── vcruntime140.dll ├── SparkerConfig.exe ├── adjustVersionInManifest.bat ├── clean.bat ├── clearPlayerDebugMode.bat ├── localDebugInstall.bat ├── postPackage.bat ├── setPlayerDebugMode.bat ├── setTarget.bat ├── setupLocalLinks.bat ├── shortPath.bat ├── sudo.bat └── zxpBuild.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/.gitignore -------------------------------------------------------------------------------- /Developer/cleanGenerate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/cleanGenerate.bat -------------------------------------------------------------------------------- /Developer/cleanGenerate.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/cleanGenerate.command -------------------------------------------------------------------------------- /Developer/detachFromCEPSparker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/detachFromCEPSparker.bat -------------------------------------------------------------------------------- /Developer/detachFromCEPSparker.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/detachFromCEPSparker.command -------------------------------------------------------------------------------- /Developer/downloadZXPSignCmd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/downloadZXPSignCmd.bat -------------------------------------------------------------------------------- /Developer/downloadZXPSignCmd.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/downloadZXPSignCmd.command -------------------------------------------------------------------------------- /Developer/makeSelfSignedCert.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/makeSelfSignedCert.bat -------------------------------------------------------------------------------- /Developer/makeSelfSignedCert.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/makeSelfSignedCert.command -------------------------------------------------------------------------------- /Developer/update_CRDT.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/update_CRDT.bat -------------------------------------------------------------------------------- /Developer/update_CRDT.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Developer/update_CRDT.command -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/LICENSE -------------------------------------------------------------------------------- /Mac/ Do not forget to de-quarantine!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/ Do not forget to de-quarantine!.txt -------------------------------------------------------------------------------- /Mac/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/ReadMe.md -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/Crypto.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/Crypto.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/InternetEncodings.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/InternetEncodings.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/MBS_Compression_Archive_Plugin_21067.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/MBS_Compression_Archive_Plugin_21067.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/MBS_Main_Registration_Plugin_21067.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/MBS_Main_Registration_Plugin_21067.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/MBS_Util_JSON2_Plugin_21067.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/MBS_Util_JSON2_Plugin_21067.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/MBS_Util_UUID_Plugin_21067.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/MBS_Util_UUID_Plugin_21067.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/RegEx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/RegEx.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/Shell.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/Shell.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/AllDirectionsCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/AllDirectionsCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ControllerBackgroundLeft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ControllerBackgroundLeft.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ControllerBackgroundMiddle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ControllerBackgroundMiddle.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ControllerBackgroundRight.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ControllerBackgroundRight.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Cursors.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Cursors.plist -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/EastWestCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/EastWestCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/FileTypeChooser.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/FileTypeChooser.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/FileTypeChooser.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/FileTypeChooser.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/InvisibleCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/InvisibleCursor.png -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/MacWaitCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/MacWaitCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/MagnifyLargerCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/MagnifyLargerCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/MagnifySmallerCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/MagnifySmallerCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/NorthEastSouthWestCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/NorthEastSouthWestCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/NorthSouthCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/NorthSouthCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/NorthWestSouthEastCursor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/NorthWestSouthEastCursor.pdf -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Pause.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Pause.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Play.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/Play.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberKnob.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberKnob.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackLoadedLeft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackLoadedLeft.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackLoadedMiddle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackLoadedMiddle.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackLoadedRight.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackLoadedRight.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackUnloadedLeft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackUnloadedLeft.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackUnloadedMiddle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackUnloadedMiddle.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackUnloadedRight.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ScrubberTrackUnloadedRight.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/StepBackward.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/StepBackward.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/StepForward.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/StepForward.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeHigh.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeHigh.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeLow.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeLow.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeMedium.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeMedium.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeMuted.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeMuted.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeOff.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeOff.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeSliderKnob.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeSliderKnob.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeSliderTrack.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeSliderTrack.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeWindow.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/VolumeWindow.tiff -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJPrintProgressDialog.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJPrintProgressDialog.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJPrintProgressDialog.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJPrintProgressDialog.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJTooltipController.nib/keyedobjects-101300.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJTooltipController.nib/keyedobjects-101300.nib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJTooltipController.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/XOJTooltipController.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/zh-CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/zh-CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/zh-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/Resources/zh-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/XojoFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/XojoFramework -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/XojoFramework.framework/XojoFramework: -------------------------------------------------------------------------------- 1 | Versions/Current/XojoFramework -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Frameworks/libGzip.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Frameworks/libGzip.dylib -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/Info.plist -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/MacOS/SparkerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/MacOS/SparkerConfig -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Mac/SparkerConfig.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/SparkerConfig.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Mac/adjustVersionInManifest.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/adjustVersionInManifest.command -------------------------------------------------------------------------------- /Mac/clean.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/clean.command -------------------------------------------------------------------------------- /Mac/clearPlayerDebugMode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/clearPlayerDebugMode.command -------------------------------------------------------------------------------- /Mac/initialSetupConfigApp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/initialSetupConfigApp.command -------------------------------------------------------------------------------- /Mac/localDebugInstall.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/localDebugInstall.command -------------------------------------------------------------------------------- /Mac/postPackage.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/postPackage.command -------------------------------------------------------------------------------- /Mac/setPlayerDebugMode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/setPlayerDebugMode.command -------------------------------------------------------------------------------- /Mac/setTarget.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/setTarget.command -------------------------------------------------------------------------------- /Mac/setupLocalLinks.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/setupLocalLinks.command -------------------------------------------------------------------------------- /Mac/zxpBuild.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Mac/zxpBuild.command -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~IFrameUIServer/IFrameUIServer/root/404.html: -------------------------------------------------------------------------------- 1 | Not Found 2 | -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~IFrameUIServer/IFrameUIServer/root/panelUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/$$~STARTERCODE$$~IFrameUIServer/IFrameUIServer/root/panelUI.html -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~IFrameUIServer/IFrameUIServer/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/$$~STARTERCODE$$~IFrameUIServer/IFrameUIServer/server.js -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/includes/prefix.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/includes/prefix.ihtml -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/includes/suffix.ihtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/root/404.html: -------------------------------------------------------------------------------- 1 | Not Found 2 | -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/root/images/175-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/root/images/175-1.jpg -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/root/images/DSC_0117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/root/images/DSC_0117.jpg -------------------------------------------------------------------------------- /Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/$$~STARTERCODE$$~ImageBrowser/SampleImageServer/server.js -------------------------------------------------------------------------------- /Templates/BuildSettings/buildSettings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/BuildSettings/buildSettings.bat -------------------------------------------------------------------------------- /Templates/BuildSettings/buildSettings.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/BuildSettings/buildSettings.command -------------------------------------------------------------------------------- /Templates/BuildSettings/certinfo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/BuildSettings/certinfo.bat -------------------------------------------------------------------------------- /Templates/BuildSettings/certinfo.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/BuildSettings/certinfo.command -------------------------------------------------------------------------------- /Templates/CEP_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_html/index.html -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~10.0/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~10.0/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~10.0/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~10.0/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~11.0/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~11.0/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~11.0/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~11.0/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~4.2/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~4.2/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~4.2/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~4.2/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~5.2/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~5.2/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~5.2/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~5.2/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~6.1/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~6.1/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~6.1/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~6.1/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~7.0/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~7.0/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~7.0/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~7.0/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~8.0/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~8.0/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~8.0/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~8.0/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~9.0/CEPEngine_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~9.0/CEPEngine_extensions.js -------------------------------------------------------------------------------- /Templates/CEP_js/$$~CEPVERSION$$~9.0/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/$$~CEPVERSION$$~9.0/CSInterface.js -------------------------------------------------------------------------------- /Templates/CEP_js/Tests/CEP_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/Tests/CEP_js.js -------------------------------------------------------------------------------- /Templates/CEP_js/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/environment.js -------------------------------------------------------------------------------- /Templates/CEP_js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/init.js -------------------------------------------------------------------------------- /Templates/CEP_js/pathutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/pathutils.js -------------------------------------------------------------------------------- /Templates/CEP_js/themeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/themeManager.js -------------------------------------------------------------------------------- /Templates/CEP_js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CEP_js/utils.js -------------------------------------------------------------------------------- /Templates/CRDT_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CRDT_manifest.json -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~10.0/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~10.0/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~11.0/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~11.0/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~4.2/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~4.2/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~5.2/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~5.2/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~6.1/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~6.1/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~7.0/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~7.0/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~8.0/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~8.0/manifest.xml -------------------------------------------------------------------------------- /Templates/CSXS/$$~CEPVERSION$$~9.0/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/CSXS/$$~CEPVERSION$$~9.0/manifest.xml -------------------------------------------------------------------------------- /Templates/ProjectConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/ProjectConfig.txt -------------------------------------------------------------------------------- /Templates/VSCode/$$DESPACED_TARGET_NAME$$.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/VSCode/$$DESPACED_TARGET_NAME$$.code-workspace -------------------------------------------------------------------------------- /Templates/appMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/appMap.json -------------------------------------------------------------------------------- /Templates/browser_js/Tests/browser_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/browser_js/Tests/browser_js.js -------------------------------------------------------------------------------- /Templates/browser_js/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/browser_js/environment.js -------------------------------------------------------------------------------- /Templates/browser_js/iFrameUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/browser_js/iFrameUI.js -------------------------------------------------------------------------------- /Templates/browser_js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/browser_js/init.js -------------------------------------------------------------------------------- /Templates/browser_js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/browser_js/utils.js -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Templates/css/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Templates/css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Templates/css/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Templates/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Templates/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Templates/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Templates/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/jquery-ui.min.css -------------------------------------------------------------------------------- /Templates/css/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/panel.css -------------------------------------------------------------------------------- /Templates/css/topcoat-desktop-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/topcoat-desktop-dark.css -------------------------------------------------------------------------------- /Templates/css/topcoat-desktop-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/css/topcoat-desktop-light.css -------------------------------------------------------------------------------- /Templates/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/debug -------------------------------------------------------------------------------- /Templates/includes/hideNode.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/hideNode.ihtml -------------------------------------------------------------------------------- /Templates/includes/iFrameUIClient.ihtml: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /Templates/includes/iFrameUIClient.ijs: -------------------------------------------------------------------------------- 1 | $$SHORTCODE$$.setupIFrameInCEPPanel(); 2 | -------------------------------------------------------------------------------- /Templates/includes/imageBrowser.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/imageBrowser.ihtml -------------------------------------------------------------------------------- /Templates/includes/imageBrowser.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/imageBrowser.ijs -------------------------------------------------------------------------------- /Templates/includes/loadBrowserCSS.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/loadBrowserCSS.ihtml -------------------------------------------------------------------------------- /Templates/includes/loadBrowserScripts.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/loadBrowserScripts.ihtml -------------------------------------------------------------------------------- /Templates/includes/loadCEPCSS.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/loadCEPCSS.ihtml -------------------------------------------------------------------------------- /Templates/includes/loadCEPScripts.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/loadCEPScripts.ihtml -------------------------------------------------------------------------------- /Templates/includes/restoreNode.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/restoreNode.ihtml -------------------------------------------------------------------------------- /Templates/includes/samplePanel.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/samplePanel.ihtml -------------------------------------------------------------------------------- /Templates/includes/scriptRunner.ihtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/scriptRunner.ihtml -------------------------------------------------------------------------------- /Templates/includes/scriptRunner_updateUI.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/scriptRunner_updateUI.ijs -------------------------------------------------------------------------------- /Templates/includes/scriptRunner_wireUI.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/includes/scriptRunner_wireUI.ijs -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/ARM64/TightenerESDLL_ARM64R.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/ARM64/TightenerESDLL_ARM64R.dll -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/crdtes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/crdtes.jsx -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/crdtesDLLLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/crdtesDLLLoader.jsx -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/crdtes_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/crdtes_test.jsx -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/mac64/TightenerESDLL_x64R.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/mac64/TightenerESDLL_x64R.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/mac64/TightenerESDLL_x64R.framework/TightenerESDLL_x64R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/mac64/TightenerESDLL_x64R.framework/TightenerESDLL_x64R -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/mac64/TightenerESDLL_x64R.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/mac64/TightenerESDLL_x64R.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/win32/TightenerESDLL_x32R.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/win32/TightenerESDLL_x32R.dll -------------------------------------------------------------------------------- /Templates/jsx/CreativeDeveloperTools_ES/win64/TightenerESDLL_x64R.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/CreativeDeveloperTools_ES/win64/TightenerESDLL_x64R.dll -------------------------------------------------------------------------------- /Templates/jsx/JSInterface.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/JSInterface.jsx -------------------------------------------------------------------------------- /Templates/jsx/Tests/jsx.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/Tests/jsx.jsx -------------------------------------------------------------------------------- /Templates/jsx/Tests/sampleClass_Test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/Tests/sampleClass_Test.jsx -------------------------------------------------------------------------------- /Templates/jsx/Tests/standaloneInitDirs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/Tests/standaloneInitDirs.jsx -------------------------------------------------------------------------------- /Templates/jsx/hostscript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/hostscript.jsx -------------------------------------------------------------------------------- /Templates/jsx/idUtils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/idUtils.jsx -------------------------------------------------------------------------------- /Templates/jsx/imageBrowser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/imageBrowser.jsx -------------------------------------------------------------------------------- /Templates/jsx/init.jsx: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Templates/jsx/json2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/json2.jsx -------------------------------------------------------------------------------- /Templates/jsx/manuallyClearGlobalsIDSN_ES_FromDebugger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/manuallyClearGlobalsIDSN_ES_FromDebugger.jsx -------------------------------------------------------------------------------- /Templates/jsx/manuallyPreloadIDSN_ES_EngineFromDebugger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/manuallyPreloadIDSN_ES_EngineFromDebugger.jsx -------------------------------------------------------------------------------- /Templates/jsx/pathUtils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/pathUtils.jsx -------------------------------------------------------------------------------- /Templates/jsx/runTests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/runTests.jsx -------------------------------------------------------------------------------- /Templates/jsx/sampleClass.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/sampleClass.jsx -------------------------------------------------------------------------------- /Templates/jsx/utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/jsx/utils.jsx -------------------------------------------------------------------------------- /Templates/node_js/Tests/node_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_js/Tests/node_js.js -------------------------------------------------------------------------------- /Templates/node_js/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_js/environment.js -------------------------------------------------------------------------------- /Templates/node_js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_js/init.js -------------------------------------------------------------------------------- /Templates/node_js/pathUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_js/pathUtils.js -------------------------------------------------------------------------------- /Templates/node_js/runTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_js/runTests.js -------------------------------------------------------------------------------- /Templates/node_js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_js/utils.js -------------------------------------------------------------------------------- /Templates/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/.package-lock.json -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/LICENSE -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/README.md -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/assert.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/assert.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/assert/strict.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/assert/strict.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/async_hooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/async_hooks.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/buffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/buffer.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/child_process.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/child_process.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/cluster.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/cluster.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/console.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/console.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/constants.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/crypto.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/crypto.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/dgram.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/dgram.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/diagnostics_channel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/diagnostics_channel.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/dns.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/dns.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/dns/promises.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/dns/promises.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/dom-events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/dom-events.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/domain.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/domain.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/events.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/fs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/fs.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/fs/promises.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/fs/promises.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/globals.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/globals.global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/globals.global.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/http.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/http.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/http2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/http2.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/https.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/https.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/inspector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/inspector.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/module.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/net.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/net.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/os.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/os.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/package.json -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/path.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/perf_hooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/perf_hooks.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/process.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/process.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/punycode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/punycode.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/querystring.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/querystring.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/readline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/readline.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/readline/promises.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/readline/promises.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/repl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/repl.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/sea.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/sea.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/stream.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/stream/consumers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/stream/consumers.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/stream/promises.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/stream/promises.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/stream/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/stream/web.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/string_decoder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/string_decoder.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/test.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/test.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/timers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/timers.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/timers/promises.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/timers/promises.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/tls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/tls.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/trace_events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/trace_events.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/tty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/tty.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/url.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/url.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/util.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/v8.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/v8.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/vm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/vm.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/wasi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/wasi.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/worker_threads.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/worker_threads.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/@types/node/zlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/@types/node/zlib.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/geturl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/geturl/index.js -------------------------------------------------------------------------------- /Templates/node_modules/geturl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/geturl/package.json -------------------------------------------------------------------------------- /Templates/node_modules/jsinterface/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/jsinterface/index.js -------------------------------------------------------------------------------- /Templates/node_modules/jsinterface/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/jsinterface/package.json -------------------------------------------------------------------------------- /Templates/node_modules/jsinterface/plugins/getURLPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/jsinterface/plugins/getURLPlugin.js -------------------------------------------------------------------------------- /Templates/node_modules/runtests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/runtests/index.js -------------------------------------------------------------------------------- /Templates/node_modules/runtests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/runtests/package.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/10.5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/10.5/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/10.5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/10.5/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/11.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/11.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/11.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/11.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/12.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/12.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/12.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/12.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.1/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.1/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.2/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.2/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.6/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.6/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.6/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.8/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.8/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/13.8/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/13.8/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/14.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/14.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/14.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/14.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/14.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/14.2/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/14.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/14.2/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/15.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/15.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/15.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/15.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/16.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/16.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/16.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/16.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/16.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/16.1/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/16.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/16.1/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/17.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/17.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/17.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/17.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/17.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/17.1/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/17.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/17.1/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/18.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/18.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/18.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/18.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/22.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/22.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/22.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/22.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/22.3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/22.3/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/22.3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/22.3/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/22.6/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/22.6/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/22.6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/22.6/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/23.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/23.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/23.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/23.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/8.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/8.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/8.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/8.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/9.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/9.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/AfterEffects/9.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/AfterEffects/9.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Animate/13.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Animate/13.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Animate/13.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Animate/13.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Animate/22.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Animate/22.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Animate/22.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Animate/22.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Audition/2015.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Audition/2015.2/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Audition/2015.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Audition/2015.2/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Audition/2017/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Audition/2017/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Audition/2017/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Audition/2017/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Audition/2018/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Audition/2018/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Audition/2018/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Audition/2018/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Illustrator/2015.3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Illustrator/2015.3/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Illustrator/2015.3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Illustrator/2015.3/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Illustrator/2022/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Illustrator/2022/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Illustrator/2022/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Illustrator/2022/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/InDesign/2015.3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/InDesign/2015.3/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/InDesign/2015.3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/InDesign/2015.3/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/InDesign/2018/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/InDesign/2018/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/InDesign/2018/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/InDesign/2018/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/InDesign/2021/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/InDesign/2021/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/InDesign/2021/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/InDesign/2021/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Photoshop/2015.5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Photoshop/2015.5/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Photoshop/2015.5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Photoshop/2015.5/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/11.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/11.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/11.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/11.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/12.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/12.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/12.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/12.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/13.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/13.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/13.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/13.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/14.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/14.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/14.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/14.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/15.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/15.0/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/Premiere/15.0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/Premiere/15.0/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/README.md -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/package.json -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/shared/JavaScript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/shared/JavaScript.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/shared/PlugPlugExternalObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/shared/PlugPlugExternalObject.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/shared/ScriptUI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/shared/ScriptUI.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/shared/XMPScript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/shared/XMPScript.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/shared/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/shared/global.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/types-for-adobe/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/types-for-adobe/shared/tsconfig.json -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/README.md -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/agent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/agent.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/api.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/balanced-pool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/balanced-pool.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/cache.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/cache.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/client.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/connector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/connector.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/content-type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/content-type.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/cookies.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/cookies.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/diagnostics-channel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/diagnostics-channel.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/dispatcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/dispatcher.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/errors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/errors.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/fetch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/fetch.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/file.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/file.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/filereader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/filereader.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/formdata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/formdata.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/global-dispatcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/global-dispatcher.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/global-origin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/global-origin.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/handlers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/handlers.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/header.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/header.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/index.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/interceptors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/interceptors.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/mock-agent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/mock-agent.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/mock-client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/mock-client.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/mock-errors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/mock-errors.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/mock-interceptor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/mock-interceptor.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/mock-pool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/mock-pool.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/package.json -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/patch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/patch.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/pool-stats.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/pool-stats.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/pool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/pool.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/proxy-agent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/proxy-agent.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/readable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/readable.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/webidl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/webidl.d.ts -------------------------------------------------------------------------------- /Templates/node_modules/undici-types/websocket.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/node_modules/undici-types/websocket.d.ts -------------------------------------------------------------------------------- /Templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/package.json -------------------------------------------------------------------------------- /Templates/shared_js/Tests/shared_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/Tests/shared_js.js -------------------------------------------------------------------------------- /Templates/shared_js/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Templates/shared_js/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Templates/shared_js/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/bootstrap/js/npm.js -------------------------------------------------------------------------------- /Templates/shared_js/cryptoUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/cryptoUtils.js -------------------------------------------------------------------------------- /Templates/shared_js/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/defaults.js -------------------------------------------------------------------------------- /Templates/shared_js/iFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/iFrame.js -------------------------------------------------------------------------------- /Templates/shared_js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/init.js -------------------------------------------------------------------------------- /Templates/shared_js/jQuery/jquery-3.7.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/jQuery/jquery-3.7.0.min.js -------------------------------------------------------------------------------- /Templates/shared_js/jQuery/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/jQuery/jquery-ui.min.js -------------------------------------------------------------------------------- /Templates/shared_js/pathUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/pathUtils.js -------------------------------------------------------------------------------- /Templates/shared_js/promiscuous/promiscuous-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/promiscuous/promiscuous-browser.js -------------------------------------------------------------------------------- /Templates/shared_js/themeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/themeManager.js -------------------------------------------------------------------------------- /Templates/shared_js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js/utils.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/Tests/shared_js_jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/Tests/shared_js_jsx.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/Tests/utils_Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/Tests/utils_Test.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/defaults.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/fnv32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/fnv32.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/globals.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/init.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/pathUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/pathUtils.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/protectedObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/protectedObject.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/sampleClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/sampleClass.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/sampleDerivedClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/sampleDerivedClass.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/tests.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/tweakableSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/tweakableSettings.js -------------------------------------------------------------------------------- /Templates/shared_js_jsx/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/shared_js_jsx/utils.js -------------------------------------------------------------------------------- /Templates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Templates/tsconfig.json -------------------------------------------------------------------------------- /ToolSources/bootstrap-3.3.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/ToolSources/bootstrap-3.3.7.zip -------------------------------------------------------------------------------- /ToolSources/jquery-3.7.0.js.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/ToolSources/jquery-3.7.0.js.zip -------------------------------------------------------------------------------- /ToolSources/jquery-ui-1.13.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/ToolSources/jquery-ui-1.13.2.zip -------------------------------------------------------------------------------- /ToolSources/promiscuous-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/ToolSources/promiscuous-master.zip -------------------------------------------------------------------------------- /Windows/ Run CMD with administrative permissions!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/ Run CMD with administrative permissions!.txt -------------------------------------------------------------------------------- /Windows/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/ReadMe.md -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/Crypto.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/GZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/GZip.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/Internet Encodings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/Internet Encodings.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/MBS_Compression_Archive_Plugin_21067.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/MBS_Compression_Archive_Plugin_21067.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/MBS_Main_Registration_Plugin_21067.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/MBS_Main_Registration_Plugin_21067.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/MBS_Util_JSON2_Plugin_21067.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/MBS_Util_JSON2_Plugin_21067.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/MBS_Util_UUID_Plugin_21067.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/MBS_Util_UUID_Plugin_21067.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/RegEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/RegEx.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/XojoGUIFramework32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/XojoGUIFramework32.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/icudt73.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/icudt73.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/icuin73.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/icuin73.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/icuuc73.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/icuuc73.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/msvcp140.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/vccorlib140.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig Libs/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig Libs/vcruntime140.dll -------------------------------------------------------------------------------- /Windows/SparkerConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/SparkerConfig.exe -------------------------------------------------------------------------------- /Windows/adjustVersionInManifest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/adjustVersionInManifest.bat -------------------------------------------------------------------------------- /Windows/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/clean.bat -------------------------------------------------------------------------------- /Windows/clearPlayerDebugMode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/clearPlayerDebugMode.bat -------------------------------------------------------------------------------- /Windows/localDebugInstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/localDebugInstall.bat -------------------------------------------------------------------------------- /Windows/postPackage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/postPackage.bat -------------------------------------------------------------------------------- /Windows/setPlayerDebugMode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/setPlayerDebugMode.bat -------------------------------------------------------------------------------- /Windows/setTarget.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/setTarget.bat -------------------------------------------------------------------------------- /Windows/setupLocalLinks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/setupLocalLinks.bat -------------------------------------------------------------------------------- /Windows/shortPath.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/shortPath.bat -------------------------------------------------------------------------------- /Windows/sudo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/sudo.bat -------------------------------------------------------------------------------- /Windows/zxpBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwettemaan/CEPSparker/HEAD/Windows/zxpBuild.bat --------------------------------------------------------------------------------