├── .editorconfig ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ ├── webpack.config.workers.js │ └── webpack.paths.ts ├── img │ ├── erb-banner.svg │ └── erb-logo.png ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ ├── link-modules.ts │ └── notarize.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .husky └── pre-commit ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── LICENSE ├── README.md ├── assets ├── assets.d.ts ├── defaultconfigs │ ├── Creality-LD-002H.json │ ├── Default Printer.json │ └── Voxelab Proxima 6.json ├── icon.png └── workers │ └── slice.worker.bundle.js ├── background ├── .vs │ ├── ProjectEvaluation │ │ ├── background.metadata.v5.1 │ │ └── background.projects.v5.1 │ └── background │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── FileContentIndex │ │ ├── 1d238fef-2a6b-4073-8c13-fcb61d70f54d.vsidx │ │ ├── f97bf906-e80b-430b-8c6f-451c07fcc905.vsidx │ │ └── read.lock │ │ └── v17 │ │ ├── .futdcache.v2 │ │ └── .suo ├── background.sln └── core │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── core.deps.json │ │ ├── core.dll │ │ ├── core.exe │ │ ├── core.pdb │ │ └── core.runtimeconfig.json │ ├── core.csproj │ └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── apphost.exe │ │ ├── core.AssemblyInfo.cs │ │ ├── core.AssemblyInfoInputs.cache │ │ ├── core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── core.GlobalUsings.g.cs │ │ ├── core.assets.cache │ │ ├── core.csproj.AssemblyReference.cache │ │ ├── core.csproj.BuildWithSkipAnalyzers │ │ ├── core.csproj.CoreCompileInputs.cache │ │ ├── core.csproj.FileListAbsolute.txt │ │ ├── core.dll │ │ ├── core.genruntimeconfig.cache │ │ ├── core.pdb │ │ ├── ref │ │ └── core.dll │ │ └── refint │ │ └── core.dll │ ├── core.csproj.nuget.dgspec.json │ ├── core.csproj.nuget.g.props │ ├── core.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ └── rider.project.restore.info ├── package.json ├── release └── app │ ├── .yarn │ └── install-state.gz │ ├── package.json │ └── yarn.lock ├── screenshots ├── alpha0.03 │ ├── img-1.png │ └── img-2.png ├── alpha0.04 │ ├── img-2023-02-11-19-41-26.png │ ├── img-2023-02-11-19-42-31.png │ ├── img-2023-02-11-23-23-23.png │ ├── img-2023-02-11-23-23-53.png │ ├── img-2023-02-11-23-24-23.png │ ├── img-2023-02-11-23-51-14.png │ └── img-2023-02-11-23-52-37.png ├── img-2023-02-05-01-07-09.png ├── img-2023-02-05-01-07-52.png ├── img-2023-02-05-01-08-27.png ├── img-2023-02-05-01-23-42.png ├── img-2023-02-07-20-45-20.png └── screen.png ├── src ├── main │ ├── main.ts │ ├── preload.ts │ └── util.ts ├── renderer │ ├── App.tsx │ ├── AppStore.ts │ ├── Configurator │ │ ├── AppAuto.tsx │ │ ├── AppManually.tsx │ │ └── Shared │ │ │ └── Edit.tsx │ ├── Main │ │ ├── Components │ │ │ ├── DragAndDrop │ │ │ │ └── App.tsx │ │ │ ├── Popups │ │ │ │ ├── PrinterEditor │ │ │ │ │ └── App.tsx │ │ │ │ └── SupportEditor │ │ │ │ │ └── App.tsx │ │ │ ├── Shared │ │ │ │ └── FlyModeDescriptionApp.tsx │ │ │ ├── Slice │ │ │ │ ├── SliceButton.tsx │ │ │ │ └── SliceSlider.tsx │ │ │ ├── ToolsLeft │ │ │ │ ├── App.tsx │ │ │ │ ├── Shared │ │ │ │ │ └── ToolButton.tsx │ │ │ │ └── Transform │ │ │ │ │ ├── App.tsx │ │ │ │ │ └── Store.ts │ │ │ ├── ToolsRight │ │ │ │ ├── App.tsx │ │ │ │ ├── ListObjects.tsx │ │ │ │ ├── PrinterPanel.tsx │ │ │ │ ├── Store.ts │ │ │ │ └── Supports │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── Shared │ │ │ │ │ ├── SupportsGen.tsx │ │ │ │ │ ├── SupportsRays.tsx │ │ │ │ │ ├── SupportsRemoveCircleApp.tsx │ │ │ │ │ ├── SupportsVoxelization.tsx │ │ │ │ │ └── ToolButton.tsx │ │ │ │ │ └── Store.tsx │ │ │ └── ViewChange │ │ │ │ ├── App.tsx │ │ │ │ ├── CameraType │ │ │ │ └── App.tsx │ │ │ │ └── LockLookAtCenter │ │ │ │ └── App.tsx │ │ ├── Console │ │ │ ├── App.tsx │ │ │ └── Store.ts │ │ ├── Printer │ │ │ └── Configs │ │ │ │ ├── Printer.ts │ │ │ │ ├── Resin.ts │ │ │ │ └── Support.ts │ │ └── Scene │ │ │ ├── App.tsx │ │ │ ├── Entities │ │ │ └── SceneObject.ts │ │ │ ├── SceneBase.ts │ │ │ ├── SceneInitializer.ts │ │ │ ├── Shared │ │ │ └── SceneHelpers.tsx │ │ │ └── Store.ts │ ├── Screen │ │ ├── Bottom │ │ │ └── App.tsx │ │ └── Header │ │ │ ├── App.tsx │ │ │ └── Store.ts │ ├── Shared │ │ ├── Config.ts │ │ ├── Events.ts │ │ ├── Globals.ts │ │ ├── Helpers │ │ │ ├── Array.ts │ │ │ ├── Enum.ts │ │ │ ├── OrientationHelper.js │ │ │ └── Three.ts │ │ ├── Image │ │ │ ├── uv128_v1.png │ │ │ ├── uv_v1_256.png │ │ │ └── uv_v1_512.png │ │ ├── Libs │ │ │ ├── Keys.ts │ │ │ ├── Listerners.ts │ │ │ ├── Restore.js │ │ │ ├── Slice │ │ │ │ ├── Job.tsx │ │ │ │ └── Workers.tsx │ │ │ ├── Tools.ts │ │ │ └── Types.ts │ │ ├── Styled │ │ │ ├── Animation.tsx │ │ │ ├── ButtonSetting.tsx │ │ │ ├── FlexBox.tsx │ │ │ ├── Sizes.tsx │ │ │ ├── Slider.tsx │ │ │ ├── StyledMenu.tsx │ │ │ └── SwitchAndroid.tsx │ │ └── Theme.ts │ ├── Slicing │ │ ├── App.tsx │ │ └── Store.tsx │ ├── index.ejs │ └── index.tsx └── workers │ └── slice.worker.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.editorconfig -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.config.workers.js -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | #npx lint-staged 5 | -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/defaultconfigs/Creality-LD-002H.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/assets/defaultconfigs/Creality-LD-002H.json -------------------------------------------------------------------------------- /assets/defaultconfigs/Default Printer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/assets/defaultconfigs/Default Printer.json -------------------------------------------------------------------------------- /assets/defaultconfigs/Voxelab Proxima 6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/assets/defaultconfigs/Voxelab Proxima 6.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/workers/slice.worker.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/assets/workers/slice.worker.bundle.js -------------------------------------------------------------------------------- /background/.vs/ProjectEvaluation/background.metadata.v5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/ProjectEvaluation/background.metadata.v5.1 -------------------------------------------------------------------------------- /background/.vs/ProjectEvaluation/background.projects.v5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/ProjectEvaluation/background.projects.v5.1 -------------------------------------------------------------------------------- /background/.vs/background/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/background/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /background/.vs/background/FileContentIndex/1d238fef-2a6b-4073-8c13-fcb61d70f54d.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/background/FileContentIndex/1d238fef-2a6b-4073-8c13-fcb61d70f54d.vsidx -------------------------------------------------------------------------------- /background/.vs/background/FileContentIndex/f97bf906-e80b-430b-8c6f-451c07fcc905.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/background/FileContentIndex/f97bf906-e80b-430b-8c6f-451c07fcc905.vsidx -------------------------------------------------------------------------------- /background/.vs/background/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /background/.vs/background/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/background/v17/.futdcache.v2 -------------------------------------------------------------------------------- /background/.vs/background/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/.vs/background/v17/.suo -------------------------------------------------------------------------------- /background/background.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/background.sln -------------------------------------------------------------------------------- /background/core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/Program.cs -------------------------------------------------------------------------------- /background/core/bin/Debug/net6.0/core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/bin/Debug/net6.0/core.deps.json -------------------------------------------------------------------------------- /background/core/bin/Debug/net6.0/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/bin/Debug/net6.0/core.dll -------------------------------------------------------------------------------- /background/core/bin/Debug/net6.0/core.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/bin/Debug/net6.0/core.exe -------------------------------------------------------------------------------- /background/core/bin/Debug/net6.0/core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/bin/Debug/net6.0/core.pdb -------------------------------------------------------------------------------- /background/core/bin/Debug/net6.0/core.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/bin/Debug/net6.0/core.runtimeconfig.json -------------------------------------------------------------------------------- /background/core/core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/core.csproj -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.AssemblyInfo.cs -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5fee9984074353d00f0d03f1d9670023eb564966 2 | -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.GlobalUsings.g.cs -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.assets.cache -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d13a84ee4c807518f290ca033393d298a2729e88 2 | -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.dll -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 37fe08601fc32ff655546b97bb7019b5fce8e3ea 2 | -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/core.pdb -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/ref/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/ref/core.dll -------------------------------------------------------------------------------- /background/core/obj/Debug/net6.0/refint/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/Debug/net6.0/refint/core.dll -------------------------------------------------------------------------------- /background/core/obj/core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /background/core/obj/core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/core.csproj.nuget.g.props -------------------------------------------------------------------------------- /background/core/obj/core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /background/core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/project.assets.json -------------------------------------------------------------------------------- /background/core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/project.nuget.cache -------------------------------------------------------------------------------- /background/core/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/background/core/obj/project.packagespec.json -------------------------------------------------------------------------------- /background/core/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16745600022088834 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/package.json -------------------------------------------------------------------------------- /release/app/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/release/app/.yarn/install-state.gz -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/release/app/package.json -------------------------------------------------------------------------------- /release/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/release/app/yarn.lock -------------------------------------------------------------------------------- /screenshots/alpha0.03/img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.03/img-1.png -------------------------------------------------------------------------------- /screenshots/alpha0.03/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.03/img-2.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-19-41-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-19-41-26.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-19-42-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-19-42-31.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-23-23-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-23-23-23.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-23-23-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-23-23-53.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-23-24-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-23-24-23.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-23-51-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-23-51-14.png -------------------------------------------------------------------------------- /screenshots/alpha0.04/img-2023-02-11-23-52-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/alpha0.04/img-2023-02-11-23-52-37.png -------------------------------------------------------------------------------- /screenshots/img-2023-02-05-01-07-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/img-2023-02-05-01-07-09.png -------------------------------------------------------------------------------- /screenshots/img-2023-02-05-01-07-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/img-2023-02-05-01-07-52.png -------------------------------------------------------------------------------- /screenshots/img-2023-02-05-01-08-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/img-2023-02-05-01-08-27.png -------------------------------------------------------------------------------- /screenshots/img-2023-02-05-01-23-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/img-2023-02-05-01-23-42.png -------------------------------------------------------------------------------- /screenshots/img-2023-02-07-20-45-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/img-2023-02-07-20-45-20.png -------------------------------------------------------------------------------- /screenshots/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/screenshots/screen.png -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/App.tsx -------------------------------------------------------------------------------- /src/renderer/AppStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/AppStore.ts -------------------------------------------------------------------------------- /src/renderer/Configurator/AppAuto.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Configurator/AppAuto.tsx -------------------------------------------------------------------------------- /src/renderer/Configurator/AppManually.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Configurator/AppManually.tsx -------------------------------------------------------------------------------- /src/renderer/Configurator/Shared/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Configurator/Shared/Edit.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/DragAndDrop/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/DragAndDrop/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/Popups/PrinterEditor/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/Popups/PrinterEditor/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/Popups/SupportEditor/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/Popups/SupportEditor/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/Shared/FlyModeDescriptionApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/Shared/FlyModeDescriptionApp.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/Slice/SliceButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/Slice/SliceButton.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/Slice/SliceSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/Slice/SliceSlider.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsLeft/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsLeft/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsLeft/Shared/ToolButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsLeft/Shared/ToolButton.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsLeft/Transform/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsLeft/Transform/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsLeft/Transform/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsLeft/Transform/Store.ts -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/ListObjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/ListObjects.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/PrinterPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/PrinterPanel.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Store.ts -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsGen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsGen.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsRays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsRays.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsRemoveCircleApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsRemoveCircleApp.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsVoxelization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/Shared/SupportsVoxelization.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/Shared/ToolButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/Shared/ToolButton.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ToolsRight/Supports/Store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ToolsRight/Supports/Store.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ViewChange/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ViewChange/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ViewChange/CameraType/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ViewChange/CameraType/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Components/ViewChange/LockLookAtCenter/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Components/ViewChange/LockLookAtCenter/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Console/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Console/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Console/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Console/Store.ts -------------------------------------------------------------------------------- /src/renderer/Main/Printer/Configs/Printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Printer/Configs/Printer.ts -------------------------------------------------------------------------------- /src/renderer/Main/Printer/Configs/Resin.ts: -------------------------------------------------------------------------------- 1 | export class Resin { 2 | exposureTime = 5.0; //sec 3 | } 4 | -------------------------------------------------------------------------------- /src/renderer/Main/Printer/Configs/Support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Printer/Configs/Support.ts -------------------------------------------------------------------------------- /src/renderer/Main/Scene/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Scene/App.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Scene/Entities/SceneObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Scene/Entities/SceneObject.ts -------------------------------------------------------------------------------- /src/renderer/Main/Scene/SceneBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Scene/SceneBase.ts -------------------------------------------------------------------------------- /src/renderer/Main/Scene/SceneInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Scene/SceneInitializer.ts -------------------------------------------------------------------------------- /src/renderer/Main/Scene/Shared/SceneHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Scene/Shared/SceneHelpers.tsx -------------------------------------------------------------------------------- /src/renderer/Main/Scene/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Main/Scene/Store.ts -------------------------------------------------------------------------------- /src/renderer/Screen/Bottom/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Screen/Bottom/App.tsx -------------------------------------------------------------------------------- /src/renderer/Screen/Header/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Screen/Header/App.tsx -------------------------------------------------------------------------------- /src/renderer/Screen/Header/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Screen/Header/Store.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Config.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Events.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Globals.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Helpers/Array.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/Shared/Helpers/Enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Helpers/Enum.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Helpers/OrientationHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Helpers/OrientationHelper.js -------------------------------------------------------------------------------- /src/renderer/Shared/Helpers/Three.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Helpers/Three.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Image/uv128_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Image/uv128_v1.png -------------------------------------------------------------------------------- /src/renderer/Shared/Image/uv_v1_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Image/uv_v1_256.png -------------------------------------------------------------------------------- /src/renderer/Shared/Image/uv_v1_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Image/uv_v1_512.png -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Keys.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Listerners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Listerners.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Restore.js -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Slice/Job.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Slice/Job.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Slice/Workers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Slice/Workers.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Tools.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Libs/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Libs/Types.ts -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/Animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/Animation.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/ButtonSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/ButtonSetting.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/FlexBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/FlexBox.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/Sizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/Sizes.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/Slider.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/StyledMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/StyledMenu.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Styled/SwitchAndroid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Styled/SwitchAndroid.tsx -------------------------------------------------------------------------------- /src/renderer/Shared/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Shared/Theme.ts -------------------------------------------------------------------------------- /src/renderer/Slicing/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Slicing/App.tsx -------------------------------------------------------------------------------- /src/renderer/Slicing/Store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/Slicing/Store.tsx -------------------------------------------------------------------------------- /src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/index.ejs -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/workers/slice.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/src/workers/slice.worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fariarx/ProtoUV/HEAD/yarn.lock --------------------------------------------------------------------------------