Skip to content

Commit

Permalink
Merge pull request #304 from OpenWebGAL/dev
Browse files Browse the repository at this point in the history
4.5.6
  • Loading branch information
MakinoharaShoko committed Aug 30, 2024
2 parents 6475729 + ac1e15a commit a8b28dd
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webgal-terre",
"version": "4.5.5",
"version": "4.5.6",
"private": true,
"scripts": {
"dev": "concurrently \"yarn dev:terre\" \"yarn dev:origine\" \"yarn dev:start-dev-server\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/origine2/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webgal-origine-2",
"private": true,
"version": "4.5.5",
"version": "4.5.6",
"license": "MPL-2.0",
"scripts": {
"dev": "lingui extract && lingui compile --typescript && vite --host",
Expand Down
2 changes: 1 addition & 1 deletion packages/origine2/src/config/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export interface Info {
}

export const __INFO: Info = {
version: '4.5.5',
version: '4.5.6',
buildTime: '2024-08-17T14:10:41.796Z', // 编译时会通过 version-sync.js 自动更新
};

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name":"Default Template",
"webgal-version":"4.5.5"
"webgal-version":"4.5.6"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="manifest" href="./manifest.json" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>-->
<title>WebGAL</title>
<script type="module" crossorigin src="./assets/index-2d7a304e.js"></script>
<script type="module" crossorigin src="./assets/index-cb16cf2a.js"></script>
<link rel="stylesheet" href="./assets/index-e85ba9eb.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion packages/terre2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webgal-terre-2",
"version": "4.5.5",
"version": "4.5.6",
"description": "",
"author": "",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { ConsoleLogger, Injectable, NotFoundException } from '@nestjs/common';
import { IFileInfo, WebgalFsService } from '../webgal-fs/webgal-fs.service';
import * as fsp from 'fs/promises';
import { webgalParser } from '../../util/webgal-parser';
import { version_number } from '../../main';

@Injectable()
export class ManageTemplateService {
Expand Down Expand Up @@ -47,7 +48,7 @@ export class ManageTemplateService {
*/
const templateConfig = {
name: templateName,
'webgal-version': '4.5.5',
'webgal-version': version_number,
};

const templateConfigText = JSON.stringify(templateConfig, undefined, 2);
Expand Down
2 changes: 1 addition & 1 deletion packages/terre2/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { env } from 'process';
import { WsAdapter } from '@nestjs/platform-ws';

let WEBGAL_PORT = 3000; // default port
const version_number = `4.5.5`;
export const version_number = `4.5.6`;
if (env.WEBGAL_PORT) {
WEBGAL_PORT = Number.parseInt(env.WEBGAL_PORT);
}
Expand Down
6 changes: 6 additions & 0 deletions releasenote.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

#### 修复

4.5.6 修复:无法从状态中获取到对应 key 的变量时,返回 {key} 以避免变换不生效

修复引擎的若干错误

<!-- English Translation -->
Expand All @@ -29,6 +31,8 @@ Reapply template after game creation

#### Fixes

4.5.6 Fix: When the corresponding key variable cannot be obtained from the state, return {key} to avoid ineffective transformation.

Fix several bugs in the engine

<!-- Japanese Translation -->
Expand All @@ -47,6 +51,8 @@ Fix several bugs in the engine

#### 修正

4.5.6 修正:状態から対応する key の変数が取得できない場合、{key} を返すようにし、変換が無効になるのを回避しました

エンジンのいくつかのバグを修正

[//]: # (<!-- French Translation -->)
Expand Down

0 comments on commit a8b28dd

Please sign in to comment.