Skip to content

Commit

Permalink
Merge pull request #75 from Next2D/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ienaga committed May 6, 2023
2 parents f0e4500 + 99b3db4 commit cc0bd86
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@next2d/framework",
"description": "It is a framework dedicated to Next2D that enables scene management by URL (SPA), which has been difficult with conventional Canvas/WebGL applications, and simplifies readability and shareability by fixing the development pattern (MVVM).",
"version": "1.4.5",
"version": "1.5.0",
"homepage": "https://next2d.app",
"bugs": "https://github.com/Next2D/Framework/issues/new",
"author": "Toshiyuki Ienaga <ienaga@tvon.jp>",
Expand Down
6 changes: 3 additions & 3 deletions src/application/Application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ export class Application
initialize (): void {}

/**
* 指定のViewを起動して、描画を開始します。引数を指定しない場合はURLをパースしてViewを起動します。
* Launches the specified View and starts drawing. If no argument is specified,
* the URL will be parsed and the View will be launched.
* @description 指定のViewを起動して、描画を開始します。引数を指定しない場合はURLをパースしてViewを起動します。
* Launches the specified View and starts drawing. If no argument is specified,
* the URL will be parsed and the View will be launched.
*
* @param {string} [name=""]
* @return {Promise<any>}
Expand Down
3 changes: 3 additions & 0 deletions src/domain/callback/Callback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import { ConfigParser } from "../parser/ConfigParser";
export class Callback
{
/**
* @description configで指定されたクラスのexecute関数を実行
* Execute function of the class specified in config.
*
* @param {string|array} [callback=""]
* @param {*} [value=null]
* @return {Promise}
Expand Down
3 changes: 3 additions & 0 deletions src/domain/parser/QueryParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ interface Object {
export class QueryParser
{
/**
* @description 指定されたQueryStringか、URLのQueryStringをquery mapに登録
* Register the specified QueryString or URL QueryString in the query map
*
* @param {string} [name=""]
* @return {object}
* @method
Expand Down
5 changes: 4 additions & 1 deletion src/domain/parser/RequestParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ interface Object {
export class RequestParser
{
/**
* @description
* @description routing.jsonに設定されたrequestsを返却します。
* クラスターの指定があった場合は返却する配列にマージして返却
* Returns requests set in routing.json.
* If a cluster is specified, it is merged into the array to be returned
*
* @param {string} name
* @return {array}
Expand Down
7 changes: 7 additions & 0 deletions src/domain/screen/DefaultLoading.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export class DefaultLoading
}

/**
* @description Canvasが設置されたDOMにローディング演出を登録、既にDOMがあれば演出を表示
* Register loading direction in the DOM where Canvas is installed,
* and display the direction if the DOM already exists.
*
* @return {void}
* @method
* @public
Expand Down Expand Up @@ -108,6 +112,9 @@ export class DefaultLoading
}

/**
* @description ローディング演出を非表示にする
* Hide loading direction
*
* @return {void}
* @method
* @public
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"compilerOptions": {
"strict": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down

0 comments on commit cc0bd86

Please sign in to comment.