├── .env.example ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── COPILOT_INSTRUCTIONS.md ├── DEVELOPMENT.md ├── LICENSE-MIT ├── LICENSE-PREMIUM ├── PRD.md ├── README.md ├── api └── og.ts ├── components.json ├── dev-tools ├── README.md ├── clipboard-test.js ├── debug-video-export.js ├── font-test.html ├── gridColorTest.ts ├── sample-json-export.json ├── test-frame-timing.js ├── test-ibm-vga-font.html ├── test-json-html-export.js ├── test-palette.json ├── test-sf-mono.html ├── test-video-export.js └── test-video-loops.js ├── docs ├── ADDING_CUSTOM_FONTS.md ├── ADDING_FEATURES_TO_PROJECT_SYSTEM.md ├── ANIMATION_PLAYBACK_OPTIMIZATION.md ├── ANIMATION_PLAYBACK_OPTIMIZATION_PLAN.md ├── ANIMATION_SYSTEM_GUIDE.md ├── ASCII_BOX_TOOL_IMPLEMENTATION_PLAN.md ├── ASCII_TYPE_TOOL_IMPLEMENTATION_PLAN.md ├── BEZIER_GRANULAR_UNDO_IMPLEMENTATION.md ├── BEZIER_SHAPE_TOOL_IMPLEMENTATION_PLAN.md ├── BRUSH_HOVER_PREVIEW_PLAN.md ├── BRUSH_TOOL_USER_GUIDE.md ├── BUILD_FIXES.md ├── CANVAS_RENDERING_IMPROVEMENTS.md ├── CANVAS_TEXT_RENDERING.md ├── COEP_CONFIGURATION_GUIDE.md ├── COEP_TROUBLESHOOTING_GUIDE.md ├── COLOR_PALETTE_OVERHAUL_PLAN.md ├── CROP_CANVAS_TO_SELECTION.md ├── DIALOG_COMPONENT_AUDIT.md ├── DIALOG_CONSISTENCY_UPDATE.md ├── DIGITAL_RAIN_GENERATOR_IMPLEMENTATION.md ├── DITHERING_ANALYSIS_AND_PLAN.md ├── DITHERING_IMPLEMENTATION_SUMMARY.md ├── DITHERING_QUICK_REFERENCE.md ├── DRAGGABLE_PICKERS_IMPLEMENTATION.md ├── DRAWING_GAP_FIX.md ├── EFFECTS_DEVELOPER_GUIDE.md ├── EFFECTS_IMPLEMENTATION_SUMMARY.md ├── EFFECTS_SYSTEM_IMPLEMENTATION.md ├── EFFECTS_SYSTEM_USER_GUIDE.md ├── ELLIPSE_RADIAL_GRADIENTS.md ├── EXPORT_METADATA_AUDIT_COMPLETE.md ├── FIGMA_COMPONENT_RECREATION_GUIDE.md ├── FIGMA_DESIGN_SYSTEM_SETUP.md ├── FIGMA_MCP_WORKFLOW_GUIDE.md ├── FIGMA_REACT_DIALOG_REDESIGN_MASTER_GUIDE.md ├── FIGMA_WORKFLOW_IMPLEMENTATION_SUMMARY.md ├── FIGMA_WORKFLOW_README.md ├── FONT_QUICK_REFERENCE.md ├── FONT_SELECTION_IMPLEMENTATION_PLAN.md ├── FONT_SYSTEM_IMPLEMENTATION_PLAN.md ├── FRAME_SYNCHRONIZATION_DEBUGGING_GUIDE.md ├── GENERATORS_IMPLEMENTATION_PLAN.md ├── GENERATOR_CANVAS_PREVIEW_OPTIMIZATION.md ├── GENERATOR_PREVIEW_RACE_CONDITION_FIX.md ├── GIT_SUBMODULE_SETUP.md ├── GRADIENT_FILL_IMPLEMENTATION.md ├── GRID_OPACITY_IMPROVEMENTS.md ├── LOGGING_CLEANUP_SUMMARY.md ├── MEDIA_IMPORT_ANALYSIS.md ├── MEDIA_IMPORT_FIXES_COMPLETE.md ├── MEDIA_IMPORT_HISTORY_INTEGRATION.md ├── MONOREPO_QUICK_REFERENCE.md ├── MONOREPO_SETUP_COMPLETE.md ├── MONOREPO_SETUP_GUIDE.md ├── MULTI_FRAME_SELECTION_IMPLEMENTATION_PLAN.md ├── MULTI_FRAME_SELECTION_MANUAL_TEST_PLAN.md ├── ONION_SKINNING_GUIDE.md ├── OPEN_SOURCE_SECURITY_STRATEGY.md ├── OS_CLIPBOARD_TESTING.md ├── PALETTE_REMAP_IMPLEMENTATION.md ├── PASTE_FUNCTIONALITY_TEST.md ├── PERFORMANCE_ANALYSIS_REPORT.md ├── PERFORMANCE_OPTIMIZATION.md ├── PERFORMANCE_OPTIMIZATION_ACTION_PLAN.md ├── PERFORMANCE_OPTIMIZATION_PHASE1.md ├── PERMANENT_DELETE_RLS_FIX.md ├── PHASE_4_ADVANCED_TOOLS_PLAN.md ├── PREMIUM_DOCS_MOVED.md ├── PRIVACY_POLICY.md ├── PROJECT_MANAGEMENT_ENHANCEMENT_PLAN.md ├── REACT_COMPONENT_EXPORT_IMPLEMENTATION_PLAN.md ├── README.md ├── RESPONSIVE_TESTING_CHECKLIST.md ├── SCATTER_BLEND_COLORS_FEATURE.md ├── SCATTER_EFFECT_FINAL_IMPLEMENTATION.md ├── SECURITY_HEADERS_INDEX.md ├── SECURITY_REVIEW.md ├── SHARED_UI_COMPONENTS_PATTERN.md ├── SVG_EXPORT_IMPLEMENTATION_PLAN.md ├── SVG_TEXT_TO_OUTLINES_IMPLEMENTATION_PLAN.md ├── SVG_TEXT_TO_OUTLINES_IMPLEMENTATION_SUMMARY.md ├── TAB_ORDER_STRATEGY.md ├── TERMS_OF_SERVICE.md ├── TIME_EFFECTS_IMPLEMENTATION_PLAN.md ├── TOOL_BEHAVIOR_IMPLEMENTATION.md ├── TYPOGRAPHY_IMPLEMENTATION.md ├── UI_COMPONENTS_DESIGN_SYSTEM.md ├── UNDO_REDO_BUG_FIXES.md ├── VERCEL_JSON_REFERENCE.md ├── WIDTH_HEIGHT_INPUT_FIX.md └── timanthes.txt ├── eslint.config.js ├── index.html ├── package.json ├── packages └── core │ ├── package.json │ ├── src │ ├── components │ │ ├── index.ts │ │ └── ui │ │ │ ├── alert.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── index.ts │ └── lib │ │ └── utils.ts │ └── tsconfig.json ├── postcss.config.js ├── public ├── apple-touch-icon.png ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── ffmpeg │ ├── ffmpeg-core.js │ └── ffmpeg-core.wasm ├── fonts │ ├── C64_Pro-STYLE.ttf │ ├── FiraCode-Regular.woff2 │ ├── GeistMono-Regular.woff2 │ ├── JetBrainsMono-Regular.woff2 │ ├── MonaspaceNeon-Regular.woff2 │ ├── Px437_IBM_DOS_ISO8.ttf │ ├── Px437_IBM_VGA_9x14.ttf │ ├── SourceCodePro-Regular.woff2 │ ├── Web437_IBM_VGA_9x8.woff │ ├── geist-font.zip │ └── jetbrains-mono │ │ ├── JetBrainsMono-Regular.ttf │ │ └── LICENSE.txt ├── og-image.png ├── site.webmanifest ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── scripts ├── check-licenses.js ├── download-fonts.sh ├── extract-logo-frames.js ├── migrate-to-monorepo.js ├── setup-premium-submodule.sh └── version-bump.js ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── common │ │ ├── AppReveal.tsx │ │ ├── AsciiMotionLogo.tsx │ │ ├── CellRenderer.tsx │ │ ├── CollapsibleHeader.tsx │ │ ├── CollapsiblePanel.tsx │ │ ├── ColorSwatch.tsx │ │ ├── DraggableDialogBar.tsx │ │ ├── MouseCoordinates.tsx │ │ ├── PanelSeparator.tsx │ │ ├── PanelToggleButton.tsx │ │ ├── PerformanceMonitor.tsx │ │ ├── PerformanceOverlay.tsx │ │ ├── Spinner.tsx │ │ ├── ThemeToggle.tsx │ │ └── VersionDisplay.tsx │ ├── demos │ │ └── SimpleAsciiDemo.tsx │ ├── features │ │ ├── AboutDialog.tsx │ │ ├── AccountButton.tsx │ │ ├── ActiveStyleSection.tsx │ │ ├── AnimationTimeline.tsx │ │ ├── AsciiBoxPanel.tsx │ │ ├── AsciiTypePanel.tsx │ │ ├── AsciiTypePreviewDialog.tsx │ │ ├── AuthButtons.tsx │ │ ├── BackgroundColorMappingSection.tsx │ │ ├── BezierActionButtons.tsx │ │ ├── BrushControls.tsx │ │ ├── BrushPreview.tsx │ │ ├── BrushSizePreviewOverlay.tsx │ │ ├── CanvasActionButtons.tsx │ │ ├── CanvasGrid.tsx │ │ ├── CanvasOverlay.tsx │ │ ├── CanvasRenderer.tsx │ │ ├── CanvasSettings.tsx │ │ ├── CanvasSizePicker.tsx │ │ ├── CanvasWithShortcuts.tsx │ │ ├── CharacterMappingControls.tsx │ │ ├── CharacterMappingSection.tsx │ │ ├── CharacterPalette.tsx │ │ ├── CharacterPaletteEditor.tsx │ │ ├── ColorPicker.tsx │ │ ├── ColorPickerOverlay.tsx │ │ ├── ColorPicker_new.tsx │ │ ├── ColorReadout.tsx │ │ ├── EffectsIntegrationTest.tsx │ │ ├── EffectsPanel.tsx │ │ ├── EffectsSection.tsx │ │ ├── EnhancedCharacterPicker.tsx │ │ ├── ExportCharacterPaletteDialog.tsx │ │ ├── ExportImportButtons.tsx │ │ ├── ExportPaletteDialog.tsx │ │ ├── ForegroundBackgroundSelector.tsx │ │ ├── FrameControls.tsx │ │ ├── FrameThumbnail.tsx │ │ ├── FullscreenToggle.tsx │ │ ├── GalleryMobileMenu.tsx │ │ ├── GeneratorsPanel.tsx │ │ ├── GeneratorsSection.tsx │ │ ├── GradientPanel.tsx │ │ ├── GradientPropertyPreview.tsx │ │ ├── GradientStopPicker.tsx │ │ ├── HamburgerMenu.tsx │ │ ├── HtmlExportDialog.tsx │ │ ├── ImageExportDialog.tsx │ │ ├── ImportCharacterPaletteDialog.tsx │ │ ├── ImportModal.tsx │ │ ├── ImportPaletteDialog.tsx │ │ ├── InlineProjectNameEditor.tsx │ │ ├── InteractiveBezierOverlay.tsx │ │ ├── InteractiveGradientOverlay.tsx │ │ ├── JsonExportDialog.tsx │ │ ├── JsonImportDialog.tsx │ │ ├── KeyboardShortcutsDialog.tsx │ │ ├── MainCharacterPaletteSection.tsx │ │ ├── ManageCharacterPalettesDialog.tsx │ │ ├── ManagePalettesDialog.tsx │ │ ├── MediaImportPanel.tsx │ │ ├── MobileDialog.tsx │ │ ├── NewProjectDialog.tsx │ │ ├── OnionSkinControls.tsx │ │ ├── PastePreviewOverlay.tsx │ │ ├── PlaybackControls.tsx │ │ ├── PlaybackOverlay.tsx │ │ ├── PlaybackStatusBar.tsx │ │ ├── PreprocessingSection.tsx │ │ ├── ProjectCanvasPreview.tsx │ │ ├── ProjectSettingsDialog.tsx │ │ ├── ProjectsDialog.tsx │ │ ├── PublishToGalleryDialogWrapper.tsx │ │ ├── PublishedProjectSaveWarningDialog.tsx │ │ ├── ReactExportDialog.tsx │ │ ├── SaveToCloudDialog.tsx │ │ ├── SessionExportDialog.tsx │ │ ├── SilentSaveHandler.tsx │ │ ├── TextColorMappingSection.tsx │ │ ├── TextExportDialog.tsx │ │ ├── TimelineZoomControl.tsx │ │ ├── ToolBehaviorSettings.tsx │ │ ├── ToolManager.tsx │ │ ├── ToolPalette.tsx │ │ ├── ToolPalette_backup.tsx │ │ ├── ToolPalette_new.tsx │ │ ├── ToolStatusManager.tsx │ │ ├── TransparencySection.tsx │ │ ├── UpgradeToProDialog.tsx │ │ ├── VideoExportDialog.tsx │ │ ├── WelcomeAsciiAnimation.tsx │ │ ├── WelcomeAsciiAnimationData.tsx │ │ ├── WelcomeDialog.tsx │ │ ├── ZoomControls.tsx │ │ ├── effects │ │ │ ├── HueSaturationEffectPanel.tsx │ │ │ ├── LevelsEffectPanel.tsx │ │ │ ├── RemapCharactersEffectPanel.tsx │ │ │ ├── RemapColorsEffectPanel.tsx │ │ │ ├── RemapColorsEffectPanel.tsx.backup │ │ │ └── ScatterEffectPanel.tsx │ │ ├── generators │ │ │ ├── DigitalRainSettings.tsx │ │ │ ├── GeneratorsMappingTab.tsx │ │ │ ├── ParticlePhysicsSettings.tsx │ │ │ ├── PlaceholderGeneratorSettings.tsx │ │ │ ├── RadioWavesSettings.tsx │ │ │ ├── RainDropsSettings.tsx │ │ │ └── TurbulentNoiseSettings.tsx │ │ ├── preview │ │ │ └── GeneratorPreviewCanvas.tsx │ │ └── timeEffects │ │ │ ├── AddFramesDialog.tsx │ │ │ ├── SetFrameDurationDialog.tsx │ │ │ ├── WaveWarpDialog.tsx │ │ │ └── WiggleDialog.tsx │ ├── icons │ │ ├── GitHubIcon.tsx │ │ ├── GradientIcon.tsx │ │ ├── README.md │ │ ├── index.ts │ │ └── types.ts │ ├── tools │ │ ├── AsciiBoxTool.tsx │ │ ├── AsciiTypeTool.tsx │ │ ├── BezierShapeTool.tsx │ │ ├── DrawingTool.tsx │ │ ├── EllipseTool.tsx │ │ ├── EyedropperTool.tsx │ │ ├── FlipHorizontalTool.tsx │ │ ├── FlipVerticalTool.tsx │ │ ├── GradientFillTool.tsx │ │ ├── LassoTool.tsx │ │ ├── MagicWandTool.tsx │ │ ├── PaintBucketTool.tsx │ │ ├── RectangleTool.tsx │ │ ├── SelectionTool.tsx │ │ ├── TextTool.tsx │ │ └── index.ts │ └── ui │ │ ├── alert.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── constants │ ├── bezierAutofill │ │ ├── ansiCharacters.ts │ │ ├── ansiCharacters_backup.ts │ │ ├── blockCharacters.ts │ │ ├── index.ts │ │ └── types.ts │ ├── boxDrawingStyles.ts │ ├── colors.ts │ ├── defaultCharacterPalettes.ts │ ├── defaultPalettes.ts │ ├── effectsDefaults.ts │ ├── features.ts │ ├── figletFonts.ts │ ├── fonts.d.ts │ ├── fonts.d.ts.map │ ├── fonts.ts │ ├── generators.ts │ ├── hotkeys.ts │ ├── index.ts │ ├── onionSkin.ts │ ├── timeEffects.ts │ └── version.ts ├── contexts │ ├── CanvasContext.ts │ ├── CanvasContext.tsx │ ├── CanvasContext │ │ ├── CanvasProvider.tsx │ │ ├── context.ts │ │ ├── index.ts │ │ ├── useCanvasContext.ts │ │ └── useCanvasDimensions.ts │ ├── ModalContext.ts │ ├── ModalContext.tsx │ ├── ModalContext │ │ ├── ModalProvider.tsx │ │ ├── context.ts │ │ ├── index.ts │ │ └── useModalContext.ts │ ├── ThemeContext.ts │ ├── ThemeContext.tsx │ └── ThemeContext │ │ ├── ThemeProvider.tsx │ │ ├── context.ts │ │ ├── index.ts │ │ └── useTheme.ts ├── hooks │ ├── useAdminProjectLoader.ts │ ├── useAnimationHistory.ts │ ├── useAnimationPlayback.ts │ ├── useAsciiBoxTool.ts │ ├── useAsciiTypePlacement.ts │ ├── useAsciiTypeTool.ts │ ├── useCanvasDragAndDrop.ts │ ├── useCanvasLassoSelection.ts │ ├── useCanvasMagicWandSelection.ts │ ├── useCanvasMouseHandlers.ts │ ├── useCanvasRenderer.ts │ ├── useCanvasRenderer.ts.backup │ ├── useCanvasSelection.ts │ ├── useCanvasState.ts │ ├── useCloudDialogState.ts │ ├── useCloudProjectActions.ts │ ├── useCropToSelection.ts │ ├── useDrawingTool.ts │ ├── useEffectsHistory.ts │ ├── useFlipUtilities.ts │ ├── useFrameNavigation.ts │ ├── useFrameSynchronization.ts │ ├── useGeneratorPreview.ts │ ├── useGradientFillTool.ts │ ├── useHoverPreview.ts │ ├── useKeyboardShortcuts.ts │ ├── useLayoutState.ts │ ├── useMemoizedGrid.ts │ ├── useOnionSkinRenderer.ts │ ├── useOptimizedPlayback.ts │ ├── useOptimizedRender.ts │ ├── usePasteMode.ts │ ├── usePerformanceMonitor.ts │ ├── usePlaybackFpsMonitor.ts │ ├── usePlaybackOnlySnapshot.ts │ ├── useProjectDialogState.ts │ ├── useProjectFileActions.ts │ ├── useTextTool.ts │ ├── useTimeEffectsHistory.ts │ ├── useToolBehavior.ts │ ├── useWelcomeDialog.ts │ └── useZoomControls.ts ├── index.css ├── index.css.backup ├── lib │ ├── figletClient.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── CommunityPage.tsx │ └── EditorPage.tsx ├── stores │ ├── animationStore.ts │ ├── asciiBoxStore.ts │ ├── asciiTypeStore.ts │ ├── bezierStore.ts │ ├── canvasStore.ts │ ├── characterPaletteStore.ts │ ├── effectsStore.ts │ ├── exportStore.ts │ ├── generatorsStore.ts │ ├── gradientStore.ts │ ├── importStore.ts │ ├── paletteStore.ts │ ├── playbackOnlyStore.ts │ ├── previewStore.ts │ ├── projectMetadataStore.ts │ ├── timeEffectsStore.ts │ └── toolStore.ts ├── styles │ └── bundled-fonts.css ├── types │ ├── effects.ts │ ├── export.ts │ ├── generators.ts │ ├── index.ts │ ├── mp4box.d.ts │ ├── palette.ts │ ├── timeEffects.ts │ └── welcomeDialog.ts ├── utils │ ├── asciiConverter.ts │ ├── bezierAutofillUtils.ts │ ├── bezierFillUtils.ts │ ├── bezierPathUtils.ts │ ├── bezierStrokeUtils.ts │ ├── boxDrawingEngine.ts │ ├── brushUtils.ts │ ├── canvasAnalysis.ts │ ├── canvasDPI.ts │ ├── canvasSizeConversion.ts │ ├── canvasTextRendering.ts │ ├── characterPaletteValidation.ts │ ├── clipboardUtils.ts │ ├── colorConversion.ts │ ├── cropUtils.ts │ ├── directCanvasRenderer.ts │ ├── dirtyTracker.ts │ ├── effectsProcessing.ts │ ├── exportDataCollector.ts │ ├── exportPixelCalculator.ts │ ├── exportRenderer.ts │ ├── fillArea.ts │ ├── flipUtils.ts │ ├── font │ │ ├── fontLoader.ts │ │ ├── fontRegistry.ts │ │ ├── index.ts │ │ ├── opentypePathConverter.ts │ │ └── types.ts │ ├── fontDetection.ts │ ├── fontLoader.ts │ ├── fontMetrics.ts │ ├── frameUtils.ts │ ├── generators │ │ ├── digitalRain.ts │ │ ├── generatorEngine.ts │ │ ├── particlePhysics.ts │ │ ├── radioWaves.ts │ │ ├── rainDrops.ts │ │ └── turbulentNoise.ts │ ├── gradientEngine.ts │ ├── gridColor.ts │ ├── jsonImporter.ts │ ├── mediaProcessor.ts │ ├── paletteValidation.ts │ ├── performance.ts │ ├── polygon.ts │ ├── renderScheduler.ts │ ├── selectionUtils.ts │ ├── sessionImporter.ts │ ├── svgExportUtils.ts │ └── timeEffectsProcessing.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPILOT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/COPILOT_INSTRUCTIONS.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-PREMIUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/LICENSE-PREMIUM -------------------------------------------------------------------------------- /PRD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/PRD.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/README.md -------------------------------------------------------------------------------- /api/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/api/og.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/components.json -------------------------------------------------------------------------------- /dev-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/README.md -------------------------------------------------------------------------------- /dev-tools/clipboard-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/clipboard-test.js -------------------------------------------------------------------------------- /dev-tools/debug-video-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/debug-video-export.js -------------------------------------------------------------------------------- /dev-tools/font-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/font-test.html -------------------------------------------------------------------------------- /dev-tools/gridColorTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/gridColorTest.ts -------------------------------------------------------------------------------- /dev-tools/sample-json-export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/sample-json-export.json -------------------------------------------------------------------------------- /dev-tools/test-frame-timing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-frame-timing.js -------------------------------------------------------------------------------- /dev-tools/test-ibm-vga-font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-ibm-vga-font.html -------------------------------------------------------------------------------- /dev-tools/test-json-html-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-json-html-export.js -------------------------------------------------------------------------------- /dev-tools/test-palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-palette.json -------------------------------------------------------------------------------- /dev-tools/test-sf-mono.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-sf-mono.html -------------------------------------------------------------------------------- /dev-tools/test-video-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-video-export.js -------------------------------------------------------------------------------- /dev-tools/test-video-loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/dev-tools/test-video-loops.js -------------------------------------------------------------------------------- /docs/ADDING_CUSTOM_FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ADDING_CUSTOM_FONTS.md -------------------------------------------------------------------------------- /docs/ADDING_FEATURES_TO_PROJECT_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ADDING_FEATURES_TO_PROJECT_SYSTEM.md -------------------------------------------------------------------------------- /docs/ANIMATION_PLAYBACK_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ANIMATION_PLAYBACK_OPTIMIZATION.md -------------------------------------------------------------------------------- /docs/ANIMATION_PLAYBACK_OPTIMIZATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ANIMATION_PLAYBACK_OPTIMIZATION_PLAN.md -------------------------------------------------------------------------------- /docs/ANIMATION_SYSTEM_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ANIMATION_SYSTEM_GUIDE.md -------------------------------------------------------------------------------- /docs/ASCII_BOX_TOOL_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ASCII_BOX_TOOL_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/ASCII_TYPE_TOOL_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ASCII_TYPE_TOOL_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/BEZIER_GRANULAR_UNDO_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/BEZIER_GRANULAR_UNDO_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/BEZIER_SHAPE_TOOL_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/BEZIER_SHAPE_TOOL_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/BRUSH_HOVER_PREVIEW_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/BRUSH_HOVER_PREVIEW_PLAN.md -------------------------------------------------------------------------------- /docs/BRUSH_TOOL_USER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/BRUSH_TOOL_USER_GUIDE.md -------------------------------------------------------------------------------- /docs/BUILD_FIXES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/BUILD_FIXES.md -------------------------------------------------------------------------------- /docs/CANVAS_RENDERING_IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/CANVAS_RENDERING_IMPROVEMENTS.md -------------------------------------------------------------------------------- /docs/CANVAS_TEXT_RENDERING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/CANVAS_TEXT_RENDERING.md -------------------------------------------------------------------------------- /docs/COEP_CONFIGURATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/COEP_CONFIGURATION_GUIDE.md -------------------------------------------------------------------------------- /docs/COEP_TROUBLESHOOTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/COEP_TROUBLESHOOTING_GUIDE.md -------------------------------------------------------------------------------- /docs/COLOR_PALETTE_OVERHAUL_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/COLOR_PALETTE_OVERHAUL_PLAN.md -------------------------------------------------------------------------------- /docs/CROP_CANVAS_TO_SELECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/CROP_CANVAS_TO_SELECTION.md -------------------------------------------------------------------------------- /docs/DIALOG_COMPONENT_AUDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DIALOG_COMPONENT_AUDIT.md -------------------------------------------------------------------------------- /docs/DIALOG_CONSISTENCY_UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DIALOG_CONSISTENCY_UPDATE.md -------------------------------------------------------------------------------- /docs/DIGITAL_RAIN_GENERATOR_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DIGITAL_RAIN_GENERATOR_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/DITHERING_ANALYSIS_AND_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DITHERING_ANALYSIS_AND_PLAN.md -------------------------------------------------------------------------------- /docs/DITHERING_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DITHERING_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/DITHERING_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DITHERING_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /docs/DRAGGABLE_PICKERS_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DRAGGABLE_PICKERS_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/DRAWING_GAP_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/DRAWING_GAP_FIX.md -------------------------------------------------------------------------------- /docs/EFFECTS_DEVELOPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/EFFECTS_DEVELOPER_GUIDE.md -------------------------------------------------------------------------------- /docs/EFFECTS_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/EFFECTS_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/EFFECTS_SYSTEM_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/EFFECTS_SYSTEM_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/EFFECTS_SYSTEM_USER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/EFFECTS_SYSTEM_USER_GUIDE.md -------------------------------------------------------------------------------- /docs/ELLIPSE_RADIAL_GRADIENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ELLIPSE_RADIAL_GRADIENTS.md -------------------------------------------------------------------------------- /docs/EXPORT_METADATA_AUDIT_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/EXPORT_METADATA_AUDIT_COMPLETE.md -------------------------------------------------------------------------------- /docs/FIGMA_COMPONENT_RECREATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FIGMA_COMPONENT_RECREATION_GUIDE.md -------------------------------------------------------------------------------- /docs/FIGMA_DESIGN_SYSTEM_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FIGMA_DESIGN_SYSTEM_SETUP.md -------------------------------------------------------------------------------- /docs/FIGMA_MCP_WORKFLOW_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FIGMA_MCP_WORKFLOW_GUIDE.md -------------------------------------------------------------------------------- /docs/FIGMA_REACT_DIALOG_REDESIGN_MASTER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FIGMA_REACT_DIALOG_REDESIGN_MASTER_GUIDE.md -------------------------------------------------------------------------------- /docs/FIGMA_WORKFLOW_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FIGMA_WORKFLOW_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/FIGMA_WORKFLOW_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FIGMA_WORKFLOW_README.md -------------------------------------------------------------------------------- /docs/FONT_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FONT_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /docs/FONT_SELECTION_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FONT_SELECTION_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/FONT_SYSTEM_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FONT_SYSTEM_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/FRAME_SYNCHRONIZATION_DEBUGGING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/FRAME_SYNCHRONIZATION_DEBUGGING_GUIDE.md -------------------------------------------------------------------------------- /docs/GENERATORS_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/GENERATORS_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/GENERATOR_CANVAS_PREVIEW_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/GENERATOR_CANVAS_PREVIEW_OPTIMIZATION.md -------------------------------------------------------------------------------- /docs/GENERATOR_PREVIEW_RACE_CONDITION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/GENERATOR_PREVIEW_RACE_CONDITION_FIX.md -------------------------------------------------------------------------------- /docs/GIT_SUBMODULE_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/GIT_SUBMODULE_SETUP.md -------------------------------------------------------------------------------- /docs/GRADIENT_FILL_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/GRADIENT_FILL_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/GRID_OPACITY_IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/GRID_OPACITY_IMPROVEMENTS.md -------------------------------------------------------------------------------- /docs/LOGGING_CLEANUP_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/LOGGING_CLEANUP_SUMMARY.md -------------------------------------------------------------------------------- /docs/MEDIA_IMPORT_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MEDIA_IMPORT_ANALYSIS.md -------------------------------------------------------------------------------- /docs/MEDIA_IMPORT_FIXES_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MEDIA_IMPORT_FIXES_COMPLETE.md -------------------------------------------------------------------------------- /docs/MEDIA_IMPORT_HISTORY_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MEDIA_IMPORT_HISTORY_INTEGRATION.md -------------------------------------------------------------------------------- /docs/MONOREPO_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MONOREPO_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /docs/MONOREPO_SETUP_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MONOREPO_SETUP_COMPLETE.md -------------------------------------------------------------------------------- /docs/MONOREPO_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MONOREPO_SETUP_GUIDE.md -------------------------------------------------------------------------------- /docs/MULTI_FRAME_SELECTION_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MULTI_FRAME_SELECTION_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/MULTI_FRAME_SELECTION_MANUAL_TEST_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/MULTI_FRAME_SELECTION_MANUAL_TEST_PLAN.md -------------------------------------------------------------------------------- /docs/ONION_SKINNING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/ONION_SKINNING_GUIDE.md -------------------------------------------------------------------------------- /docs/OPEN_SOURCE_SECURITY_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/OPEN_SOURCE_SECURITY_STRATEGY.md -------------------------------------------------------------------------------- /docs/OS_CLIPBOARD_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/OS_CLIPBOARD_TESTING.md -------------------------------------------------------------------------------- /docs/PALETTE_REMAP_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PALETTE_REMAP_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/PASTE_FUNCTIONALITY_TEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PASTE_FUNCTIONALITY_TEST.md -------------------------------------------------------------------------------- /docs/PERFORMANCE_ANALYSIS_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PERFORMANCE_ANALYSIS_REPORT.md -------------------------------------------------------------------------------- /docs/PERFORMANCE_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PERFORMANCE_OPTIMIZATION.md -------------------------------------------------------------------------------- /docs/PERFORMANCE_OPTIMIZATION_ACTION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PERFORMANCE_OPTIMIZATION_ACTION_PLAN.md -------------------------------------------------------------------------------- /docs/PERFORMANCE_OPTIMIZATION_PHASE1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PERFORMANCE_OPTIMIZATION_PHASE1.md -------------------------------------------------------------------------------- /docs/PERMANENT_DELETE_RLS_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PERMANENT_DELETE_RLS_FIX.md -------------------------------------------------------------------------------- /docs/PHASE_4_ADVANCED_TOOLS_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PHASE_4_ADVANCED_TOOLS_PLAN.md -------------------------------------------------------------------------------- /docs/PREMIUM_DOCS_MOVED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PREMIUM_DOCS_MOVED.md -------------------------------------------------------------------------------- /docs/PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /docs/PROJECT_MANAGEMENT_ENHANCEMENT_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/PROJECT_MANAGEMENT_ENHANCEMENT_PLAN.md -------------------------------------------------------------------------------- /docs/REACT_COMPONENT_EXPORT_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/REACT_COMPONENT_EXPORT_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RESPONSIVE_TESTING_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/RESPONSIVE_TESTING_CHECKLIST.md -------------------------------------------------------------------------------- /docs/SCATTER_BLEND_COLORS_FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SCATTER_BLEND_COLORS_FEATURE.md -------------------------------------------------------------------------------- /docs/SCATTER_EFFECT_FINAL_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SCATTER_EFFECT_FINAL_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/SECURITY_HEADERS_INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SECURITY_HEADERS_INDEX.md -------------------------------------------------------------------------------- /docs/SECURITY_REVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SECURITY_REVIEW.md -------------------------------------------------------------------------------- /docs/SHARED_UI_COMPONENTS_PATTERN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SHARED_UI_COMPONENTS_PATTERN.md -------------------------------------------------------------------------------- /docs/SVG_EXPORT_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SVG_EXPORT_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/SVG_TEXT_TO_OUTLINES_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SVG_TEXT_TO_OUTLINES_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/SVG_TEXT_TO_OUTLINES_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/SVG_TEXT_TO_OUTLINES_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/TAB_ORDER_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/TAB_ORDER_STRATEGY.md -------------------------------------------------------------------------------- /docs/TERMS_OF_SERVICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/TERMS_OF_SERVICE.md -------------------------------------------------------------------------------- /docs/TIME_EFFECTS_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/TIME_EFFECTS_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/TOOL_BEHAVIOR_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/TOOL_BEHAVIOR_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/TYPOGRAPHY_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/TYPOGRAPHY_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/UI_COMPONENTS_DESIGN_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/UI_COMPONENTS_DESIGN_SYSTEM.md -------------------------------------------------------------------------------- /docs/UNDO_REDO_BUG_FIXES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/UNDO_REDO_BUG_FIXES.md -------------------------------------------------------------------------------- /docs/VERCEL_JSON_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/VERCEL_JSON_REFERENCE.md -------------------------------------------------------------------------------- /docs/WIDTH_HEIGHT_INPUT_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/WIDTH_HEIGHT_INPUT_FIX.md -------------------------------------------------------------------------------- /docs/timanthes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/docs/timanthes.txt -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/package.json -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/index.ts -------------------------------------------------------------------------------- /packages/core/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/card.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/label.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /packages/core/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/ffmpeg/ffmpeg-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/ffmpeg/ffmpeg-core.js -------------------------------------------------------------------------------- /public/ffmpeg/ffmpeg-core.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/ffmpeg/ffmpeg-core.wasm -------------------------------------------------------------------------------- /public/fonts/C64_Pro-STYLE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/C64_Pro-STYLE.ttf -------------------------------------------------------------------------------- /public/fonts/FiraCode-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/FiraCode-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/GeistMono-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/JetBrainsMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/JetBrainsMono-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/MonaspaceNeon-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/MonaspaceNeon-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Px437_IBM_DOS_ISO8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/Px437_IBM_DOS_ISO8.ttf -------------------------------------------------------------------------------- /public/fonts/Px437_IBM_VGA_9x14.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/Px437_IBM_VGA_9x14.ttf -------------------------------------------------------------------------------- /public/fonts/SourceCodePro-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/SourceCodePro-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Web437_IBM_VGA_9x8.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/Web437_IBM_VGA_9x8.woff -------------------------------------------------------------------------------- /public/fonts/geist-font.zip: -------------------------------------------------------------------------------- 1 | Not Found -------------------------------------------------------------------------------- /public/fonts/jetbrains-mono/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/jetbrains-mono/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/jetbrains-mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/fonts/jetbrains-mono/LICENSE.txt -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /scripts/check-licenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/scripts/check-licenses.js -------------------------------------------------------------------------------- /scripts/download-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/scripts/download-fonts.sh -------------------------------------------------------------------------------- /scripts/extract-logo-frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/scripts/extract-logo-frames.js -------------------------------------------------------------------------------- /scripts/migrate-to-monorepo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/scripts/migrate-to-monorepo.js -------------------------------------------------------------------------------- /scripts/setup-premium-submodule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/scripts/setup-premium-submodule.sh -------------------------------------------------------------------------------- /scripts/version-bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/scripts/version-bump.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/common/AppReveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/AppReveal.tsx -------------------------------------------------------------------------------- /src/components/common/AsciiMotionLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/AsciiMotionLogo.tsx -------------------------------------------------------------------------------- /src/components/common/CellRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/CellRenderer.tsx -------------------------------------------------------------------------------- /src/components/common/CollapsibleHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/CollapsibleHeader.tsx -------------------------------------------------------------------------------- /src/components/common/CollapsiblePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/CollapsiblePanel.tsx -------------------------------------------------------------------------------- /src/components/common/ColorSwatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/ColorSwatch.tsx -------------------------------------------------------------------------------- /src/components/common/DraggableDialogBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/DraggableDialogBar.tsx -------------------------------------------------------------------------------- /src/components/common/MouseCoordinates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/MouseCoordinates.tsx -------------------------------------------------------------------------------- /src/components/common/PanelSeparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/PanelSeparator.tsx -------------------------------------------------------------------------------- /src/components/common/PanelToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/PanelToggleButton.tsx -------------------------------------------------------------------------------- /src/components/common/PerformanceMonitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/PerformanceMonitor.tsx -------------------------------------------------------------------------------- /src/components/common/PerformanceOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/PerformanceOverlay.tsx -------------------------------------------------------------------------------- /src/components/common/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/Spinner.tsx -------------------------------------------------------------------------------- /src/components/common/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/common/VersionDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/common/VersionDisplay.tsx -------------------------------------------------------------------------------- /src/components/demos/SimpleAsciiDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/demos/SimpleAsciiDemo.tsx -------------------------------------------------------------------------------- /src/components/features/AboutDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AboutDialog.tsx -------------------------------------------------------------------------------- /src/components/features/AccountButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AccountButton.tsx -------------------------------------------------------------------------------- /src/components/features/ActiveStyleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ActiveStyleSection.tsx -------------------------------------------------------------------------------- /src/components/features/AnimationTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AnimationTimeline.tsx -------------------------------------------------------------------------------- /src/components/features/AsciiBoxPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AsciiBoxPanel.tsx -------------------------------------------------------------------------------- /src/components/features/AsciiTypePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AsciiTypePanel.tsx -------------------------------------------------------------------------------- /src/components/features/AsciiTypePreviewDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AsciiTypePreviewDialog.tsx -------------------------------------------------------------------------------- /src/components/features/AuthButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/AuthButtons.tsx -------------------------------------------------------------------------------- /src/components/features/BackgroundColorMappingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/BackgroundColorMappingSection.tsx -------------------------------------------------------------------------------- /src/components/features/BezierActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/BezierActionButtons.tsx -------------------------------------------------------------------------------- /src/components/features/BrushControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/BrushControls.tsx -------------------------------------------------------------------------------- /src/components/features/BrushPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/BrushPreview.tsx -------------------------------------------------------------------------------- /src/components/features/BrushSizePreviewOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/BrushSizePreviewOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasActionButtons.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasGrid.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasRenderer.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasSettings.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasSizePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasSizePicker.tsx -------------------------------------------------------------------------------- /src/components/features/CanvasWithShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CanvasWithShortcuts.tsx -------------------------------------------------------------------------------- /src/components/features/CharacterMappingControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CharacterMappingControls.tsx -------------------------------------------------------------------------------- /src/components/features/CharacterMappingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CharacterMappingSection.tsx -------------------------------------------------------------------------------- /src/components/features/CharacterPalette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CharacterPalette.tsx -------------------------------------------------------------------------------- /src/components/features/CharacterPaletteEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/CharacterPaletteEditor.tsx -------------------------------------------------------------------------------- /src/components/features/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ColorPicker.tsx -------------------------------------------------------------------------------- /src/components/features/ColorPickerOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ColorPickerOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/ColorPicker_new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ColorPicker_new.tsx -------------------------------------------------------------------------------- /src/components/features/ColorReadout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ColorReadout.tsx -------------------------------------------------------------------------------- /src/components/features/EffectsIntegrationTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/EffectsIntegrationTest.tsx -------------------------------------------------------------------------------- /src/components/features/EffectsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/EffectsPanel.tsx -------------------------------------------------------------------------------- /src/components/features/EffectsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/EffectsSection.tsx -------------------------------------------------------------------------------- /src/components/features/EnhancedCharacterPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/EnhancedCharacterPicker.tsx -------------------------------------------------------------------------------- /src/components/features/ExportCharacterPaletteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ExportCharacterPaletteDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ExportImportButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ExportImportButtons.tsx -------------------------------------------------------------------------------- /src/components/features/ExportPaletteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ExportPaletteDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ForegroundBackgroundSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ForegroundBackgroundSelector.tsx -------------------------------------------------------------------------------- /src/components/features/FrameControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/FrameControls.tsx -------------------------------------------------------------------------------- /src/components/features/FrameThumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/FrameThumbnail.tsx -------------------------------------------------------------------------------- /src/components/features/FullscreenToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/FullscreenToggle.tsx -------------------------------------------------------------------------------- /src/components/features/GalleryMobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/GalleryMobileMenu.tsx -------------------------------------------------------------------------------- /src/components/features/GeneratorsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/GeneratorsPanel.tsx -------------------------------------------------------------------------------- /src/components/features/GeneratorsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/GeneratorsSection.tsx -------------------------------------------------------------------------------- /src/components/features/GradientPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/GradientPanel.tsx -------------------------------------------------------------------------------- /src/components/features/GradientPropertyPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/GradientPropertyPreview.tsx -------------------------------------------------------------------------------- /src/components/features/GradientStopPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/GradientStopPicker.tsx -------------------------------------------------------------------------------- /src/components/features/HamburgerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/HamburgerMenu.tsx -------------------------------------------------------------------------------- /src/components/features/HtmlExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/HtmlExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ImageExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ImageExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ImportCharacterPaletteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ImportCharacterPaletteDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ImportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ImportModal.tsx -------------------------------------------------------------------------------- /src/components/features/ImportPaletteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ImportPaletteDialog.tsx -------------------------------------------------------------------------------- /src/components/features/InlineProjectNameEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/InlineProjectNameEditor.tsx -------------------------------------------------------------------------------- /src/components/features/InteractiveBezierOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/InteractiveBezierOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/InteractiveGradientOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/InteractiveGradientOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/JsonExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/JsonExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/JsonImportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/JsonImportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/KeyboardShortcutsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/KeyboardShortcutsDialog.tsx -------------------------------------------------------------------------------- /src/components/features/MainCharacterPaletteSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/MainCharacterPaletteSection.tsx -------------------------------------------------------------------------------- /src/components/features/ManageCharacterPalettesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ManageCharacterPalettesDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ManagePalettesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ManagePalettesDialog.tsx -------------------------------------------------------------------------------- /src/components/features/MediaImportPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/MediaImportPanel.tsx -------------------------------------------------------------------------------- /src/components/features/MobileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/MobileDialog.tsx -------------------------------------------------------------------------------- /src/components/features/NewProjectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/NewProjectDialog.tsx -------------------------------------------------------------------------------- /src/components/features/OnionSkinControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/OnionSkinControls.tsx -------------------------------------------------------------------------------- /src/components/features/PastePreviewOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PastePreviewOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/PlaybackControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PlaybackControls.tsx -------------------------------------------------------------------------------- /src/components/features/PlaybackOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PlaybackOverlay.tsx -------------------------------------------------------------------------------- /src/components/features/PlaybackStatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PlaybackStatusBar.tsx -------------------------------------------------------------------------------- /src/components/features/PreprocessingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PreprocessingSection.tsx -------------------------------------------------------------------------------- /src/components/features/ProjectCanvasPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ProjectCanvasPreview.tsx -------------------------------------------------------------------------------- /src/components/features/ProjectSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ProjectSettingsDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ProjectsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ProjectsDialog.tsx -------------------------------------------------------------------------------- /src/components/features/PublishToGalleryDialogWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PublishToGalleryDialogWrapper.tsx -------------------------------------------------------------------------------- /src/components/features/PublishedProjectSaveWarningDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/PublishedProjectSaveWarningDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ReactExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ReactExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/SaveToCloudDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/SaveToCloudDialog.tsx -------------------------------------------------------------------------------- /src/components/features/SessionExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/SessionExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/SilentSaveHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/SilentSaveHandler.tsx -------------------------------------------------------------------------------- /src/components/features/TextColorMappingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/TextColorMappingSection.tsx -------------------------------------------------------------------------------- /src/components/features/TextExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/TextExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/TimelineZoomControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/TimelineZoomControl.tsx -------------------------------------------------------------------------------- /src/components/features/ToolBehaviorSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ToolBehaviorSettings.tsx -------------------------------------------------------------------------------- /src/components/features/ToolManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ToolManager.tsx -------------------------------------------------------------------------------- /src/components/features/ToolPalette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ToolPalette.tsx -------------------------------------------------------------------------------- /src/components/features/ToolPalette_backup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ToolPalette_backup.tsx -------------------------------------------------------------------------------- /src/components/features/ToolPalette_new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ToolPalette_new.tsx -------------------------------------------------------------------------------- /src/components/features/ToolStatusManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ToolStatusManager.tsx -------------------------------------------------------------------------------- /src/components/features/TransparencySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/TransparencySection.tsx -------------------------------------------------------------------------------- /src/components/features/UpgradeToProDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/UpgradeToProDialog.tsx -------------------------------------------------------------------------------- /src/components/features/VideoExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/VideoExportDialog.tsx -------------------------------------------------------------------------------- /src/components/features/WelcomeAsciiAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/WelcomeAsciiAnimation.tsx -------------------------------------------------------------------------------- /src/components/features/WelcomeAsciiAnimationData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/WelcomeAsciiAnimationData.tsx -------------------------------------------------------------------------------- /src/components/features/WelcomeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/WelcomeDialog.tsx -------------------------------------------------------------------------------- /src/components/features/ZoomControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/ZoomControls.tsx -------------------------------------------------------------------------------- /src/components/features/effects/HueSaturationEffectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/effects/HueSaturationEffectPanel.tsx -------------------------------------------------------------------------------- /src/components/features/effects/LevelsEffectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/effects/LevelsEffectPanel.tsx -------------------------------------------------------------------------------- /src/components/features/effects/RemapCharactersEffectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/effects/RemapCharactersEffectPanel.tsx -------------------------------------------------------------------------------- /src/components/features/effects/RemapColorsEffectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/effects/RemapColorsEffectPanel.tsx -------------------------------------------------------------------------------- /src/components/features/effects/RemapColorsEffectPanel.tsx.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/effects/RemapColorsEffectPanel.tsx.backup -------------------------------------------------------------------------------- /src/components/features/effects/ScatterEffectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/effects/ScatterEffectPanel.tsx -------------------------------------------------------------------------------- /src/components/features/generators/DigitalRainSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/DigitalRainSettings.tsx -------------------------------------------------------------------------------- /src/components/features/generators/GeneratorsMappingTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/GeneratorsMappingTab.tsx -------------------------------------------------------------------------------- /src/components/features/generators/ParticlePhysicsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/ParticlePhysicsSettings.tsx -------------------------------------------------------------------------------- /src/components/features/generators/PlaceholderGeneratorSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/PlaceholderGeneratorSettings.tsx -------------------------------------------------------------------------------- /src/components/features/generators/RadioWavesSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/RadioWavesSettings.tsx -------------------------------------------------------------------------------- /src/components/features/generators/RainDropsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/RainDropsSettings.tsx -------------------------------------------------------------------------------- /src/components/features/generators/TurbulentNoiseSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/generators/TurbulentNoiseSettings.tsx -------------------------------------------------------------------------------- /src/components/features/preview/GeneratorPreviewCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/preview/GeneratorPreviewCanvas.tsx -------------------------------------------------------------------------------- /src/components/features/timeEffects/AddFramesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/timeEffects/AddFramesDialog.tsx -------------------------------------------------------------------------------- /src/components/features/timeEffects/SetFrameDurationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/timeEffects/SetFrameDurationDialog.tsx -------------------------------------------------------------------------------- /src/components/features/timeEffects/WaveWarpDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/timeEffects/WaveWarpDialog.tsx -------------------------------------------------------------------------------- /src/components/features/timeEffects/WiggleDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/features/timeEffects/WiggleDialog.tsx -------------------------------------------------------------------------------- /src/components/icons/GitHubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/icons/GitHubIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/GradientIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/icons/GradientIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/icons/README.md -------------------------------------------------------------------------------- /src/components/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/icons/index.ts -------------------------------------------------------------------------------- /src/components/icons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/icons/types.ts -------------------------------------------------------------------------------- /src/components/tools/AsciiBoxTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/AsciiBoxTool.tsx -------------------------------------------------------------------------------- /src/components/tools/AsciiTypeTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/AsciiTypeTool.tsx -------------------------------------------------------------------------------- /src/components/tools/BezierShapeTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/BezierShapeTool.tsx -------------------------------------------------------------------------------- /src/components/tools/DrawingTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/DrawingTool.tsx -------------------------------------------------------------------------------- /src/components/tools/EllipseTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/EllipseTool.tsx -------------------------------------------------------------------------------- /src/components/tools/EyedropperTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/EyedropperTool.tsx -------------------------------------------------------------------------------- /src/components/tools/FlipHorizontalTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/FlipHorizontalTool.tsx -------------------------------------------------------------------------------- /src/components/tools/FlipVerticalTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/FlipVerticalTool.tsx -------------------------------------------------------------------------------- /src/components/tools/GradientFillTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/GradientFillTool.tsx -------------------------------------------------------------------------------- /src/components/tools/LassoTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/LassoTool.tsx -------------------------------------------------------------------------------- /src/components/tools/MagicWandTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/MagicWandTool.tsx -------------------------------------------------------------------------------- /src/components/tools/PaintBucketTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/PaintBucketTool.tsx -------------------------------------------------------------------------------- /src/components/tools/RectangleTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/RectangleTool.tsx -------------------------------------------------------------------------------- /src/components/tools/SelectionTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/SelectionTool.tsx -------------------------------------------------------------------------------- /src/components/tools/TextTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/TextTool.tsx -------------------------------------------------------------------------------- /src/components/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/tools/index.ts -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/constants/bezierAutofill/ansiCharacters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/bezierAutofill/ansiCharacters.ts -------------------------------------------------------------------------------- /src/constants/bezierAutofill/ansiCharacters_backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/bezierAutofill/ansiCharacters_backup.ts -------------------------------------------------------------------------------- /src/constants/bezierAutofill/blockCharacters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/bezierAutofill/blockCharacters.ts -------------------------------------------------------------------------------- /src/constants/bezierAutofill/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/bezierAutofill/index.ts -------------------------------------------------------------------------------- /src/constants/bezierAutofill/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/bezierAutofill/types.ts -------------------------------------------------------------------------------- /src/constants/boxDrawingStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/boxDrawingStyles.ts -------------------------------------------------------------------------------- /src/constants/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/colors.ts -------------------------------------------------------------------------------- /src/constants/defaultCharacterPalettes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/defaultCharacterPalettes.ts -------------------------------------------------------------------------------- /src/constants/defaultPalettes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/defaultPalettes.ts -------------------------------------------------------------------------------- /src/constants/effectsDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/effectsDefaults.ts -------------------------------------------------------------------------------- /src/constants/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/features.ts -------------------------------------------------------------------------------- /src/constants/figletFonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/figletFonts.ts -------------------------------------------------------------------------------- /src/constants/fonts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/fonts.d.ts -------------------------------------------------------------------------------- /src/constants/fonts.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/fonts.d.ts.map -------------------------------------------------------------------------------- /src/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/fonts.ts -------------------------------------------------------------------------------- /src/constants/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/generators.ts -------------------------------------------------------------------------------- /src/constants/hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/hotkeys.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/onionSkin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/onionSkin.ts -------------------------------------------------------------------------------- /src/constants/timeEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/timeEffects.ts -------------------------------------------------------------------------------- /src/constants/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/constants/version.ts -------------------------------------------------------------------------------- /src/contexts/CanvasContext.ts: -------------------------------------------------------------------------------- 1 | export * from './CanvasContext/index'; 2 | -------------------------------------------------------------------------------- /src/contexts/CanvasContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/CanvasContext.tsx -------------------------------------------------------------------------------- /src/contexts/CanvasContext/CanvasProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/CanvasContext/CanvasProvider.tsx -------------------------------------------------------------------------------- /src/contexts/CanvasContext/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/CanvasContext/context.ts -------------------------------------------------------------------------------- /src/contexts/CanvasContext/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/CanvasContext/index.ts -------------------------------------------------------------------------------- /src/contexts/CanvasContext/useCanvasContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/CanvasContext/useCanvasContext.ts -------------------------------------------------------------------------------- /src/contexts/CanvasContext/useCanvasDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/CanvasContext/useCanvasDimensions.ts -------------------------------------------------------------------------------- /src/contexts/ModalContext.ts: -------------------------------------------------------------------------------- 1 | export * from './ModalContext/index'; 2 | -------------------------------------------------------------------------------- /src/contexts/ModalContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ModalContext.tsx -------------------------------------------------------------------------------- /src/contexts/ModalContext/ModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ModalContext/ModalProvider.tsx -------------------------------------------------------------------------------- /src/contexts/ModalContext/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ModalContext/context.ts -------------------------------------------------------------------------------- /src/contexts/ModalContext/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ModalContext/index.ts -------------------------------------------------------------------------------- /src/contexts/ModalContext/useModalContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ModalContext/useModalContext.ts -------------------------------------------------------------------------------- /src/contexts/ThemeContext.ts: -------------------------------------------------------------------------------- 1 | export * from './ThemeContext/index'; 2 | -------------------------------------------------------------------------------- /src/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /src/contexts/ThemeContext/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ThemeContext/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/contexts/ThemeContext/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ThemeContext/context.ts -------------------------------------------------------------------------------- /src/contexts/ThemeContext/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ThemeContext/index.ts -------------------------------------------------------------------------------- /src/contexts/ThemeContext/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/contexts/ThemeContext/useTheme.ts -------------------------------------------------------------------------------- /src/hooks/useAdminProjectLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useAdminProjectLoader.ts -------------------------------------------------------------------------------- /src/hooks/useAnimationHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useAnimationHistory.ts -------------------------------------------------------------------------------- /src/hooks/useAnimationPlayback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useAnimationPlayback.ts -------------------------------------------------------------------------------- /src/hooks/useAsciiBoxTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useAsciiBoxTool.ts -------------------------------------------------------------------------------- /src/hooks/useAsciiTypePlacement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useAsciiTypePlacement.ts -------------------------------------------------------------------------------- /src/hooks/useAsciiTypeTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useAsciiTypeTool.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasDragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasDragAndDrop.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasLassoSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasLassoSelection.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasMagicWandSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasMagicWandSelection.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasMouseHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasMouseHandlers.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasRenderer.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasRenderer.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasRenderer.ts.backup -------------------------------------------------------------------------------- /src/hooks/useCanvasSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasSelection.ts -------------------------------------------------------------------------------- /src/hooks/useCanvasState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCanvasState.ts -------------------------------------------------------------------------------- /src/hooks/useCloudDialogState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCloudDialogState.ts -------------------------------------------------------------------------------- /src/hooks/useCloudProjectActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCloudProjectActions.ts -------------------------------------------------------------------------------- /src/hooks/useCropToSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useCropToSelection.ts -------------------------------------------------------------------------------- /src/hooks/useDrawingTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useDrawingTool.ts -------------------------------------------------------------------------------- /src/hooks/useEffectsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useEffectsHistory.ts -------------------------------------------------------------------------------- /src/hooks/useFlipUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useFlipUtilities.ts -------------------------------------------------------------------------------- /src/hooks/useFrameNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useFrameNavigation.ts -------------------------------------------------------------------------------- /src/hooks/useFrameSynchronization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useFrameSynchronization.ts -------------------------------------------------------------------------------- /src/hooks/useGeneratorPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useGeneratorPreview.ts -------------------------------------------------------------------------------- /src/hooks/useGradientFillTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useGradientFillTool.ts -------------------------------------------------------------------------------- /src/hooks/useHoverPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useHoverPreview.ts -------------------------------------------------------------------------------- /src/hooks/useKeyboardShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useKeyboardShortcuts.ts -------------------------------------------------------------------------------- /src/hooks/useLayoutState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useLayoutState.ts -------------------------------------------------------------------------------- /src/hooks/useMemoizedGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useMemoizedGrid.ts -------------------------------------------------------------------------------- /src/hooks/useOnionSkinRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useOnionSkinRenderer.ts -------------------------------------------------------------------------------- /src/hooks/useOptimizedPlayback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useOptimizedPlayback.ts -------------------------------------------------------------------------------- /src/hooks/useOptimizedRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useOptimizedRender.ts -------------------------------------------------------------------------------- /src/hooks/usePasteMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/usePasteMode.ts -------------------------------------------------------------------------------- /src/hooks/usePerformanceMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/usePerformanceMonitor.ts -------------------------------------------------------------------------------- /src/hooks/usePlaybackFpsMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/usePlaybackFpsMonitor.ts -------------------------------------------------------------------------------- /src/hooks/usePlaybackOnlySnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/usePlaybackOnlySnapshot.ts -------------------------------------------------------------------------------- /src/hooks/useProjectDialogState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useProjectDialogState.ts -------------------------------------------------------------------------------- /src/hooks/useProjectFileActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useProjectFileActions.ts -------------------------------------------------------------------------------- /src/hooks/useTextTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useTextTool.ts -------------------------------------------------------------------------------- /src/hooks/useTimeEffectsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useTimeEffectsHistory.ts -------------------------------------------------------------------------------- /src/hooks/useToolBehavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useToolBehavior.ts -------------------------------------------------------------------------------- /src/hooks/useWelcomeDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useWelcomeDialog.ts -------------------------------------------------------------------------------- /src/hooks/useZoomControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/hooks/useZoomControls.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.css.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/index.css.backup -------------------------------------------------------------------------------- /src/lib/figletClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/lib/figletClient.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/CommunityPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/pages/CommunityPage.tsx -------------------------------------------------------------------------------- /src/pages/EditorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/pages/EditorPage.tsx -------------------------------------------------------------------------------- /src/stores/animationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/animationStore.ts -------------------------------------------------------------------------------- /src/stores/asciiBoxStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/asciiBoxStore.ts -------------------------------------------------------------------------------- /src/stores/asciiTypeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/asciiTypeStore.ts -------------------------------------------------------------------------------- /src/stores/bezierStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/bezierStore.ts -------------------------------------------------------------------------------- /src/stores/canvasStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/canvasStore.ts -------------------------------------------------------------------------------- /src/stores/characterPaletteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/characterPaletteStore.ts -------------------------------------------------------------------------------- /src/stores/effectsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/effectsStore.ts -------------------------------------------------------------------------------- /src/stores/exportStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/exportStore.ts -------------------------------------------------------------------------------- /src/stores/generatorsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/generatorsStore.ts -------------------------------------------------------------------------------- /src/stores/gradientStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/gradientStore.ts -------------------------------------------------------------------------------- /src/stores/importStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/importStore.ts -------------------------------------------------------------------------------- /src/stores/paletteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/paletteStore.ts -------------------------------------------------------------------------------- /src/stores/playbackOnlyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/playbackOnlyStore.ts -------------------------------------------------------------------------------- /src/stores/previewStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/previewStore.ts -------------------------------------------------------------------------------- /src/stores/projectMetadataStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/projectMetadataStore.ts -------------------------------------------------------------------------------- /src/stores/timeEffectsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/timeEffectsStore.ts -------------------------------------------------------------------------------- /src/stores/toolStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/stores/toolStore.ts -------------------------------------------------------------------------------- /src/styles/bundled-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/styles/bundled-fonts.css -------------------------------------------------------------------------------- /src/types/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/effects.ts -------------------------------------------------------------------------------- /src/types/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/export.ts -------------------------------------------------------------------------------- /src/types/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/generators.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/mp4box.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/mp4box.d.ts -------------------------------------------------------------------------------- /src/types/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/palette.ts -------------------------------------------------------------------------------- /src/types/timeEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/timeEffects.ts -------------------------------------------------------------------------------- /src/types/welcomeDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/types/welcomeDialog.ts -------------------------------------------------------------------------------- /src/utils/asciiConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/asciiConverter.ts -------------------------------------------------------------------------------- /src/utils/bezierAutofillUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/bezierAutofillUtils.ts -------------------------------------------------------------------------------- /src/utils/bezierFillUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/bezierFillUtils.ts -------------------------------------------------------------------------------- /src/utils/bezierPathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/bezierPathUtils.ts -------------------------------------------------------------------------------- /src/utils/bezierStrokeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/bezierStrokeUtils.ts -------------------------------------------------------------------------------- /src/utils/boxDrawingEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/boxDrawingEngine.ts -------------------------------------------------------------------------------- /src/utils/brushUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/brushUtils.ts -------------------------------------------------------------------------------- /src/utils/canvasAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/canvasAnalysis.ts -------------------------------------------------------------------------------- /src/utils/canvasDPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/canvasDPI.ts -------------------------------------------------------------------------------- /src/utils/canvasSizeConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/canvasSizeConversion.ts -------------------------------------------------------------------------------- /src/utils/canvasTextRendering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/canvasTextRendering.ts -------------------------------------------------------------------------------- /src/utils/characterPaletteValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/characterPaletteValidation.ts -------------------------------------------------------------------------------- /src/utils/clipboardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/clipboardUtils.ts -------------------------------------------------------------------------------- /src/utils/colorConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/colorConversion.ts -------------------------------------------------------------------------------- /src/utils/cropUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/cropUtils.ts -------------------------------------------------------------------------------- /src/utils/directCanvasRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/directCanvasRenderer.ts -------------------------------------------------------------------------------- /src/utils/dirtyTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/dirtyTracker.ts -------------------------------------------------------------------------------- /src/utils/effectsProcessing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/effectsProcessing.ts -------------------------------------------------------------------------------- /src/utils/exportDataCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/exportDataCollector.ts -------------------------------------------------------------------------------- /src/utils/exportPixelCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/exportPixelCalculator.ts -------------------------------------------------------------------------------- /src/utils/exportRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/exportRenderer.ts -------------------------------------------------------------------------------- /src/utils/fillArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/fillArea.ts -------------------------------------------------------------------------------- /src/utils/flipUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/flipUtils.ts -------------------------------------------------------------------------------- /src/utils/font/fontLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/font/fontLoader.ts -------------------------------------------------------------------------------- /src/utils/font/fontRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/font/fontRegistry.ts -------------------------------------------------------------------------------- /src/utils/font/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/font/index.ts -------------------------------------------------------------------------------- /src/utils/font/opentypePathConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/font/opentypePathConverter.ts -------------------------------------------------------------------------------- /src/utils/font/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/font/types.ts -------------------------------------------------------------------------------- /src/utils/fontDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/fontDetection.ts -------------------------------------------------------------------------------- /src/utils/fontLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/fontLoader.ts -------------------------------------------------------------------------------- /src/utils/fontMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/fontMetrics.ts -------------------------------------------------------------------------------- /src/utils/frameUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/frameUtils.ts -------------------------------------------------------------------------------- /src/utils/generators/digitalRain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/generators/digitalRain.ts -------------------------------------------------------------------------------- /src/utils/generators/generatorEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/generators/generatorEngine.ts -------------------------------------------------------------------------------- /src/utils/generators/particlePhysics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/generators/particlePhysics.ts -------------------------------------------------------------------------------- /src/utils/generators/radioWaves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/generators/radioWaves.ts -------------------------------------------------------------------------------- /src/utils/generators/rainDrops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/generators/rainDrops.ts -------------------------------------------------------------------------------- /src/utils/generators/turbulentNoise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/generators/turbulentNoise.ts -------------------------------------------------------------------------------- /src/utils/gradientEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/gradientEngine.ts -------------------------------------------------------------------------------- /src/utils/gridColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/gridColor.ts -------------------------------------------------------------------------------- /src/utils/jsonImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/jsonImporter.ts -------------------------------------------------------------------------------- /src/utils/mediaProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/mediaProcessor.ts -------------------------------------------------------------------------------- /src/utils/paletteValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/paletteValidation.ts -------------------------------------------------------------------------------- /src/utils/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/performance.ts -------------------------------------------------------------------------------- /src/utils/polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/polygon.ts -------------------------------------------------------------------------------- /src/utils/renderScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/renderScheduler.ts -------------------------------------------------------------------------------- /src/utils/selectionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/selectionUtils.ts -------------------------------------------------------------------------------- /src/utils/sessionImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/sessionImporter.ts -------------------------------------------------------------------------------- /src/utils/svgExportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/svgExportUtils.ts -------------------------------------------------------------------------------- /src/utils/timeEffectsProcessing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/src/utils/timeEffectsProcessing.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronFoxly/Ascii-Motion/HEAD/vite.config.ts --------------------------------------------------------------------------------