@ttmg/cli 0.4.1-beta.wasm1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -254,3 +254,14 @@ API 预检建议文案统一收敛,避免重复提示,阅读更清晰
254
254
  3. 阶段三保留卡片名称、Content ID、场景、启动包、Queries 等信息,并单独展示「上线状态」,避免与阶段二「审核状态」混淆。
255
255
  4. 已上线卡片会展示「下线直玩卡」操作,未上线卡片展示「上线直玩卡」操作,确认后刷新最新线上状态。
256
256
  5. 优化直玩卡调试页面的区块间距,修复操作按钮与信息面板贴得过近的问题。
257
+
258
+ ## 0.4.0
259
+
260
+ 修复游戏无开发权限时提示信息展示异常的问题,引导更准确。
261
+
262
+ ## 0.4.1
263
+
264
+ 优化上传代码包流程:
265
+
266
+ 1. 上传后的平台处理提示改为更易理解的文案,不再向开发者暴露平台内部状态码及 asset / ready 等技术字段,进度与失败原因表达更清晰。
267
+ 2. 重构上传成功卡片布局:二维码与版本信息分区展示并以分隔线区隔,新增成功状态标识,排版更紧凑协调。
package/dist/index.js CHANGED
@@ -9440,6 +9440,49 @@ const gameCheckRoute = {
9440
9440
  };
9441
9441
 
9442
9442
  const changelog = [
9443
+ {
9444
+ title: '0.4.1',
9445
+ target: {
9446
+ iOS: '>=43.1',
9447
+ Android: '>=43.1',
9448
+ },
9449
+ changes: {
9450
+ optimize: [
9451
+ {
9452
+ desc: {
9453
+ 'zh-CN': '优化上传代码包流程:上传后的平台处理提示改为更易理解的文案,不再向开发者暴露平台内部状态码及 asset / ready 等技术字段,进度与失败原因表达更清晰',
9454
+ 'en-US': 'Improve the code package upload flow: post-upload platform status messages are now easier to understand and no longer expose internal status codes or technical fields like asset / ready, making progress and failure reasons clearer.',
9455
+ },
9456
+ module: 'upload',
9457
+ },
9458
+ {
9459
+ desc: {
9460
+ 'zh-CN': '重构上传成功卡片布局:二维码与版本信息分区展示并以分隔线区隔,新增成功状态标识,排版更紧凑协调',
9461
+ 'en-US': 'Rework the upload success card layout: the QR code and version info are separated into clear sections with a divider, a success indicator is added, and the layout is more compact and balanced.',
9462
+ },
9463
+ module: 'upload',
9464
+ },
9465
+ ],
9466
+ },
9467
+ },
9468
+ {
9469
+ title: '0.4.0',
9470
+ target: {
9471
+ iOS: '>=43.1',
9472
+ Android: '>=43.1',
9473
+ },
9474
+ changes: {
9475
+ bugfix: [
9476
+ {
9477
+ desc: {
9478
+ 'zh-CN': '修复游戏无开发权限时提示信息展示异常的问题,引导更准确',
9479
+ 'en-US': 'Fix incorrect prompt messaging when the developer has no permission to develop the game, providing more accurate guidance.',
9480
+ },
9481
+ module: 'detail',
9482
+ },
9483
+ ],
9484
+ },
9485
+ },
9443
9486
  {
9444
9487
  title: '0.3.9',
9445
9488
  target: {
@@ -13820,7 +13863,7 @@ async function upload({ clientKey, note = '--', dir, }) {
13820
13863
  }
13821
13864
  }
13822
13865
 
13823
- var version = "0.4.1-beta.wasm1";
13866
+ var version = "0.4.1";
13824
13867
  var pkg = {
13825
13868
  version: version};
13826
13869