blacktrigram 0.7.2 → 0.7.3

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.
@@ -22,7 +22,7 @@ import { useCallback, useEffect, useMemo, useRef, useState } from "react";
22
22
  import { jsx, jsxs } from "react/jsx-runtime";
23
23
  import { Canvas } from "@react-three/fiber";
24
24
  //#region src/components/screens/intro/IntroScreen3D.tsx
25
- var APP_VERSION = "0.7.2";
25
+ var APP_VERSION = "0.7.3";
26
26
  var MENU_ITEMS = [
27
27
  {
28
28
  mode: GameMode.VERSUS,
@@ -184,7 +184,7 @@ var SplashScreen = ({ onStart, width, height }) => {
184
184
  }),
185
185
  /* @__PURE__ */ jsxs("div", {
186
186
  role: "contentinfo",
187
- "aria-label": `Application version 0.7.2`,
187
+ "aria-label": `Application version 0.7.3`,
188
188
  style: {
189
189
  position: "absolute",
190
190
  bottom: "20px",
@@ -193,7 +193,7 @@ var SplashScreen = ({ onStart, width, height }) => {
193
193
  fontSize: "10px",
194
194
  zIndex: 1
195
195
  },
196
- children: ["v", "0.7.2"]
196
+ children: ["v", "0.7.3"]
197
197
  })
198
198
  ]
199
199
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blacktrigram",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
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",