├── .dockerignore ├── .env.example ├── .env.production ├── .env.unraid ├── .github ├── copilot-instructions.md └── workflows │ ├── docker-publish.yml │ └── release.yml ├── .gitignore ├── .releaserc.json ├── .versionrc.json ├── .vscode └── tasks.json ├── BACKUP-RESTORE.md ├── CHANGELOG.md ├── DOCKER-DEPLOYMENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── RELEASE.md ├── UNRAID.md ├── copy-models-to-build.js ├── docker-compose.yml ├── index.html ├── package.json ├── public └── images │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── demo.gif │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── munchie-front.png │ ├── munchie-side.png │ └── placeholder.svg ├── scripts └── release.js ├── server-utils └── genaiAdapter.js ├── server.js ├── src ├── App.tsx ├── Attributions.md ├── components │ ├── BulkEditDrawer.tsx │ ├── CollectionCard.tsx │ ├── CollectionEditDrawer.tsx │ ├── CollectionGrid.tsx │ ├── CollectionListRow.tsx │ ├── DemoPage.tsx │ ├── DonationDialog.tsx │ ├── ErrorBoundary.tsx │ ├── FilterSidebar.tsx │ ├── ImageWithFallback.tsx │ ├── ModelCard.tsx │ ├── ModelDetailsDrawer.tsx │ ├── ModelGrid.tsx │ ├── ModelMesh.tsx │ ├── ModelUploadDialog.tsx │ ├── ModelViewer3D.tsx │ ├── SelectionModeControls.tsx │ ├── SettingsPage.tsx │ ├── SharedModelScene.tsx │ ├── TagsContext.tsx │ ├── TagsInput.tsx │ ├── ThemeProvider.tsx │ ├── ThemeToggle.tsx │ ├── settings │ │ └── ExperimentalTab.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ ├── use-mobile.ts │ │ └── utils.ts ├── config │ └── default-config.json ├── constants │ ├── labels.ts │ └── licenses.ts ├── main.tsx ├── styles │ └── globals.css ├── tests │ ├── download.test.tsx │ └── utils.test.ts ├── types │ ├── category.ts │ ├── collection.ts │ ├── config.ts │ └── model.ts └── utils │ ├── clientUtils.ts │ ├── configManager.ts │ ├── downloadUtils.ts │ ├── fileManager.ts │ ├── filterUtils.ts │ ├── gcodeParser.ts │ ├── imageUtils.ts │ ├── labels.ts │ ├── munchiePath.ts │ ├── rendererPool.ts │ ├── rendererPool.tsx │ ├── sortUtils.ts │ ├── threeJSManager.ts │ ├── threeMFToJson.ts │ ├── thumbnailUtils.ts │ └── useSafeThreeMFLoader.ts ├── tests ├── ModelGrid.test.tsx ├── components │ ├── CollectionCard.test.tsx │ ├── CollectionEditDrawer.test.tsx │ ├── FilterSidebar.collectionsOption.test.tsx │ ├── ModelGrid.createCollection.test.tsx │ ├── ModelUploadDialog.test.tsx │ ├── SelectionModeControls.test.tsx │ └── TagsInput.test.tsx ├── configManager.test.ts ├── filterSidebar.test.tsx ├── fixtures │ └── gcode │ │ ├── bambu-multi.gcode │ │ ├── bambu-single.gcode │ │ ├── cura-basic.gcode │ │ └── embedded.gcode ├── gcodeParser.test.ts ├── schemas │ └── munchie.schema.json ├── server │ ├── backup-restore.test.ts │ ├── collections.test.ts │ ├── folders-and-health.test.ts │ ├── gcode-filtering.test.ts │ ├── helpers.ts │ ├── load-and-delete.test.ts │ ├── munchie-and-hashcheck.test.ts │ ├── parseGcodeEndpoint.test.ts │ ├── regenerate-print-settings.test.ts │ ├── save-and-scan.test.ts │ ├── schema-contract.test.ts │ └── verify-file-and-list.test.ts ├── sortUtils.test.ts └── uploadModels.test.ts ├── tsconfig.backend.json ├── tsconfig.json ├── unraid-template.xml ├── vite.config.ts └── vitest.setup.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.env.example -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.env.production -------------------------------------------------------------------------------- /.env.unraid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.env.unraid -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.versionrc.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BACKUP-RESTORE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/BACKUP-RESTORE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DOCKER-DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/DOCKER-DEPLOYMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/RELEASE.md -------------------------------------------------------------------------------- /UNRAID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/UNRAID.md -------------------------------------------------------------------------------- /copy-models-to-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/copy-models-to-build.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/package.json -------------------------------------------------------------------------------- /public/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/demo.gif -------------------------------------------------------------------------------- /public/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/munchie-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/munchie-front.png -------------------------------------------------------------------------------- /public/images/munchie-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/munchie-side.png -------------------------------------------------------------------------------- /public/images/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/public/images/placeholder.svg -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/scripts/release.js -------------------------------------------------------------------------------- /server-utils/genaiAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/server-utils/genaiAdapter.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/server.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Attributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/Attributions.md -------------------------------------------------------------------------------- /src/components/BulkEditDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/BulkEditDrawer.tsx -------------------------------------------------------------------------------- /src/components/CollectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/CollectionCard.tsx -------------------------------------------------------------------------------- /src/components/CollectionEditDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/CollectionEditDrawer.tsx -------------------------------------------------------------------------------- /src/components/CollectionGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/CollectionGrid.tsx -------------------------------------------------------------------------------- /src/components/CollectionListRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/CollectionListRow.tsx -------------------------------------------------------------------------------- /src/components/DemoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/DemoPage.tsx -------------------------------------------------------------------------------- /src/components/DonationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/DonationDialog.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/FilterSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/FilterSidebar.tsx -------------------------------------------------------------------------------- /src/components/ImageWithFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ImageWithFallback.tsx -------------------------------------------------------------------------------- /src/components/ModelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ModelCard.tsx -------------------------------------------------------------------------------- /src/components/ModelDetailsDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ModelDetailsDrawer.tsx -------------------------------------------------------------------------------- /src/components/ModelGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ModelGrid.tsx -------------------------------------------------------------------------------- /src/components/ModelMesh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ModelMesh.tsx -------------------------------------------------------------------------------- /src/components/ModelUploadDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ModelUploadDialog.tsx -------------------------------------------------------------------------------- /src/components/ModelViewer3D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ModelViewer3D.tsx -------------------------------------------------------------------------------- /src/components/SelectionModeControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/SelectionModeControls.tsx -------------------------------------------------------------------------------- /src/components/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/SettingsPage.tsx -------------------------------------------------------------------------------- /src/components/SharedModelScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/SharedModelScene.tsx -------------------------------------------------------------------------------- /src/components/TagsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/TagsContext.tsx -------------------------------------------------------------------------------- /src/components/TagsInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/TagsInput.tsx -------------------------------------------------------------------------------- /src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/settings/ExperimentalTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/settings/ExperimentalTab.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/use-mobile.ts -------------------------------------------------------------------------------- /src/components/ui/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/components/ui/utils.ts -------------------------------------------------------------------------------- /src/config/default-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/config/default-config.json -------------------------------------------------------------------------------- /src/constants/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/constants/labels.ts -------------------------------------------------------------------------------- /src/constants/licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/constants/licenses.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/tests/download.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/tests/download.test.tsx -------------------------------------------------------------------------------- /src/tests/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/tests/utils.test.ts -------------------------------------------------------------------------------- /src/types/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/types/category.ts -------------------------------------------------------------------------------- /src/types/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/types/collection.ts -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/types/config.ts -------------------------------------------------------------------------------- /src/types/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/types/model.ts -------------------------------------------------------------------------------- /src/utils/clientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/clientUtils.ts -------------------------------------------------------------------------------- /src/utils/configManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/configManager.ts -------------------------------------------------------------------------------- /src/utils/downloadUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/downloadUtils.ts -------------------------------------------------------------------------------- /src/utils/fileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/fileManager.ts -------------------------------------------------------------------------------- /src/utils/filterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/filterUtils.ts -------------------------------------------------------------------------------- /src/utils/gcodeParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/gcodeParser.ts -------------------------------------------------------------------------------- /src/utils/imageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/imageUtils.ts -------------------------------------------------------------------------------- /src/utils/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/labels.ts -------------------------------------------------------------------------------- /src/utils/munchiePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/munchiePath.ts -------------------------------------------------------------------------------- /src/utils/rendererPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/rendererPool.ts -------------------------------------------------------------------------------- /src/utils/rendererPool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/rendererPool.tsx -------------------------------------------------------------------------------- /src/utils/sortUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/sortUtils.ts -------------------------------------------------------------------------------- /src/utils/threeJSManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/threeJSManager.ts -------------------------------------------------------------------------------- /src/utils/threeMFToJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/threeMFToJson.ts -------------------------------------------------------------------------------- /src/utils/thumbnailUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/thumbnailUtils.ts -------------------------------------------------------------------------------- /src/utils/useSafeThreeMFLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/src/utils/useSafeThreeMFLoader.ts -------------------------------------------------------------------------------- /tests/ModelGrid.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/ModelGrid.test.tsx -------------------------------------------------------------------------------- /tests/components/CollectionCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/CollectionCard.test.tsx -------------------------------------------------------------------------------- /tests/components/CollectionEditDrawer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/CollectionEditDrawer.test.tsx -------------------------------------------------------------------------------- /tests/components/FilterSidebar.collectionsOption.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/FilterSidebar.collectionsOption.test.tsx -------------------------------------------------------------------------------- /tests/components/ModelGrid.createCollection.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/ModelGrid.createCollection.test.tsx -------------------------------------------------------------------------------- /tests/components/ModelUploadDialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/ModelUploadDialog.test.tsx -------------------------------------------------------------------------------- /tests/components/SelectionModeControls.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/SelectionModeControls.test.tsx -------------------------------------------------------------------------------- /tests/components/TagsInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/components/TagsInput.test.tsx -------------------------------------------------------------------------------- /tests/configManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/configManager.test.ts -------------------------------------------------------------------------------- /tests/filterSidebar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/filterSidebar.test.tsx -------------------------------------------------------------------------------- /tests/fixtures/gcode/bambu-multi.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/fixtures/gcode/bambu-multi.gcode -------------------------------------------------------------------------------- /tests/fixtures/gcode/bambu-single.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/fixtures/gcode/bambu-single.gcode -------------------------------------------------------------------------------- /tests/fixtures/gcode/cura-basic.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/fixtures/gcode/cura-basic.gcode -------------------------------------------------------------------------------- /tests/fixtures/gcode/embedded.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/fixtures/gcode/embedded.gcode -------------------------------------------------------------------------------- /tests/gcodeParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/gcodeParser.test.ts -------------------------------------------------------------------------------- /tests/schemas/munchie.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/schemas/munchie.schema.json -------------------------------------------------------------------------------- /tests/server/backup-restore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/backup-restore.test.ts -------------------------------------------------------------------------------- /tests/server/collections.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/collections.test.ts -------------------------------------------------------------------------------- /tests/server/folders-and-health.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/folders-and-health.test.ts -------------------------------------------------------------------------------- /tests/server/gcode-filtering.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/gcode-filtering.test.ts -------------------------------------------------------------------------------- /tests/server/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/helpers.ts -------------------------------------------------------------------------------- /tests/server/load-and-delete.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/load-and-delete.test.ts -------------------------------------------------------------------------------- /tests/server/munchie-and-hashcheck.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/munchie-and-hashcheck.test.ts -------------------------------------------------------------------------------- /tests/server/parseGcodeEndpoint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/parseGcodeEndpoint.test.ts -------------------------------------------------------------------------------- /tests/server/regenerate-print-settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/regenerate-print-settings.test.ts -------------------------------------------------------------------------------- /tests/server/save-and-scan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/save-and-scan.test.ts -------------------------------------------------------------------------------- /tests/server/schema-contract.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/schema-contract.test.ts -------------------------------------------------------------------------------- /tests/server/verify-file-and-list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/server/verify-file-and-list.test.ts -------------------------------------------------------------------------------- /tests/sortUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/sortUtils.test.ts -------------------------------------------------------------------------------- /tests/uploadModels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tests/uploadModels.test.ts -------------------------------------------------------------------------------- /tsconfig.backend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tsconfig.backend.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unraid-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/unraid-template.xml -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robsturgill/3d-model-muncher/HEAD/vitest.setup.ts --------------------------------------------------------------------------------