diff --git a/package.json b/package.json index 639306f..73be662 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@next2d/framework", "description": "Next2D Framework is designed according to the principles of clean architecture, domain-driven development, test-driven development, and MVVM, with an emphasis on flexibility, scalability, and maintainability, and a design methodology that keeps each layer loosely coupled.", - "version": "3.0.5", + "version": "3.0.6", "homepage": "https://next2d.app", "bugs": "https://github.com/Next2D/Framework/issues/new", "author": "Toshiyuki Ienaga (https://github.com/ienaga/)", @@ -42,7 +42,7 @@ "globals": "^16.0.0", "jsdom": "^26.1.0", "typescript": "^5.8.3", - "vite": "^6.3.0", + "vite": "^6.3.2", "vitest": "^3.1.1", "vitest-webgl-canvas-mock": "^1.1.0" }, diff --git a/src/application/Application/usecase/ApplicationGotoViewUseCase.ts b/src/application/Application/usecase/ApplicationGotoViewUseCase.ts index 79bc606..cf1a7d3 100644 --- a/src/application/Application/usecase/ApplicationGotoViewUseCase.ts +++ b/src/application/Application/usecase/ApplicationGotoViewUseCase.ts @@ -96,17 +96,19 @@ export const execute = async (application: Application, name: string = ""): Prom response.set(object.name, object.response); } - /** - * ローディング表示を終了 - * End loading display - */ - await loadingEndService(); + if (config.loading) { + /** + * ローディング表示を終了 + * End loading display + */ + await loadingEndService(); - /** - * 前の画面のキャプチャーを終了 - * End previous screen capture - */ - disposeCaptureService(); + /** + * 前の画面のキャプチャーを終了 + * End previous screen capture + */ + disposeCaptureService(); + } /** * ViewとViewModelを起動 diff --git a/src/index.ts b/src/index.ts index 97d5b7c..e83501a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,7 +8,7 @@ import { TextFieldContent } from "./application/content/TextFieldContent"; import { VideoContent } from "./application/content/VideoContent"; // output build version -console.log("%c Next2D Framework %c 3.0.4 %c https://next2d.app", +console.log("%c Next2D Framework %c 3.0.6 %c https://next2d.app", "color: #fff; background: #5f5f5f", "color: #fff; background: #4bc729", "");