├── .env.example ├── .firebaserc ├── .gitattributes ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── convert_to_webp.sh ├── documents ├── FileSystemAccessAPI.md ├── charge_tables_migration.sql ├── create_functions.sql ├── dump_format_v2.md ├── filesystem-architecture.md ├── filesystem-data-structures.md ├── filesystem-summary.md ├── film-procedural-effects.md ├── textlift-bubble-positioning.md └── vector-layer-implementation-plan.md ├── favicon2.png ├── firebase.json ├── generate-favicons.js ├── index.html ├── package.json ├── postcss.config.cjs ├── public ├── assets │ └── charactersheet.webp ├── comics │ └── aiai61555228 │ │ ├── intro1.jpg │ │ ├── intro2.jpg │ │ └── intro3.jpg ├── favicons │ ├── apple-touch-icon.webp │ ├── favicon-128x128.webp │ ├── favicon-16x16.webp │ ├── favicon-192x192.webp │ ├── favicon-32x32.webp │ ├── favicon-48x48.webp │ ├── favicon-512x512.webp │ └── favicon-64x64.webp ├── fonts │ ├── GenEiAntiqueNv5-M.woff2 │ ├── GenEiKiwamiGo.woff2 │ ├── GenEiLateGoN_v2.woff2 │ ├── GenEiLateMinN_v2.woff2 │ ├── GenEiMGothic2-Black.woff2 │ ├── GenEiPOPle-Bk.woff2 │ ├── HuiFont29.woff2 │ └── MakibaFont13.woff2 ├── postingGuideline.html ├── privacy.html └── termsOfService.html ├── scripts └── add-embed.js ├── src ├── App.svelte ├── about │ ├── About.svelte │ ├── AboutContentEn.svelte │ ├── AboutContentJa.svelte │ ├── StructureTree.svelte │ ├── aboutStore.ts │ └── structureTreeStore.ts ├── app.postcss ├── assets │ ├── about.webp │ ├── ads-leave.webp │ ├── aipictors_logo_0.webp │ ├── angle.webp │ ├── auth │ │ ├── github.svg │ │ └── google.svg │ ├── barricade.webp │ ├── bell.webp │ ├── binoculars.webp │ ├── bubbleLayer │ │ ├── bubble-drop.webp │ │ ├── bubble-lock.webp │ │ ├── bubble-offset.webp │ │ ├── bubble-rotate.webp │ │ ├── bubble-scale.webp │ │ ├── bubble-unlock.webp │ │ ├── bubble-zminus.webp │ │ ├── bubble-zplus.webp │ │ ├── bubble.webp │ │ ├── circle.webp │ │ ├── drag.webp │ │ ├── newlayer.webp │ │ ├── radius.webp │ │ ├── remove.webp │ │ ├── scribble.webp │ │ ├── tail-mid.webp │ │ ├── tail-tip.webp │ │ └── unite.webp │ ├── cabinet.webp │ ├── clipboard.webp │ ├── download.webp │ ├── drop.webp │ ├── dump-restore.webp │ ├── embedded.webp │ ├── farm │ │ └── private.webp │ ├── feathral.webp │ ├── file-manager.webp │ ├── fileManager │ │ ├── duplicate.webp │ │ ├── file.webp │ │ ├── folder.webp │ │ ├── new-file.webp │ │ ├── new-folder.webp │ │ ├── package-export.webp │ │ ├── package-import.webp │ │ ├── pagename-mode.webp │ │ ├── paste.webp │ │ ├── rename.webp │ │ └── trash.webp │ ├── filmlist │ │ ├── angleedit.webp │ │ ├── delete.webp │ │ ├── duplicate.webp │ │ ├── effect.webp │ │ ├── eraser.webp │ │ ├── eye.webp │ │ ├── generate.webp │ │ ├── inpaint.webp │ │ ├── outpainting.webp │ │ ├── popup.webp │ │ ├── punch.webp │ │ ├── scribble.webp │ │ ├── textedit.webp │ │ ├── textlift.webp │ │ ├── trash.webp │ │ └── upscale.webp │ ├── fonts │ │ └── labels │ │ │ ├── BIZ-UDGothic.webp │ │ │ ├── BIZ-UDMincho.webp │ │ │ ├── BIZ-UDPGothic.webp │ │ │ ├── BIZ-UDPMincho.webp │ │ │ ├── Cherry-Bomb-One.webp │ │ │ ├── Darumadrop-One.webp │ │ │ ├── Dela-Gothic-One.webp │ │ │ ├── DotGothic16.webp │ │ │ ├── Hachi-Maru-Pop.webp │ │ │ ├── Hina-Mincho.webp │ │ │ ├── IBM-Plex-Sans-JP.webp │ │ │ ├── Kaisei-Decol.webp │ │ │ ├── Kaisei-HarunoUmi.webp │ │ │ ├── Kaisei-Opti.webp │ │ │ ├── Kaisei-Tokumin.webp │ │ │ ├── Kiwi-Maru.webp │ │ │ ├── Klee-One.webp │ │ │ ├── Kosugi-Maru.webp │ │ │ ├── Kosugi.webp │ │ │ ├── M-PLUS-1-Code.webp │ │ │ ├── M-PLUS-1.webp │ │ │ ├── M-PLUS-1p.webp │ │ │ ├── M-PLUS-2.webp │ │ │ ├── M-PLUS-Rounded-1c.webp │ │ │ ├── Mochiy-Pop-One.webp │ │ │ ├── Mochiy-Pop-P-One.webp │ │ │ ├── New-Tegomin.webp │ │ │ ├── Noto-Sans-JP.webp │ │ │ ├── Noto-Serif-JP.webp │ │ │ ├── Potta-One.webp │ │ │ ├── Rampart-One.webp │ │ │ ├── Reggae-One.webp │ │ │ ├── RocknRoll-One.webp │ │ │ ├── Sawarabi-Gothic.webp │ │ │ ├── Shippori-Antique-B1.webp │ │ │ ├── Shippori-Antique.webp │ │ │ ├── Shippori-Mincho-B1.webp │ │ │ ├── Shippori-Mincho.webp │ │ │ ├── Shizuru.webp │ │ │ ├── Slackside-One.webp │ │ │ ├── Stick.webp │ │ │ ├── Yomogi.webp │ │ │ ├── Yuji-Boku.webp │ │ │ ├── Yuji-Mai.webp │ │ │ ├── Yuji-Syuku.webp │ │ │ ├── Yusei-Magic.webp │ │ │ ├── Zen-Antique-Soft.webp │ │ │ ├── Zen-Antique.webp │ │ │ ├── Zen-Kaku-Gothic-Antique.webp │ │ │ ├── Zen-Kaku-Gothic-New.webp │ │ │ ├── Zen-Kurenaido.webp │ │ │ ├── Zen-Maru-Gothic.webp │ │ │ ├── Zen-Old-Mincho.webp │ │ │ ├── ふい字.webp │ │ │ ├── まきばフォント.webp │ │ │ ├── 源暎きわみゴ.webp │ │ │ ├── 源暎ぽっぷる.webp │ │ │ ├── 源暎アンチック.webp │ │ │ ├── 源暎エムゴ.webp │ │ │ ├── 源暎ラテゴ.webp │ │ │ └── 源暎ラテミン.webp │ ├── frameInspector │ │ └── coffee-machine-12-64.webp │ ├── frameLayer │ │ ├── decrement.webp │ │ ├── delete.webp │ │ ├── duplicate.webp │ │ ├── expand-horizontal.webp │ │ ├── expand-vertical.webp │ │ ├── fit.webp │ │ ├── flip-horizontal.webp │ │ ├── flip-vertical.webp │ │ ├── increment.webp │ │ ├── insert-horizontal.webp │ │ ├── insert-vertical.webp │ │ ├── newlayer.webp │ │ ├── reset-padding.webp │ │ ├── rotate.webp │ │ ├── scale.webp │ │ ├── scribble.webp │ │ ├── shift.webp │ │ ├── slant-horizontal.webp │ │ ├── slant-vertical.webp │ │ ├── split-horizontal.webp │ │ ├── split-vertical.webp │ │ ├── swap.webp │ │ ├── unshift.webp │ │ ├── visibility1.webp │ │ ├── visibility2.webp │ │ ├── visibility3.webp │ │ ├── zminus.webp │ │ └── zplus.webp │ ├── generate-image.webp │ ├── get-old.webp │ ├── get.webp │ ├── horizontal.webp │ ├── json.webp │ ├── kontext │ │ ├── manga-black.webp │ │ └── manga-gray.webp │ ├── movie.webp │ ├── new-book.webp │ ├── new-page.webp │ ├── page-bubbles.webp │ ├── page-clipboard.webp │ ├── page-cut-vertical.webp │ ├── page-cut.webp │ ├── page-imaging.webp │ ├── page-insert-vertical.webp │ ├── page-insert.webp │ ├── page-mark-on.webp │ ├── page-mark.webp │ ├── page-paste.webp │ ├── page-trash.webp │ ├── page-tweak.webp │ ├── pin-white.webp │ ├── pin.webp │ ├── post.webp │ ├── redo.webp │ ├── reference-selected.webp │ ├── reference.webp │ ├── reset.webp │ ├── ruler.webp │ ├── spryt.webp │ ├── stamp.webp │ ├── studio.webp │ ├── svelte.svg │ ├── telescope.webp │ ├── title-bubble.webp │ ├── title-control-panel.webp │ ├── transparent.webp │ ├── trash.webp │ ├── undo.webp │ ├── unembedded.webp │ ├── vertical.webp │ ├── video.webp │ ├── videomaker │ │ ├── pause.webp │ │ └── play.webp │ ├── viewer │ │ ├── left.webp │ │ └── right.webp │ ├── viewerLayer │ │ └── play.webp │ └── write.webp ├── bookeditor │ ├── BookWorkspace.svelte │ ├── BookWorkspaceOperators.ts │ ├── TemplateChooser.svelte │ ├── TemplateSample.svelte │ ├── bookEditorUtils.ts │ ├── bubbleinspector │ │ ├── BubbleInspector.svelte │ │ ├── BubbleInspectorAppendix.svelte │ │ ├── BubbleSample.svelte │ │ ├── BubbleTemplateSample.svelte │ │ ├── FontChooser.svelte │ │ ├── HistoryStorage.svelte │ │ ├── ShapeChooser.svelte │ │ ├── WebFontList.svelte │ │ ├── WebFontListItem.svelte │ │ ├── bubbleInspectorStore.ts │ │ ├── fontStore.ts │ │ └── shapeStore.ts │ ├── effectchooser │ │ ├── EffectChooser.svelte │ │ └── effectChooserStore.ts │ ├── fontLoading.ts │ ├── frameinspector │ │ ├── BarrierIcon.svelte │ │ ├── FilmEffect.svelte │ │ ├── FilmList.svelte │ │ ├── FilmListItem.svelte │ │ ├── FilmProceduralColorParam.svelte │ │ ├── FilmProceduralControls.svelte │ │ ├── FilmProceduralNumberParam.svelte │ │ ├── FilmProceduralTextParam.svelte │ │ ├── FrameInspector.svelte │ │ └── frameInspectorStore.ts │ ├── operations │ │ ├── buildBookEditor.ts │ │ ├── commitOperations.ts │ │ ├── filmMergeOperations.ts │ │ ├── filmStackOperations.ts │ │ └── pageOperations.ts │ ├── pageinspector │ │ ├── PageInspector.svelte │ │ └── pageInspectorStore.ts │ ├── templateChooserStore.ts │ └── workspaceStore.ts ├── box.css ├── bubbleBucket │ ├── BubbleBucket.svelte │ ├── BubbleBucketItem.svelte │ └── bubbleBucketStore.ts ├── controlpanel │ ├── ControlPanel.svelte │ └── controlPanelStore.ts ├── customTypes.d.ts ├── dolphinroom │ ├── DolphinRoom.svelte │ ├── DolphinRoomView.svelte │ ├── MediaActionMenu.svelte │ ├── TimelineItemView.svelte │ ├── components │ │ └── AngleControls.svelte │ ├── constants.ts │ ├── dolphinRoomStore.ts │ ├── dragActions.ts │ ├── frameCapture.ts │ ├── generationActions.ts │ ├── mediaActions.ts │ ├── mediaLoaders.ts │ ├── messageActions.ts │ ├── objectUrlManager.ts │ ├── timelineActions.ts │ ├── timelineSideEffects.ts │ ├── timelineTypes.ts │ └── types.ts ├── downloader │ ├── Downloader.svelte │ └── downloaderStore.ts ├── filemanager │ ├── FileManager.svelte │ ├── FileManagerFile.svelte │ ├── FileManagerFolder.svelte │ ├── FileManagerFolderTail.svelte │ ├── FileManagerInsertZone.svelte │ ├── FileManagerRoot.svelte │ ├── NewStorageWizard.svelte │ ├── currentFile.ts │ ├── developmentFileSystem.ts │ ├── fileImages.ts │ ├── fileManagerStore.ts │ ├── localFileSystem.ts │ ├── productionFileSystem.ts │ ├── saveStatusStore.ts │ ├── shareFileSystem.ts │ ├── specialFolders.ts │ ├── test │ │ ├── filesystem.correct.typeA.json │ │ ├── filesystem.correct.typeB.json │ │ ├── filesystem.correct.typeC.json │ │ ├── filesystem.initial.json │ │ ├── filesystem.roster.json │ │ └── garbagecollection.vitest.ts │ └── warehouse.ts ├── firebase.ts ├── gallery │ ├── Gallery.svelte │ ├── GalleryElement.svelte │ ├── GalleryMember.svelte │ ├── MediaFrame.svelte │ ├── MediaLoading.svelte │ ├── MediaViewer.svelte │ ├── PostToPublicMaterials.svelte │ ├── gallery.ts │ └── mediaViewerStore.ts ├── generator │ ├── BatchImaging.svelte │ ├── BatchImagingFlux.svelte │ ├── ImageGenerator.svelte │ ├── ImageGeneratorCloud.svelte │ ├── ImageGeneratorPlain.svelte │ ├── ImageGeneratorProcedural.svelte │ ├── ImageGeneratorStableDiffusion.svelte │ ├── ImageMaskDialog.svelte │ ├── ImageProvider.svelte │ ├── ImagingModes.svelte │ ├── ImagingProgressBar.svelte │ ├── Upscaler.svelte │ ├── VideoGenerationModes.svelte │ ├── VideoGenerator.svelte │ ├── batchImagingStore.ts │ ├── imageGeneratorStore.ts │ ├── sdwebui.ts │ └── videoModelConfig.ts ├── lib │ ├── book │ │ ├── book.ts │ │ ├── envelope.ts │ │ ├── envelopeZip.ts │ │ ├── imagePacking.ts │ │ └── types │ │ │ ├── layout.ts │ │ │ ├── notebook.ts │ │ │ ├── richChat.ts │ │ │ └── storyboard.ts │ ├── filesystem │ │ ├── contentStorage │ │ │ ├── backblazeImageStorage.ts │ │ │ ├── contentStorage.ts │ │ │ └── firebaseImageStorage.ts │ │ ├── fileSystem.ts │ │ ├── fileSystemTools.ts │ │ ├── firebaseFileSystem.ts │ │ ├── fsaFileSystem.ts │ │ ├── indexeddbFileSystem.ts │ │ ├── mediaConverter.ts │ │ ├── mockFileSystem.ts │ │ ├── sqlite │ │ │ ├── BlobStore.ts │ │ │ ├── SqlJsAdapter.test.ts │ │ │ └── SqlJsAdapter.ts │ │ └── supabaseFileSystem.ts │ ├── fsafilesystem.test.ts │ ├── indexeddbfilesystem.test.ts │ ├── layeredCanvas │ │ ├── dataModels │ │ │ ├── bubble.ts │ │ │ ├── effect.ts │ │ │ ├── film.ts │ │ │ ├── frameTree.ts │ │ │ ├── media.ts │ │ │ └── proceduralEffects.ts │ │ ├── layers │ │ │ ├── SampleLayer.ts │ │ │ ├── arrayLayer.ts │ │ │ ├── bubbleLayer.ts │ │ │ ├── floorLayer.ts │ │ │ ├── frameLayer.ts │ │ │ ├── inlinePainterLayer.ts │ │ │ ├── paperRendererLayer.ts │ │ │ ├── undoLayer.ts │ │ │ └── viewerLayer.ts │ │ ├── system │ │ │ ├── keyCache.ts │ │ │ ├── layeredCanvas.ts │ │ │ └── paperArray.ts │ │ └── tools │ │ │ ├── bookRenderer.ts │ │ │ ├── dragUtil.ts │ │ │ ├── draw │ │ │ ├── bubbleGraphic.ts │ │ │ ├── clickableIcon.ts │ │ │ ├── drawFilmStack.ts │ │ │ ├── drawText.ts │ │ │ ├── pathTools.ts │ │ │ ├── proceduralEffectRenderer.ts │ │ │ ├── renderBubble.ts │ │ │ ├── richText.ts │ │ │ ├── selectionFrame.ts │ │ │ ├── typeSetting.ts │ │ │ └── verticalText.ts │ │ │ ├── fileUtil.ts │ │ │ ├── focusKeeper.ts │ │ │ ├── frameExamples.ts │ │ │ ├── geometry │ │ │ ├── bubbleGeometry.ts │ │ │ ├── clipPolygonByLine.ts │ │ │ ├── convertPoint.ts │ │ │ ├── frameGeometry.ts │ │ │ ├── geometry.ts │ │ │ ├── geometry.vitest.ts │ │ │ ├── quickHull.ts │ │ │ └── trapezoid.ts │ │ │ ├── googleFont.ts │ │ │ ├── grid.ts │ │ │ ├── haiku.ts │ │ │ ├── imageUtil.ts │ │ │ ├── kinsoku.ts │ │ │ ├── kinsoku.vitest.js │ │ │ ├── misc.ts │ │ │ ├── paper.d.ts │ │ │ ├── perfectFreehandUtil.ts │ │ │ ├── pictureControl.ts │ │ │ └── rectHandle.ts │ └── sample.test.ts ├── locales │ ├── en.json │ ├── index.ts │ └── ja.json ├── main.ts ├── mangaview │ ├── MangaView.svelte │ └── PublicationInfo.svelte ├── materialBucket │ ├── MaterialBucket.svelte │ ├── MaterialBucketContent.svelte │ ├── MaterialGallery.svelte │ ├── PublicMaterialsGallery.svelte │ ├── RosterGallery.svelte │ ├── WarehouseGallery.svelte │ ├── materialBucketStore.ts │ ├── materialOperations.ts │ └── tweakUiStore.ts ├── notebook │ ├── AutoSizeTextarea.svelte │ ├── Notebook.svelte │ ├── NotebookCharacter.svelte │ ├── NotebookCharacterList.svelte │ ├── NotebookManual.svelte │ ├── NotebookTextarea.svelte │ ├── Roster.svelte │ ├── ThinkerSelector.svelte │ ├── characterExport.ts │ ├── makePage.ts │ ├── notebookStore.ts │ └── rosterStore.ts ├── painter │ ├── FreehandInspector.svelte │ ├── FreehandInspectorEasing.svelte │ ├── FreehandInspectorPalette.svelte │ ├── FreehandInspectorTaper.svelte │ ├── Painter.svelte │ └── easing.ts ├── preferences.ts ├── publication │ ├── Publication.svelte │ └── SocialCard.svelte ├── rootelements │ ├── AboutButton.svelte │ ├── BaseRootButton.svelte │ ├── BellButton.svelte │ ├── CabinetButton.svelte │ ├── DolphinRoomButton.svelte │ ├── DownloadButton.svelte │ ├── JumpButton.svelte │ ├── MaterialBucketButton.svelte │ ├── NewBookButton.svelte │ ├── PostButton.svelte │ ├── RulerButton.svelte │ ├── SaveOffButton.svelte │ └── VideoButton.svelte ├── stores │ └── i18n.ts ├── supabase.ts ├── t.json ├── toolbar │ ├── AvatarIcon.svelte │ ├── LanguageSwitcher.svelte │ ├── ToolBar.svelte │ └── UserProfile.svelte ├── transfer │ ├── Dump.svelte │ └── Undump.svelte ├── uiStore.ts ├── utils │ ├── AngleEditDialog.svelte │ ├── AuthForm.svelte │ ├── AutoSizeCanvas.svelte │ ├── BookArchiver.svelte │ ├── CanvasBrowser.svelte │ ├── Comic.svelte │ ├── ConfirmDialog.svelte │ ├── DebugOnly.svelte │ ├── Drawer.svelte │ ├── EmbeddedHtml.svelte │ ├── ExponentialRangeSlider.svelte │ ├── ExponentialSliderEdit.svelte │ ├── Feathral.svelte │ ├── FeathralCost.svelte │ ├── FileBrowser.svelte │ ├── FullScreenLoading.svelte │ ├── FullScreenProgress.svelte │ ├── ImageMaskCanvas.svelte │ ├── ImageMaskDialog.svelte │ ├── InpaintDialog.svelte │ ├── JsonReader.svelte │ ├── License.svelte │ ├── Loading.svelte │ ├── MovieGenerator.svelte │ ├── NumberEdit.svelte │ ├── Parameter.svelte │ ├── PassiveToolTip.svelte │ ├── PlainDropdown.svelte │ ├── Popup.svelte │ ├── Progress.svelte │ ├── ReferenceImageDropzone.svelte │ ├── RenameEdit.svelte │ ├── SliderEdit.svelte │ ├── SpreadCanvas.svelte │ ├── Spreader.svelte │ ├── TextEditDialog.svelte │ ├── TextLiftDialog.svelte │ ├── TreeView.svelte │ ├── UndoManager.ts │ ├── accountStore.ts │ ├── ads │ │ ├── AdContainer.svelte │ │ └── AdPanel.svelte │ ├── analyticsEvent.ts │ ├── analyzeImage.ts │ ├── angleEditFilm.ts │ ├── asyncStore.ts │ ├── backUpIndexedDB.ts │ ├── billingData │ │ ├── sprytPackages.ts │ │ └── subscriptionPlans.ts │ ├── bookArchiverStore.ts │ ├── coalescingWork.ts │ ├── colorpicker │ │ ├── ColorPickerDialog.svelte │ │ ├── ColorPickerLabel.svelte │ │ └── colorPickerStore.ts │ ├── delayedCommiter.ts │ ├── developmentFlagStore.ts │ ├── dropDataHandler.ts │ ├── dropzone.ts │ ├── edgeFunctions │ │ ├── calculateCost.ts │ │ ├── edgeFunctions.ts │ │ └── types │ │ │ ├── adviseTypes.d.ts │ │ │ ├── cloudFileTypes.d.ts │ │ │ ├── imagingTypes.d.ts │ │ │ ├── materialTypes.d.ts │ │ │ ├── publication.d.ts │ │ │ ├── searchTypes.d.ts │ │ │ ├── snsTypes.d.ts │ │ │ └── transformTextTypes.d.ts │ ├── eraserFilm.ts │ ├── executeProcessAndNotify.ts │ ├── feathralImaging.ts │ ├── fileDroppableList.ts │ ├── filmTools.ts │ ├── filmprocessor │ │ └── filmProcessorStore.ts │ ├── fromHiruma.ts │ ├── garbageCollection.ts │ ├── generateMovie.ts │ ├── harmony.ts │ ├── hiruma.ts │ ├── hoverKeyStore.ts │ ├── inpaintFilm.ts │ ├── loadingStore.ts │ ├── moveInArray.ts │ ├── observeResize.ts │ ├── observeWithin.ts │ ├── outPaintFilm.ts │ ├── passiveToolTipStore.ts │ ├── persistentText.ts │ ├── portal.ts │ ├── promptHistoryAction.ts │ ├── pubsub.ts │ ├── punchImage.ts │ ├── reactUtil.ts │ ├── remoteMediaLoader.ts │ ├── resilientTask.ts │ ├── rmbg.ts │ ├── saver │ │ ├── copyToClipboard.ts │ │ ├── exportPrompts.ts │ │ ├── postToAiPictors.ts │ │ ├── renderPage.ts │ │ ├── saveAsPng.ts │ │ ├── saveAsPsd.ts │ │ └── saveAsZip.ts │ ├── selection.ts │ ├── shineEffect.ts │ ├── sortableList.ts │ ├── supabaseAuth │ │ ├── base64Url.ts │ │ └── readSupabaseSession.ts │ ├── textEditFilm.ts │ ├── textLiftFilm.ts │ ├── timeFormat.ts │ ├── upscaleImage.ts │ └── waitDialog.ts ├── videomaker │ ├── FrameResidenceTime.svelte │ ├── SeekBar.svelte │ ├── VideoMaker.svelte │ ├── VideoPlayer.svelte │ ├── buildProgram.ts │ ├── generateMovieFile.ts │ ├── generateScenes.ts │ └── renderProgram.ts ├── vite-env.d.ts └── weaver │ └── storyboard.ts ├── svelte.config.js ├── tailwind.config.cjs ├── test ├── calculateCost.test.ts ├── filmSerialization.test.ts ├── helpers.ts ├── setup.ts └── videoModelConfig.test.ts ├── testdata └── dump │ ├── testcase-v1.ndjson │ ├── testcase-v2.ndjson │ └── testcase.ndjson ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.svelte-check.json ├── vite.config.ts ├── vite.https.config.ts └── wrangler.toml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/.env.example -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json -diff 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ["jonigata"] 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/README.md -------------------------------------------------------------------------------- /convert_to_webp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/convert_to_webp.sh -------------------------------------------------------------------------------- /documents/FileSystemAccessAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/FileSystemAccessAPI.md -------------------------------------------------------------------------------- /documents/charge_tables_migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/charge_tables_migration.sql -------------------------------------------------------------------------------- /documents/create_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/create_functions.sql -------------------------------------------------------------------------------- /documents/dump_format_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/dump_format_v2.md -------------------------------------------------------------------------------- /documents/filesystem-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/filesystem-architecture.md -------------------------------------------------------------------------------- /documents/filesystem-data-structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/filesystem-data-structures.md -------------------------------------------------------------------------------- /documents/filesystem-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/filesystem-summary.md -------------------------------------------------------------------------------- /documents/film-procedural-effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/film-procedural-effects.md -------------------------------------------------------------------------------- /documents/textlift-bubble-positioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/textlift-bubble-positioning.md -------------------------------------------------------------------------------- /documents/vector-layer-implementation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/documents/vector-layer-implementation-plan.md -------------------------------------------------------------------------------- /favicon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/favicon2.png -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/firebase.json -------------------------------------------------------------------------------- /generate-favicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/generate-favicons.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/assets/charactersheet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/assets/charactersheet.webp -------------------------------------------------------------------------------- /public/comics/aiai61555228/intro1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/comics/aiai61555228/intro1.jpg -------------------------------------------------------------------------------- /public/comics/aiai61555228/intro2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/comics/aiai61555228/intro2.jpg -------------------------------------------------------------------------------- /public/comics/aiai61555228/intro3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/comics/aiai61555228/intro3.jpg -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/apple-touch-icon.webp -------------------------------------------------------------------------------- /public/favicons/favicon-128x128.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-128x128.webp -------------------------------------------------------------------------------- /public/favicons/favicon-16x16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-16x16.webp -------------------------------------------------------------------------------- /public/favicons/favicon-192x192.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-192x192.webp -------------------------------------------------------------------------------- /public/favicons/favicon-32x32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-32x32.webp -------------------------------------------------------------------------------- /public/favicons/favicon-48x48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-48x48.webp -------------------------------------------------------------------------------- /public/favicons/favicon-512x512.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-512x512.webp -------------------------------------------------------------------------------- /public/favicons/favicon-64x64.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/favicons/favicon-64x64.webp -------------------------------------------------------------------------------- /public/fonts/GenEiAntiqueNv5-M.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/GenEiAntiqueNv5-M.woff2 -------------------------------------------------------------------------------- /public/fonts/GenEiKiwamiGo.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/GenEiKiwamiGo.woff2 -------------------------------------------------------------------------------- /public/fonts/GenEiLateGoN_v2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/GenEiLateGoN_v2.woff2 -------------------------------------------------------------------------------- /public/fonts/GenEiLateMinN_v2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/GenEiLateMinN_v2.woff2 -------------------------------------------------------------------------------- /public/fonts/GenEiMGothic2-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/GenEiMGothic2-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/GenEiPOPle-Bk.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/GenEiPOPle-Bk.woff2 -------------------------------------------------------------------------------- /public/fonts/HuiFont29.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/HuiFont29.woff2 -------------------------------------------------------------------------------- /public/fonts/MakibaFont13.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/fonts/MakibaFont13.woff2 -------------------------------------------------------------------------------- /public/postingGuideline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/postingGuideline.html -------------------------------------------------------------------------------- /public/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/privacy.html -------------------------------------------------------------------------------- /public/termsOfService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/public/termsOfService.html -------------------------------------------------------------------------------- /scripts/add-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/scripts/add-embed.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/about/About.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/about/About.svelte -------------------------------------------------------------------------------- /src/about/AboutContentEn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/about/AboutContentEn.svelte -------------------------------------------------------------------------------- /src/about/AboutContentJa.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/about/AboutContentJa.svelte -------------------------------------------------------------------------------- /src/about/StructureTree.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/about/StructureTree.svelte -------------------------------------------------------------------------------- /src/about/aboutStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/about/aboutStore.ts -------------------------------------------------------------------------------- /src/about/structureTreeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/about/structureTreeStore.ts -------------------------------------------------------------------------------- /src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/app.postcss -------------------------------------------------------------------------------- /src/assets/about.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/about.webp -------------------------------------------------------------------------------- /src/assets/ads-leave.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/ads-leave.webp -------------------------------------------------------------------------------- /src/assets/aipictors_logo_0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/aipictors_logo_0.webp -------------------------------------------------------------------------------- /src/assets/angle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/angle.webp -------------------------------------------------------------------------------- /src/assets/auth/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/auth/github.svg -------------------------------------------------------------------------------- /src/assets/auth/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/auth/google.svg -------------------------------------------------------------------------------- /src/assets/barricade.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/barricade.webp -------------------------------------------------------------------------------- /src/assets/bell.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bell.webp -------------------------------------------------------------------------------- /src/assets/binoculars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/binoculars.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-drop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-drop.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-lock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-lock.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-offset.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-offset.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-rotate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-rotate.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-scale.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-scale.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-unlock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-unlock.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-zminus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-zminus.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble-zplus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble-zplus.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/bubble.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/bubble.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/circle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/circle.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/drag.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/drag.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/newlayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/newlayer.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/radius.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/radius.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/remove.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/remove.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/scribble.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/scribble.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/tail-mid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/tail-mid.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/tail-tip.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/tail-tip.webp -------------------------------------------------------------------------------- /src/assets/bubbleLayer/unite.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/bubbleLayer/unite.webp -------------------------------------------------------------------------------- /src/assets/cabinet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/cabinet.webp -------------------------------------------------------------------------------- /src/assets/clipboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/clipboard.webp -------------------------------------------------------------------------------- /src/assets/download.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/download.webp -------------------------------------------------------------------------------- /src/assets/drop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/drop.webp -------------------------------------------------------------------------------- /src/assets/dump-restore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/dump-restore.webp -------------------------------------------------------------------------------- /src/assets/embedded.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/embedded.webp -------------------------------------------------------------------------------- /src/assets/farm/private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/farm/private.webp -------------------------------------------------------------------------------- /src/assets/feathral.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/feathral.webp -------------------------------------------------------------------------------- /src/assets/file-manager.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/file-manager.webp -------------------------------------------------------------------------------- /src/assets/fileManager/duplicate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/duplicate.webp -------------------------------------------------------------------------------- /src/assets/fileManager/file.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/file.webp -------------------------------------------------------------------------------- /src/assets/fileManager/folder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/folder.webp -------------------------------------------------------------------------------- /src/assets/fileManager/new-file.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/new-file.webp -------------------------------------------------------------------------------- /src/assets/fileManager/new-folder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/new-folder.webp -------------------------------------------------------------------------------- /src/assets/fileManager/package-export.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/package-export.webp -------------------------------------------------------------------------------- /src/assets/fileManager/package-import.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/package-import.webp -------------------------------------------------------------------------------- /src/assets/fileManager/pagename-mode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/pagename-mode.webp -------------------------------------------------------------------------------- /src/assets/fileManager/paste.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/paste.webp -------------------------------------------------------------------------------- /src/assets/fileManager/rename.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/rename.webp -------------------------------------------------------------------------------- /src/assets/fileManager/trash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fileManager/trash.webp -------------------------------------------------------------------------------- /src/assets/filmlist/angleedit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/angleedit.webp -------------------------------------------------------------------------------- /src/assets/filmlist/delete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/delete.webp -------------------------------------------------------------------------------- /src/assets/filmlist/duplicate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/duplicate.webp -------------------------------------------------------------------------------- /src/assets/filmlist/effect.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/effect.webp -------------------------------------------------------------------------------- /src/assets/filmlist/eraser.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/eraser.webp -------------------------------------------------------------------------------- /src/assets/filmlist/eye.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/eye.webp -------------------------------------------------------------------------------- /src/assets/filmlist/generate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/generate.webp -------------------------------------------------------------------------------- /src/assets/filmlist/inpaint.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/inpaint.webp -------------------------------------------------------------------------------- /src/assets/filmlist/outpainting.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/outpainting.webp -------------------------------------------------------------------------------- /src/assets/filmlist/popup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/popup.webp -------------------------------------------------------------------------------- /src/assets/filmlist/punch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/punch.webp -------------------------------------------------------------------------------- /src/assets/filmlist/scribble.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/scribble.webp -------------------------------------------------------------------------------- /src/assets/filmlist/textedit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/textedit.webp -------------------------------------------------------------------------------- /src/assets/filmlist/textlift.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/textlift.webp -------------------------------------------------------------------------------- /src/assets/filmlist/trash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/trash.webp -------------------------------------------------------------------------------- /src/assets/filmlist/upscale.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/filmlist/upscale.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/BIZ-UDGothic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/BIZ-UDGothic.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/BIZ-UDMincho.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/BIZ-UDMincho.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/BIZ-UDPGothic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/BIZ-UDPGothic.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/BIZ-UDPMincho.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/BIZ-UDPMincho.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Cherry-Bomb-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Cherry-Bomb-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Darumadrop-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Darumadrop-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Dela-Gothic-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Dela-Gothic-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/DotGothic16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/DotGothic16.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Hachi-Maru-Pop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Hachi-Maru-Pop.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Hina-Mincho.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Hina-Mincho.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/IBM-Plex-Sans-JP.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/IBM-Plex-Sans-JP.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kaisei-Decol.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kaisei-Decol.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kaisei-HarunoUmi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kaisei-HarunoUmi.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kaisei-Opti.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kaisei-Opti.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kaisei-Tokumin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kaisei-Tokumin.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kiwi-Maru.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kiwi-Maru.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Klee-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Klee-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kosugi-Maru.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kosugi-Maru.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Kosugi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Kosugi.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/M-PLUS-1-Code.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/M-PLUS-1-Code.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/M-PLUS-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/M-PLUS-1.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/M-PLUS-1p.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/M-PLUS-1p.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/M-PLUS-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/M-PLUS-2.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/M-PLUS-Rounded-1c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/M-PLUS-Rounded-1c.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Mochiy-Pop-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Mochiy-Pop-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Mochiy-Pop-P-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Mochiy-Pop-P-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/New-Tegomin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/New-Tegomin.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Noto-Sans-JP.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Noto-Sans-JP.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Noto-Serif-JP.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Noto-Serif-JP.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Potta-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Potta-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Rampart-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Rampart-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Reggae-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Reggae-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/RocknRoll-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/RocknRoll-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Sawarabi-Gothic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Sawarabi-Gothic.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Shippori-Antique-B1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Shippori-Antique-B1.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Shippori-Antique.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Shippori-Antique.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Shippori-Mincho-B1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Shippori-Mincho-B1.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Shippori-Mincho.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Shippori-Mincho.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Shizuru.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Shizuru.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Slackside-One.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Slackside-One.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Stick.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Stick.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Yomogi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Yomogi.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Yuji-Boku.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Yuji-Boku.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Yuji-Mai.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Yuji-Mai.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Yuji-Syuku.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Yuji-Syuku.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Yusei-Magic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Yusei-Magic.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Antique-Soft.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Antique-Soft.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Antique.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Antique.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Kaku-Gothic-Antique.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Kaku-Gothic-Antique.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Kaku-Gothic-New.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Kaku-Gothic-New.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Kurenaido.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Kurenaido.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Maru-Gothic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Maru-Gothic.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/Zen-Old-Mincho.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/Zen-Old-Mincho.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/ふい字.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/ふい字.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/まきばフォント.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/まきばフォント.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/源暎きわみゴ.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/源暎きわみゴ.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/源暎ぽっぷる.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/源暎ぽっぷる.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/源暎アンチック.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/源暎アンチック.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/源暎エムゴ.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/源暎エムゴ.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/源暎ラテゴ.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/源暎ラテゴ.webp -------------------------------------------------------------------------------- /src/assets/fonts/labels/源暎ラテミン.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/fonts/labels/源暎ラテミン.webp -------------------------------------------------------------------------------- /src/assets/frameInspector/coffee-machine-12-64.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameInspector/coffee-machine-12-64.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/decrement.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/decrement.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/delete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/delete.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/duplicate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/duplicate.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/expand-horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/expand-horizontal.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/expand-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/expand-vertical.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/fit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/fit.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/flip-horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/flip-horizontal.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/flip-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/flip-vertical.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/increment.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/increment.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/insert-horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/insert-horizontal.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/insert-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/insert-vertical.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/newlayer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/newlayer.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/reset-padding.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/reset-padding.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/rotate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/rotate.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/scale.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/scale.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/scribble.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/scribble.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/shift.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/shift.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/slant-horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/slant-horizontal.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/slant-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/slant-vertical.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/split-horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/split-horizontal.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/split-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/split-vertical.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/swap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/swap.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/unshift.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/unshift.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/visibility1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/visibility1.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/visibility2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/visibility2.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/visibility3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/visibility3.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/zminus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/zminus.webp -------------------------------------------------------------------------------- /src/assets/frameLayer/zplus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/frameLayer/zplus.webp -------------------------------------------------------------------------------- /src/assets/generate-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/generate-image.webp -------------------------------------------------------------------------------- /src/assets/get-old.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/get-old.webp -------------------------------------------------------------------------------- /src/assets/get.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/get.webp -------------------------------------------------------------------------------- /src/assets/horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/horizontal.webp -------------------------------------------------------------------------------- /src/assets/json.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/json.webp -------------------------------------------------------------------------------- /src/assets/kontext/manga-black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/kontext/manga-black.webp -------------------------------------------------------------------------------- /src/assets/kontext/manga-gray.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/kontext/manga-gray.webp -------------------------------------------------------------------------------- /src/assets/movie.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/movie.webp -------------------------------------------------------------------------------- /src/assets/new-book.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/new-book.webp -------------------------------------------------------------------------------- /src/assets/new-page.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/new-page.webp -------------------------------------------------------------------------------- /src/assets/page-bubbles.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-bubbles.webp -------------------------------------------------------------------------------- /src/assets/page-clipboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-clipboard.webp -------------------------------------------------------------------------------- /src/assets/page-cut-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-cut-vertical.webp -------------------------------------------------------------------------------- /src/assets/page-cut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-cut.webp -------------------------------------------------------------------------------- /src/assets/page-imaging.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-imaging.webp -------------------------------------------------------------------------------- /src/assets/page-insert-vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-insert-vertical.webp -------------------------------------------------------------------------------- /src/assets/page-insert.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-insert.webp -------------------------------------------------------------------------------- /src/assets/page-mark-on.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-mark-on.webp -------------------------------------------------------------------------------- /src/assets/page-mark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-mark.webp -------------------------------------------------------------------------------- /src/assets/page-paste.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-paste.webp -------------------------------------------------------------------------------- /src/assets/page-trash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-trash.webp -------------------------------------------------------------------------------- /src/assets/page-tweak.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/page-tweak.webp -------------------------------------------------------------------------------- /src/assets/pin-white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/pin-white.webp -------------------------------------------------------------------------------- /src/assets/pin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/pin.webp -------------------------------------------------------------------------------- /src/assets/post.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/post.webp -------------------------------------------------------------------------------- /src/assets/redo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/redo.webp -------------------------------------------------------------------------------- /src/assets/reference-selected.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/reference-selected.webp -------------------------------------------------------------------------------- /src/assets/reference.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/reference.webp -------------------------------------------------------------------------------- /src/assets/reset.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/reset.webp -------------------------------------------------------------------------------- /src/assets/ruler.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/ruler.webp -------------------------------------------------------------------------------- /src/assets/spryt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/spryt.webp -------------------------------------------------------------------------------- /src/assets/stamp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/stamp.webp -------------------------------------------------------------------------------- /src/assets/studio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/studio.webp -------------------------------------------------------------------------------- /src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/svelte.svg -------------------------------------------------------------------------------- /src/assets/telescope.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/telescope.webp -------------------------------------------------------------------------------- /src/assets/title-bubble.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/title-bubble.webp -------------------------------------------------------------------------------- /src/assets/title-control-panel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/title-control-panel.webp -------------------------------------------------------------------------------- /src/assets/transparent.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/transparent.webp -------------------------------------------------------------------------------- /src/assets/trash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/trash.webp -------------------------------------------------------------------------------- /src/assets/undo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/undo.webp -------------------------------------------------------------------------------- /src/assets/unembedded.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/unembedded.webp -------------------------------------------------------------------------------- /src/assets/vertical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/vertical.webp -------------------------------------------------------------------------------- /src/assets/video.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/video.webp -------------------------------------------------------------------------------- /src/assets/videomaker/pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/videomaker/pause.webp -------------------------------------------------------------------------------- /src/assets/videomaker/play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/videomaker/play.webp -------------------------------------------------------------------------------- /src/assets/viewer/left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/viewer/left.webp -------------------------------------------------------------------------------- /src/assets/viewer/right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/viewer/right.webp -------------------------------------------------------------------------------- /src/assets/viewerLayer/play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/viewerLayer/play.webp -------------------------------------------------------------------------------- /src/assets/write.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/assets/write.webp -------------------------------------------------------------------------------- /src/bookeditor/BookWorkspace.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/BookWorkspace.svelte -------------------------------------------------------------------------------- /src/bookeditor/BookWorkspaceOperators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/BookWorkspaceOperators.ts -------------------------------------------------------------------------------- /src/bookeditor/TemplateChooser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/TemplateChooser.svelte -------------------------------------------------------------------------------- /src/bookeditor/TemplateSample.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/TemplateSample.svelte -------------------------------------------------------------------------------- /src/bookeditor/bookEditorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bookEditorUtils.ts -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/BubbleInspector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/BubbleInspector.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/BubbleInspectorAppendix.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/BubbleInspectorAppendix.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/BubbleSample.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/BubbleSample.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/BubbleTemplateSample.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/BubbleTemplateSample.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/FontChooser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/FontChooser.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/HistoryStorage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/HistoryStorage.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/ShapeChooser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/ShapeChooser.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/WebFontList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/WebFontList.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/WebFontListItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/WebFontListItem.svelte -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/bubbleInspectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/bubbleInspectorStore.ts -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/fontStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/fontStore.ts -------------------------------------------------------------------------------- /src/bookeditor/bubbleinspector/shapeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/bubbleinspector/shapeStore.ts -------------------------------------------------------------------------------- /src/bookeditor/effectchooser/EffectChooser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/effectchooser/EffectChooser.svelte -------------------------------------------------------------------------------- /src/bookeditor/effectchooser/effectChooserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/effectchooser/effectChooserStore.ts -------------------------------------------------------------------------------- /src/bookeditor/fontLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/fontLoading.ts -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/BarrierIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/BarrierIcon.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmEffect.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmEffect.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmList.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmListItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmListItem.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmProceduralColorParam.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmProceduralColorParam.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmProceduralControls.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmProceduralControls.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmProceduralNumberParam.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmProceduralNumberParam.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FilmProceduralTextParam.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FilmProceduralTextParam.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/FrameInspector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/FrameInspector.svelte -------------------------------------------------------------------------------- /src/bookeditor/frameinspector/frameInspectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/frameinspector/frameInspectorStore.ts -------------------------------------------------------------------------------- /src/bookeditor/operations/buildBookEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/operations/buildBookEditor.ts -------------------------------------------------------------------------------- /src/bookeditor/operations/commitOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/operations/commitOperations.ts -------------------------------------------------------------------------------- /src/bookeditor/operations/filmMergeOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/operations/filmMergeOperations.ts -------------------------------------------------------------------------------- /src/bookeditor/operations/filmStackOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/operations/filmStackOperations.ts -------------------------------------------------------------------------------- /src/bookeditor/operations/pageOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/operations/pageOperations.ts -------------------------------------------------------------------------------- /src/bookeditor/pageinspector/PageInspector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/pageinspector/PageInspector.svelte -------------------------------------------------------------------------------- /src/bookeditor/pageinspector/pageInspectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/pageinspector/pageInspectorStore.ts -------------------------------------------------------------------------------- /src/bookeditor/templateChooserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/templateChooserStore.ts -------------------------------------------------------------------------------- /src/bookeditor/workspaceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bookeditor/workspaceStore.ts -------------------------------------------------------------------------------- /src/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/box.css -------------------------------------------------------------------------------- /src/bubbleBucket/BubbleBucket.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bubbleBucket/BubbleBucket.svelte -------------------------------------------------------------------------------- /src/bubbleBucket/BubbleBucketItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bubbleBucket/BubbleBucketItem.svelte -------------------------------------------------------------------------------- /src/bubbleBucket/bubbleBucketStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/bubbleBucket/bubbleBucketStore.ts -------------------------------------------------------------------------------- /src/controlpanel/ControlPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/controlpanel/ControlPanel.svelte -------------------------------------------------------------------------------- /src/controlpanel/controlPanelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/controlpanel/controlPanelStore.ts -------------------------------------------------------------------------------- /src/customTypes.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'css-font-parser'; 2 | -------------------------------------------------------------------------------- /src/dolphinroom/DolphinRoom.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/DolphinRoom.svelte -------------------------------------------------------------------------------- /src/dolphinroom/DolphinRoomView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/DolphinRoomView.svelte -------------------------------------------------------------------------------- /src/dolphinroom/MediaActionMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/MediaActionMenu.svelte -------------------------------------------------------------------------------- /src/dolphinroom/TimelineItemView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/TimelineItemView.svelte -------------------------------------------------------------------------------- /src/dolphinroom/components/AngleControls.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/components/AngleControls.svelte -------------------------------------------------------------------------------- /src/dolphinroom/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/constants.ts -------------------------------------------------------------------------------- /src/dolphinroom/dolphinRoomStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/dolphinRoomStore.ts -------------------------------------------------------------------------------- /src/dolphinroom/dragActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/dragActions.ts -------------------------------------------------------------------------------- /src/dolphinroom/frameCapture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/frameCapture.ts -------------------------------------------------------------------------------- /src/dolphinroom/generationActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/generationActions.ts -------------------------------------------------------------------------------- /src/dolphinroom/mediaActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/mediaActions.ts -------------------------------------------------------------------------------- /src/dolphinroom/mediaLoaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/mediaLoaders.ts -------------------------------------------------------------------------------- /src/dolphinroom/messageActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/messageActions.ts -------------------------------------------------------------------------------- /src/dolphinroom/objectUrlManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/objectUrlManager.ts -------------------------------------------------------------------------------- /src/dolphinroom/timelineActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/timelineActions.ts -------------------------------------------------------------------------------- /src/dolphinroom/timelineSideEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/timelineSideEffects.ts -------------------------------------------------------------------------------- /src/dolphinroom/timelineTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/dolphinroom/timelineTypes.ts -------------------------------------------------------------------------------- /src/dolphinroom/types.ts: -------------------------------------------------------------------------------- 1 | export type AllocateId = () => number; 2 | -------------------------------------------------------------------------------- /src/downloader/Downloader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/downloader/Downloader.svelte -------------------------------------------------------------------------------- /src/downloader/downloaderStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/downloader/downloaderStore.ts -------------------------------------------------------------------------------- /src/filemanager/FileManager.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/FileManager.svelte -------------------------------------------------------------------------------- /src/filemanager/FileManagerFile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/FileManagerFile.svelte -------------------------------------------------------------------------------- /src/filemanager/FileManagerFolder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/FileManagerFolder.svelte -------------------------------------------------------------------------------- /src/filemanager/FileManagerFolderTail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/FileManagerFolderTail.svelte -------------------------------------------------------------------------------- /src/filemanager/FileManagerInsertZone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/FileManagerInsertZone.svelte -------------------------------------------------------------------------------- /src/filemanager/FileManagerRoot.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/FileManagerRoot.svelte -------------------------------------------------------------------------------- /src/filemanager/NewStorageWizard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/NewStorageWizard.svelte -------------------------------------------------------------------------------- /src/filemanager/currentFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/currentFile.ts -------------------------------------------------------------------------------- /src/filemanager/developmentFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/developmentFileSystem.ts -------------------------------------------------------------------------------- /src/filemanager/fileImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/fileImages.ts -------------------------------------------------------------------------------- /src/filemanager/fileManagerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/fileManagerStore.ts -------------------------------------------------------------------------------- /src/filemanager/localFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/localFileSystem.ts -------------------------------------------------------------------------------- /src/filemanager/productionFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/productionFileSystem.ts -------------------------------------------------------------------------------- /src/filemanager/saveStatusStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/saveStatusStore.ts -------------------------------------------------------------------------------- /src/filemanager/shareFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/shareFileSystem.ts -------------------------------------------------------------------------------- /src/filemanager/specialFolders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/specialFolders.ts -------------------------------------------------------------------------------- /src/filemanager/test/filesystem.correct.typeA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/test/filesystem.correct.typeA.json -------------------------------------------------------------------------------- /src/filemanager/test/filesystem.correct.typeB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/test/filesystem.correct.typeB.json -------------------------------------------------------------------------------- /src/filemanager/test/filesystem.correct.typeC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/test/filesystem.correct.typeC.json -------------------------------------------------------------------------------- /src/filemanager/test/filesystem.initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/test/filesystem.initial.json -------------------------------------------------------------------------------- /src/filemanager/test/filesystem.roster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/test/filesystem.roster.json -------------------------------------------------------------------------------- /src/filemanager/test/garbagecollection.vitest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/test/garbagecollection.vitest.ts -------------------------------------------------------------------------------- /src/filemanager/warehouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/filemanager/warehouse.ts -------------------------------------------------------------------------------- /src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/firebase.ts -------------------------------------------------------------------------------- /src/gallery/Gallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/Gallery.svelte -------------------------------------------------------------------------------- /src/gallery/GalleryElement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/GalleryElement.svelte -------------------------------------------------------------------------------- /src/gallery/GalleryMember.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/GalleryMember.svelte -------------------------------------------------------------------------------- /src/gallery/MediaFrame.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/MediaFrame.svelte -------------------------------------------------------------------------------- /src/gallery/MediaLoading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/MediaLoading.svelte -------------------------------------------------------------------------------- /src/gallery/MediaViewer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/MediaViewer.svelte -------------------------------------------------------------------------------- /src/gallery/PostToPublicMaterials.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/PostToPublicMaterials.svelte -------------------------------------------------------------------------------- /src/gallery/gallery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/gallery.ts -------------------------------------------------------------------------------- /src/gallery/mediaViewerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/gallery/mediaViewerStore.ts -------------------------------------------------------------------------------- /src/generator/BatchImaging.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/BatchImaging.svelte -------------------------------------------------------------------------------- /src/generator/BatchImagingFlux.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/BatchImagingFlux.svelte -------------------------------------------------------------------------------- /src/generator/ImageGenerator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageGenerator.svelte -------------------------------------------------------------------------------- /src/generator/ImageGeneratorCloud.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageGeneratorCloud.svelte -------------------------------------------------------------------------------- /src/generator/ImageGeneratorPlain.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageGeneratorPlain.svelte -------------------------------------------------------------------------------- /src/generator/ImageGeneratorProcedural.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageGeneratorProcedural.svelte -------------------------------------------------------------------------------- /src/generator/ImageGeneratorStableDiffusion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageGeneratorStableDiffusion.svelte -------------------------------------------------------------------------------- /src/generator/ImageMaskDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageMaskDialog.svelte -------------------------------------------------------------------------------- /src/generator/ImageProvider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImageProvider.svelte -------------------------------------------------------------------------------- /src/generator/ImagingModes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImagingModes.svelte -------------------------------------------------------------------------------- /src/generator/ImagingProgressBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/ImagingProgressBar.svelte -------------------------------------------------------------------------------- /src/generator/Upscaler.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/Upscaler.svelte -------------------------------------------------------------------------------- /src/generator/VideoGenerationModes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/VideoGenerationModes.svelte -------------------------------------------------------------------------------- /src/generator/VideoGenerator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/VideoGenerator.svelte -------------------------------------------------------------------------------- /src/generator/batchImagingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/batchImagingStore.ts -------------------------------------------------------------------------------- /src/generator/imageGeneratorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/imageGeneratorStore.ts -------------------------------------------------------------------------------- /src/generator/sdwebui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/sdwebui.ts -------------------------------------------------------------------------------- /src/generator/videoModelConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/generator/videoModelConfig.ts -------------------------------------------------------------------------------- /src/lib/book/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/book.ts -------------------------------------------------------------------------------- /src/lib/book/envelope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/envelope.ts -------------------------------------------------------------------------------- /src/lib/book/envelopeZip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/envelopeZip.ts -------------------------------------------------------------------------------- /src/lib/book/imagePacking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/imagePacking.ts -------------------------------------------------------------------------------- /src/lib/book/types/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/types/layout.ts -------------------------------------------------------------------------------- /src/lib/book/types/notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/types/notebook.ts -------------------------------------------------------------------------------- /src/lib/book/types/richChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/types/richChat.ts -------------------------------------------------------------------------------- /src/lib/book/types/storyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/book/types/storyboard.ts -------------------------------------------------------------------------------- /src/lib/filesystem/contentStorage/backblazeImageStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/contentStorage/backblazeImageStorage.ts -------------------------------------------------------------------------------- /src/lib/filesystem/contentStorage/contentStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/contentStorage/contentStorage.ts -------------------------------------------------------------------------------- /src/lib/filesystem/contentStorage/firebaseImageStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/contentStorage/firebaseImageStorage.ts -------------------------------------------------------------------------------- /src/lib/filesystem/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/fileSystem.ts -------------------------------------------------------------------------------- /src/lib/filesystem/fileSystemTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/fileSystemTools.ts -------------------------------------------------------------------------------- /src/lib/filesystem/firebaseFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/firebaseFileSystem.ts -------------------------------------------------------------------------------- /src/lib/filesystem/fsaFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/fsaFileSystem.ts -------------------------------------------------------------------------------- /src/lib/filesystem/indexeddbFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/indexeddbFileSystem.ts -------------------------------------------------------------------------------- /src/lib/filesystem/mediaConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/mediaConverter.ts -------------------------------------------------------------------------------- /src/lib/filesystem/mockFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/mockFileSystem.ts -------------------------------------------------------------------------------- /src/lib/filesystem/sqlite/BlobStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/sqlite/BlobStore.ts -------------------------------------------------------------------------------- /src/lib/filesystem/sqlite/SqlJsAdapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/sqlite/SqlJsAdapter.test.ts -------------------------------------------------------------------------------- /src/lib/filesystem/sqlite/SqlJsAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/sqlite/SqlJsAdapter.ts -------------------------------------------------------------------------------- /src/lib/filesystem/supabaseFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/filesystem/supabaseFileSystem.ts -------------------------------------------------------------------------------- /src/lib/fsafilesystem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/fsafilesystem.test.ts -------------------------------------------------------------------------------- /src/lib/indexeddbfilesystem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/indexeddbfilesystem.test.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/dataModels/bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/dataModels/bubble.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/dataModels/effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/dataModels/effect.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/dataModels/film.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/dataModels/film.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/dataModels/frameTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/dataModels/frameTree.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/dataModels/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/dataModels/media.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/dataModels/proceduralEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/dataModels/proceduralEffects.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/SampleLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/SampleLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/arrayLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/arrayLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/bubbleLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/bubbleLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/floorLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/floorLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/frameLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/frameLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/inlinePainterLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/inlinePainterLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/paperRendererLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/paperRendererLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/undoLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/undoLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/layers/viewerLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/layers/viewerLayer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/system/keyCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/system/keyCache.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/system/layeredCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/system/layeredCanvas.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/system/paperArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/system/paperArray.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/bookRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/bookRenderer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/dragUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/dragUtil.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/bubbleGraphic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/bubbleGraphic.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/clickableIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/clickableIcon.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/drawFilmStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/drawFilmStack.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/drawText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/drawText.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/pathTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/pathTools.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/proceduralEffectRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/proceduralEffectRenderer.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/renderBubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/renderBubble.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/richText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/richText.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/selectionFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/selectionFrame.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/typeSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/typeSetting.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/draw/verticalText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/draw/verticalText.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/fileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/fileUtil.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/focusKeeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/focusKeeper.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/frameExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/frameExamples.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/bubbleGeometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/bubbleGeometry.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/clipPolygonByLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/clipPolygonByLine.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/convertPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/convertPoint.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/frameGeometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/frameGeometry.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/geometry.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/geometry.vitest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/geometry.vitest.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/quickHull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/quickHull.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/geometry/trapezoid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/geometry/trapezoid.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/googleFont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/googleFont.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/grid.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/haiku.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/haiku.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/imageUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/imageUtil.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/kinsoku.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/kinsoku.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/kinsoku.vitest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/kinsoku.vitest.js -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/misc.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/paper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/paper.d.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/perfectFreehandUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/perfectFreehandUtil.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/pictureControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/pictureControl.ts -------------------------------------------------------------------------------- /src/lib/layeredCanvas/tools/rectHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/layeredCanvas/tools/rectHandle.ts -------------------------------------------------------------------------------- /src/lib/sample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/lib/sample.test.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/locales/index.ts -------------------------------------------------------------------------------- /src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/locales/ja.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mangaview/MangaView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/mangaview/MangaView.svelte -------------------------------------------------------------------------------- /src/mangaview/PublicationInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/mangaview/PublicationInfo.svelte -------------------------------------------------------------------------------- /src/materialBucket/MaterialBucket.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/MaterialBucket.svelte -------------------------------------------------------------------------------- /src/materialBucket/MaterialBucketContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/MaterialBucketContent.svelte -------------------------------------------------------------------------------- /src/materialBucket/MaterialGallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/MaterialGallery.svelte -------------------------------------------------------------------------------- /src/materialBucket/PublicMaterialsGallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/PublicMaterialsGallery.svelte -------------------------------------------------------------------------------- /src/materialBucket/RosterGallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/RosterGallery.svelte -------------------------------------------------------------------------------- /src/materialBucket/WarehouseGallery.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/WarehouseGallery.svelte -------------------------------------------------------------------------------- /src/materialBucket/materialBucketStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/materialBucketStore.ts -------------------------------------------------------------------------------- /src/materialBucket/materialOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/materialOperations.ts -------------------------------------------------------------------------------- /src/materialBucket/tweakUiStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/materialBucket/tweakUiStore.ts -------------------------------------------------------------------------------- /src/notebook/AutoSizeTextarea.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/AutoSizeTextarea.svelte -------------------------------------------------------------------------------- /src/notebook/Notebook.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/Notebook.svelte -------------------------------------------------------------------------------- /src/notebook/NotebookCharacter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/NotebookCharacter.svelte -------------------------------------------------------------------------------- /src/notebook/NotebookCharacterList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/NotebookCharacterList.svelte -------------------------------------------------------------------------------- /src/notebook/NotebookManual.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/NotebookManual.svelte -------------------------------------------------------------------------------- /src/notebook/NotebookTextarea.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/NotebookTextarea.svelte -------------------------------------------------------------------------------- /src/notebook/Roster.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/Roster.svelte -------------------------------------------------------------------------------- /src/notebook/ThinkerSelector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/ThinkerSelector.svelte -------------------------------------------------------------------------------- /src/notebook/characterExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/characterExport.ts -------------------------------------------------------------------------------- /src/notebook/makePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/makePage.ts -------------------------------------------------------------------------------- /src/notebook/notebookStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/notebookStore.ts -------------------------------------------------------------------------------- /src/notebook/rosterStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/notebook/rosterStore.ts -------------------------------------------------------------------------------- /src/painter/FreehandInspector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/painter/FreehandInspector.svelte -------------------------------------------------------------------------------- /src/painter/FreehandInspectorEasing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/painter/FreehandInspectorEasing.svelte -------------------------------------------------------------------------------- /src/painter/FreehandInspectorPalette.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/painter/FreehandInspectorPalette.svelte -------------------------------------------------------------------------------- /src/painter/FreehandInspectorTaper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/painter/FreehandInspectorTaper.svelte -------------------------------------------------------------------------------- /src/painter/Painter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/painter/Painter.svelte -------------------------------------------------------------------------------- /src/painter/easing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/painter/easing.ts -------------------------------------------------------------------------------- /src/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/preferences.ts -------------------------------------------------------------------------------- /src/publication/Publication.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/publication/Publication.svelte -------------------------------------------------------------------------------- /src/publication/SocialCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/publication/SocialCard.svelte -------------------------------------------------------------------------------- /src/rootelements/AboutButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/AboutButton.svelte -------------------------------------------------------------------------------- /src/rootelements/BaseRootButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/BaseRootButton.svelte -------------------------------------------------------------------------------- /src/rootelements/BellButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/BellButton.svelte -------------------------------------------------------------------------------- /src/rootelements/CabinetButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/CabinetButton.svelte -------------------------------------------------------------------------------- /src/rootelements/DolphinRoomButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/DolphinRoomButton.svelte -------------------------------------------------------------------------------- /src/rootelements/DownloadButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/DownloadButton.svelte -------------------------------------------------------------------------------- /src/rootelements/JumpButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/JumpButton.svelte -------------------------------------------------------------------------------- /src/rootelements/MaterialBucketButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/MaterialBucketButton.svelte -------------------------------------------------------------------------------- /src/rootelements/NewBookButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/NewBookButton.svelte -------------------------------------------------------------------------------- /src/rootelements/PostButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/PostButton.svelte -------------------------------------------------------------------------------- /src/rootelements/RulerButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/RulerButton.svelte -------------------------------------------------------------------------------- /src/rootelements/SaveOffButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/SaveOffButton.svelte -------------------------------------------------------------------------------- /src/rootelements/VideoButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/rootelements/VideoButton.svelte -------------------------------------------------------------------------------- /src/stores/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/stores/i18n.ts -------------------------------------------------------------------------------- /src/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/supabase.ts -------------------------------------------------------------------------------- /src/t.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/toolbar/AvatarIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/toolbar/AvatarIcon.svelte -------------------------------------------------------------------------------- /src/toolbar/LanguageSwitcher.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/toolbar/LanguageSwitcher.svelte -------------------------------------------------------------------------------- /src/toolbar/ToolBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/toolbar/ToolBar.svelte -------------------------------------------------------------------------------- /src/toolbar/UserProfile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/toolbar/UserProfile.svelte -------------------------------------------------------------------------------- /src/transfer/Dump.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/transfer/Dump.svelte -------------------------------------------------------------------------------- /src/transfer/Undump.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/transfer/Undump.svelte -------------------------------------------------------------------------------- /src/uiStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/uiStore.ts -------------------------------------------------------------------------------- /src/utils/AngleEditDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/AngleEditDialog.svelte -------------------------------------------------------------------------------- /src/utils/AuthForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/AuthForm.svelte -------------------------------------------------------------------------------- /src/utils/AutoSizeCanvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/AutoSizeCanvas.svelte -------------------------------------------------------------------------------- /src/utils/BookArchiver.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/BookArchiver.svelte -------------------------------------------------------------------------------- /src/utils/CanvasBrowser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/CanvasBrowser.svelte -------------------------------------------------------------------------------- /src/utils/Comic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Comic.svelte -------------------------------------------------------------------------------- /src/utils/ConfirmDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ConfirmDialog.svelte -------------------------------------------------------------------------------- /src/utils/DebugOnly.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/DebugOnly.svelte -------------------------------------------------------------------------------- /src/utils/Drawer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Drawer.svelte -------------------------------------------------------------------------------- /src/utils/EmbeddedHtml.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/EmbeddedHtml.svelte -------------------------------------------------------------------------------- /src/utils/ExponentialRangeSlider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ExponentialRangeSlider.svelte -------------------------------------------------------------------------------- /src/utils/ExponentialSliderEdit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ExponentialSliderEdit.svelte -------------------------------------------------------------------------------- /src/utils/Feathral.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Feathral.svelte -------------------------------------------------------------------------------- /src/utils/FeathralCost.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/FeathralCost.svelte -------------------------------------------------------------------------------- /src/utils/FileBrowser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/FileBrowser.svelte -------------------------------------------------------------------------------- /src/utils/FullScreenLoading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/FullScreenLoading.svelte -------------------------------------------------------------------------------- /src/utils/FullScreenProgress.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/FullScreenProgress.svelte -------------------------------------------------------------------------------- /src/utils/ImageMaskCanvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ImageMaskCanvas.svelte -------------------------------------------------------------------------------- /src/utils/ImageMaskDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ImageMaskDialog.svelte -------------------------------------------------------------------------------- /src/utils/InpaintDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/InpaintDialog.svelte -------------------------------------------------------------------------------- /src/utils/JsonReader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/JsonReader.svelte -------------------------------------------------------------------------------- /src/utils/License.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/License.svelte -------------------------------------------------------------------------------- /src/utils/Loading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Loading.svelte -------------------------------------------------------------------------------- /src/utils/MovieGenerator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/MovieGenerator.svelte -------------------------------------------------------------------------------- /src/utils/NumberEdit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/NumberEdit.svelte -------------------------------------------------------------------------------- /src/utils/Parameter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Parameter.svelte -------------------------------------------------------------------------------- /src/utils/PassiveToolTip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/PassiveToolTip.svelte -------------------------------------------------------------------------------- /src/utils/PlainDropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/PlainDropdown.svelte -------------------------------------------------------------------------------- /src/utils/Popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Popup.svelte -------------------------------------------------------------------------------- /src/utils/Progress.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Progress.svelte -------------------------------------------------------------------------------- /src/utils/ReferenceImageDropzone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ReferenceImageDropzone.svelte -------------------------------------------------------------------------------- /src/utils/RenameEdit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/RenameEdit.svelte -------------------------------------------------------------------------------- /src/utils/SliderEdit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/SliderEdit.svelte -------------------------------------------------------------------------------- /src/utils/SpreadCanvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/SpreadCanvas.svelte -------------------------------------------------------------------------------- /src/utils/Spreader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/Spreader.svelte -------------------------------------------------------------------------------- /src/utils/TextEditDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/TextEditDialog.svelte -------------------------------------------------------------------------------- /src/utils/TextLiftDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/TextLiftDialog.svelte -------------------------------------------------------------------------------- /src/utils/TreeView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/TreeView.svelte -------------------------------------------------------------------------------- /src/utils/UndoManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/UndoManager.ts -------------------------------------------------------------------------------- /src/utils/accountStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/accountStore.ts -------------------------------------------------------------------------------- /src/utils/ads/AdContainer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ads/AdContainer.svelte -------------------------------------------------------------------------------- /src/utils/ads/AdPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/ads/AdPanel.svelte -------------------------------------------------------------------------------- /src/utils/analyticsEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/analyticsEvent.ts -------------------------------------------------------------------------------- /src/utils/analyzeImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/analyzeImage.ts -------------------------------------------------------------------------------- /src/utils/angleEditFilm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/angleEditFilm.ts -------------------------------------------------------------------------------- /src/utils/asyncStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/asyncStore.ts -------------------------------------------------------------------------------- /src/utils/backUpIndexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/backUpIndexedDB.ts -------------------------------------------------------------------------------- /src/utils/billingData/sprytPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/billingData/sprytPackages.ts -------------------------------------------------------------------------------- /src/utils/billingData/subscriptionPlans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/billingData/subscriptionPlans.ts -------------------------------------------------------------------------------- /src/utils/bookArchiverStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/bookArchiverStore.ts -------------------------------------------------------------------------------- /src/utils/coalescingWork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/coalescingWork.ts -------------------------------------------------------------------------------- /src/utils/colorpicker/ColorPickerDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/colorpicker/ColorPickerDialog.svelte -------------------------------------------------------------------------------- /src/utils/colorpicker/ColorPickerLabel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/colorpicker/ColorPickerLabel.svelte -------------------------------------------------------------------------------- /src/utils/colorpicker/colorPickerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/colorpicker/colorPickerStore.ts -------------------------------------------------------------------------------- /src/utils/delayedCommiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/delayedCommiter.ts -------------------------------------------------------------------------------- /src/utils/developmentFlagStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/developmentFlagStore.ts -------------------------------------------------------------------------------- /src/utils/dropDataHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/dropDataHandler.ts -------------------------------------------------------------------------------- /src/utils/dropzone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/dropzone.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/calculateCost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/calculateCost.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/edgeFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/edgeFunctions.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/adviseTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/adviseTypes.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/cloudFileTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/cloudFileTypes.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/imagingTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/imagingTypes.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/materialTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/materialTypes.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/publication.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/publication.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/searchTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/searchTypes.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/snsTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/snsTypes.d.ts -------------------------------------------------------------------------------- /src/utils/edgeFunctions/types/transformTextTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/edgeFunctions/types/transformTextTypes.d.ts -------------------------------------------------------------------------------- /src/utils/eraserFilm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/eraserFilm.ts -------------------------------------------------------------------------------- /src/utils/executeProcessAndNotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/executeProcessAndNotify.ts -------------------------------------------------------------------------------- /src/utils/feathralImaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/feathralImaging.ts -------------------------------------------------------------------------------- /src/utils/fileDroppableList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/fileDroppableList.ts -------------------------------------------------------------------------------- /src/utils/filmTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/filmTools.ts -------------------------------------------------------------------------------- /src/utils/filmprocessor/filmProcessorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/filmprocessor/filmProcessorStore.ts -------------------------------------------------------------------------------- /src/utils/fromHiruma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/fromHiruma.ts -------------------------------------------------------------------------------- /src/utils/garbageCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/garbageCollection.ts -------------------------------------------------------------------------------- /src/utils/generateMovie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/generateMovie.ts -------------------------------------------------------------------------------- /src/utils/harmony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/harmony.ts -------------------------------------------------------------------------------- /src/utils/hiruma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/hiruma.ts -------------------------------------------------------------------------------- /src/utils/hoverKeyStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/hoverKeyStore.ts -------------------------------------------------------------------------------- /src/utils/inpaintFilm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/inpaintFilm.ts -------------------------------------------------------------------------------- /src/utils/loadingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/loadingStore.ts -------------------------------------------------------------------------------- /src/utils/moveInArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/moveInArray.ts -------------------------------------------------------------------------------- /src/utils/observeResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/observeResize.ts -------------------------------------------------------------------------------- /src/utils/observeWithin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/observeWithin.ts -------------------------------------------------------------------------------- /src/utils/outPaintFilm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/outPaintFilm.ts -------------------------------------------------------------------------------- /src/utils/passiveToolTipStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/passiveToolTipStore.ts -------------------------------------------------------------------------------- /src/utils/persistentText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/persistentText.ts -------------------------------------------------------------------------------- /src/utils/portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/portal.ts -------------------------------------------------------------------------------- /src/utils/promptHistoryAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/promptHistoryAction.ts -------------------------------------------------------------------------------- /src/utils/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/pubsub.ts -------------------------------------------------------------------------------- /src/utils/punchImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/punchImage.ts -------------------------------------------------------------------------------- /src/utils/reactUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/reactUtil.ts -------------------------------------------------------------------------------- /src/utils/remoteMediaLoader.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/resilientTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/resilientTask.ts -------------------------------------------------------------------------------- /src/utils/rmbg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/rmbg.ts -------------------------------------------------------------------------------- /src/utils/saver/copyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/copyToClipboard.ts -------------------------------------------------------------------------------- /src/utils/saver/exportPrompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/exportPrompts.ts -------------------------------------------------------------------------------- /src/utils/saver/postToAiPictors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/postToAiPictors.ts -------------------------------------------------------------------------------- /src/utils/saver/renderPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/renderPage.ts -------------------------------------------------------------------------------- /src/utils/saver/saveAsPng.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/saveAsPng.ts -------------------------------------------------------------------------------- /src/utils/saver/saveAsPsd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/saveAsPsd.ts -------------------------------------------------------------------------------- /src/utils/saver/saveAsZip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/saver/saveAsZip.ts -------------------------------------------------------------------------------- /src/utils/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/selection.ts -------------------------------------------------------------------------------- /src/utils/shineEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/shineEffect.ts -------------------------------------------------------------------------------- /src/utils/sortableList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/sortableList.ts -------------------------------------------------------------------------------- /src/utils/supabaseAuth/base64Url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/supabaseAuth/base64Url.ts -------------------------------------------------------------------------------- /src/utils/supabaseAuth/readSupabaseSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/supabaseAuth/readSupabaseSession.ts -------------------------------------------------------------------------------- /src/utils/textEditFilm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/textEditFilm.ts -------------------------------------------------------------------------------- /src/utils/textLiftFilm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/textLiftFilm.ts -------------------------------------------------------------------------------- /src/utils/timeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/timeFormat.ts -------------------------------------------------------------------------------- /src/utils/upscaleImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/upscaleImage.ts -------------------------------------------------------------------------------- /src/utils/waitDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/utils/waitDialog.ts -------------------------------------------------------------------------------- /src/videomaker/FrameResidenceTime.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/FrameResidenceTime.svelte -------------------------------------------------------------------------------- /src/videomaker/SeekBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/SeekBar.svelte -------------------------------------------------------------------------------- /src/videomaker/VideoMaker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/VideoMaker.svelte -------------------------------------------------------------------------------- /src/videomaker/VideoPlayer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/VideoPlayer.svelte -------------------------------------------------------------------------------- /src/videomaker/buildProgram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/buildProgram.ts -------------------------------------------------------------------------------- /src/videomaker/generateMovieFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/generateMovieFile.ts -------------------------------------------------------------------------------- /src/videomaker/generateScenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/generateScenes.ts -------------------------------------------------------------------------------- /src/videomaker/renderProgram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/videomaker/renderProgram.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /src/weaver/storyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/src/weaver/storyboard.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /test/calculateCost.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/test/calculateCost.test.ts -------------------------------------------------------------------------------- /test/filmSerialization.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/test/filmSerialization.test.ts -------------------------------------------------------------------------------- /test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/test/helpers.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/videoModelConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/test/videoModelConfig.test.ts -------------------------------------------------------------------------------- /testdata/dump/testcase-v1.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/testdata/dump/testcase-v1.ndjson -------------------------------------------------------------------------------- /testdata/dump/testcase-v2.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/testdata/dump/testcase-v2.ndjson -------------------------------------------------------------------------------- /testdata/dump/testcase.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/testdata/dump/testcase.ndjson -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.svelte-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/tsconfig.svelte-check.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vite.https.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/vite.https.config.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonigata/FramePlanner2/HEAD/wrangler.toml --------------------------------------------------------------------------------