Skip to content

Commit

Permalink
chore(release): 2.9.1 [skip ci]
Browse files Browse the repository at this point in the history
## [2.9.1](v2.9.0...v2.9.1) (2022-06-01)

### Bug Fixes

* pauses bug ([f99925e](f99925e))
  • Loading branch information
semantic-release-bot committed Jun 1, 2022
1 parent f99925e commit 1c36eba
Show file tree
Hide file tree
Showing 9 changed files with 914 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.9.1](https://github.com/lunafromthemoon/RenJS-V2/compare/v2.9.0...v2.9.1) (2022-06-01)


### Bug Fixes

* pauses bug ([f99925e](https://github.com/lunafromthemoon/RenJS-V2/commit/f99925ea434f4907ab9ebeb06c585974234cb3ee))

# [2.9.0](https://github.com/lunafromthemoon/RenJS-V2/compare/v2.8.0...v2.9.0) (2022-06-01)


Expand Down
2 changes: 1 addition & 1 deletion dist/renjs.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions dist/types/src/utils/gui.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { Text } from 'phaser-ce';
export declare function changeInputEnabled(displayObj: any, enabled: any): void;
export declare function extractPauses(text: string): [string, {
index: number;
time: number;
}[]];
export declare function setTextStyles(text: string, textObj: Text): string;
export declare function setTextStyles(text: string, textObj: Text, findPauses?: boolean): any;
/**
* compareFn for hud config elements.
* ensures that name box is on top of dialogue,
Expand Down
2 changes: 1 addition & 1 deletion dist/types/src/utils/textStyle.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ declare type Token = {
tag: string;
};
/** converts text into a list of tokens that can be used to construct styles */
export declare function tokenizeTextStyle(text: string, pauses?: boolean): Token[];
export declare function tokenizeTextStyle(text: string, regex?: string): Token[];
export {};
Binary file modified docs/downloads/RenJSQuickstart.zip
Binary file not shown.
900 changes: 900 additions & 0 deletions docs/downloads/releases/renjs-v2.9.1.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/downloads/releases/renjs.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "renjs",
"version": "2.9.0",
"version": "2.9.1",
"description": "RenJS is a videogame library for making Visual Novels that run directly in the web browser",
"author": "lunafromthemoon",
"contributors": [
Expand Down

0 comments on commit 1c36eba

Please sign in to comment.