From b13f0595ffcd8cfc5b27ce63108e0d1ab504e0cd Mon Sep 17 00:00:00 2001 From: ienaga Date: Fri, 18 Apr 2025 14:12:02 +0900 Subject: [PATCH 1/3] update packages --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" }, From 7635f978aff9659d0db86d2a1537f3e37b0eaeb6 Mon Sep 17 00:00:00 2001 From: ienaga Date: Fri, 18 Apr 2025 14:12:17 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=E5=87=A6?= =?UTF-8?q?=E7=90=86=E3=82=92=E6=94=B9=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../usecase/ApplicationGotoViewUseCase.ts | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) 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を起動 From ffcc565133e9373f1074f9cb4fb5d4da18deb267 Mon Sep 17 00:00:00 2001 From: ienaga Date: Fri, 18 Apr 2025 18:36:11 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E6=83=85=E5=A0=B1=E3=82=92=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", "");