blacktrigram 0.7.37 → 0.7.38

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/README.md CHANGED
@@ -36,7 +36,7 @@
36
36
  <a href="https://github.com/Hack23/blacktrigram/releases"><img src="https://img.shields.io/github/v/release/Hack23/blacktrigram?style=flat-square&color=FFD700&logo=github&logoColor=white" alt="Latest GitHub release"/></a>
37
37
  </div>
38
38
  <div>
39
- <a href="https://nodejs.org/"><img src="https://img.shields.io/badge/Node-%E2%89%A525-339933?style=flat-square&logo=node.js&logoColor=white" alt="Node.js 25 or later required"/></a>
39
+ <a href="https://nodejs.org/"><img src="https://img.shields.io/badge/Node-%E2%89%A526-339933?style=flat-square&logo=node.js&logoColor=white" alt="Node.js 26 or later required"/></a>
40
40
  </div>
41
41
  </td>
42
42
  <td>
@@ -379,7 +379,7 @@ Built for **combat realism**, **60fps performance**, and **production-grade engi
379
379
  ### ⚡ Build & Performance
380
380
 
381
381
  ![Vite 8](https://img.shields.io/badge/Vite-8.x-646CFF?style=for-the-badge&logo=vite&logoColor=white)
382
- ![Node 25+](https://img.shields.io/badge/Node-%E2%89%A525-339933?style=for-the-badge&logo=node.js&logoColor=white)
382
+ ![Node 26+](https://img.shields.io/badge/Node-%E2%89%A526-339933?style=for-the-badge&logo=node.js&logoColor=white)
383
383
  ![WebGL 2](https://img.shields.io/badge/WebGL-2.0-990000?style=for-the-badge)
384
384
  ![Web Audio](https://img.shields.io/badge/Audio-Web_Audio_API-FF9500?style=for-the-badge)
385
385
  ![60fps Desktop](https://img.shields.io/badge/Desktop-60fps-4CAF50?style=for-the-badge)
@@ -603,8 +603,8 @@ _"Code is reality made computational. If it doesn't work, nothing else matters."
603
603
 
604
604
  ### 📋 Prerequisites
605
605
 
606
- - **Node.js 25+** — [download](https://nodejs.org/)
607
- - **npm 11+** (bundled with Node 25)
606
+ - **Node.js 26+** — [download](https://nodejs.org/)
607
+ - **npm 11+** (bundled with Node 26)
608
608
  - Modern browser with **WebGL 2.0** support
609
609
 
610
610
  ### 🌐 Play Now
@@ -618,8 +618,8 @@ _"Code is reality made computational. If it doesn't work, nothing else matters."
618
618
  git clone https://github.com/Hack23/blacktrigram.git
619
619
  cd blacktrigram
620
620
 
621
- # Install (requires Node ≥ 25)
622
- npm install
621
+ # Install (requires Node ≥ 26)
622
+ npm ci
623
623
 
624
624
  # Start the dojang
625
625
  npm run dev
@@ -21,7 +21,7 @@ import { useCallback, useEffect, useMemo, useRef, useState } from "react";
21
21
  import { jsx, jsxs } from "react/jsx-runtime";
22
22
  import { Canvas } from "@react-three/fiber";
23
23
  //#region src/components/screens/intro/IntroScreen3D.tsx
24
- var APP_VERSION = "0.7.37";
24
+ var APP_VERSION = "0.7.38";
25
25
  var MENU_ITEMS = [
26
26
  {
27
27
  mode: GameMode.VERSUS,
@@ -183,7 +183,7 @@ var SplashScreen = ({ onStart, width, height }) => {
183
183
  }),
184
184
  /* @__PURE__ */ jsxs("div", {
185
185
  role: "contentinfo",
186
- "aria-label": `Application version 0.7.37`,
186
+ "aria-label": `Application version 0.7.38`,
187
187
  style: {
188
188
  position: "absolute",
189
189
  bottom: "20px",
@@ -192,7 +192,7 @@ var SplashScreen = ({ onStart, width, height }) => {
192
192
  fontSize: "10px",
193
193
  zIndex: 1
194
194
  },
195
- children: ["v", "0.7.37"]
195
+ children: ["v", "0.7.38"]
196
196
  })
197
197
  ]
198
198
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blacktrigram",
3
- "version": "0.7.37",
3
+ "version": "0.7.38",
4
4
  "description": "Black Trigram (흑괘) - Korean Martial Arts Combat Simulator. Reusable game systems, combat mechanics, animation framework, and Korean martial arts data built with React, Three.js, and TypeScript.",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -98,7 +98,7 @@
98
98
  "registry": "https://registry.npmjs.org/"
99
99
  },
100
100
  "engines": {
101
- "node": ">=25.0.0",
101
+ "node": ">=26.0.0",
102
102
  "npm": ">=11.0.0"
103
103
  },
104
104
  "scripts": {