Skip to content

Commit

Permalink
v0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackRam-oss committed Aug 8, 2024
1 parent 3095469 commit c193b5e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
15 changes: 9 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@drincs/pixi-vn",
"version": "0.6.6",
"version": "0.6.7",
"description": "Pixi'VN is a npm package that provides various features for creating visual novels.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -24,7 +24,7 @@
"homepage": "https://pixi-vn.web.app/",
"funding": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1",
"devDependencies": {
"@drincs/pixi-vn": "^0.6.5",
"@drincs/pixi-vn": "^0.6.6",
"@types/crypto-js": "^4.2.2",
"@types/css-font-loading-module": "^0.0.13",
"@types/deep-diff": "^1.0.5",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PauseType, RepeatType } from "./types"

export const PIXIVN_VERSION = '0.6.6'
export const PIXIVN_VERSION = '0.6.7'
export const Repeat: RepeatType = "repeat"
/**
* Pause the tickers for a duration.
Expand Down
3 changes: 1 addition & 2 deletions src/types/LabelJsonType.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { LabelIdType } from "./LabelIdType";
import StepLabelJsonType from "./StepLabelJsonType";

/**
* Label JSON type
*/
type LabelJsonType = { [labelId: LabelIdType]: StepLabelJsonType[] }
type LabelJsonType = { [labelId: string]: StepLabelJsonType[] }

export default LabelJsonType

0 comments on commit c193b5e

Please sign in to comment.