Skip to content

Commit

Permalink
chore(release): 2.9.3 [skip ci]
Browse files Browse the repository at this point in the history
## [2.9.3](v2.9.2...v2.9.3) (2022-12-07)

### Bug Fixes

* **eslint:** add missing radix to `parseInt` ([8d963bc](8d963bc))
* **eslint:** use `for of` instead of regular for loop ([5b41be4](5b41be4))
* **eslint:** use strict equality checks in `LabelButton` ([108369b](108369b))
  • Loading branch information
semantic-release-bot committed Dec 7, 2022
1 parent 12e3df8 commit ebc9395
Show file tree
Hide file tree
Showing 10 changed files with 1,819 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [2.9.3](https://github.com/lunafromthemoon/RenJS-V2/compare/v2.9.2...v2.9.3) (2022-12-07)


### Bug Fixes

* **eslint:** add missing radix to `parseInt` ([8d963bc](https://github.com/lunafromthemoon/RenJS-V2/commit/8d963bc7d174f66904ac11bca6272ae21d97d51d))
* **eslint:** use `for of` instead of regular for loop ([5b41be4](https://github.com/lunafromthemoon/RenJS-V2/commit/5b41be495f749fa3895b8d8e2a0e38486f9c7f30))
* **eslint:** use strict equality checks in `LabelButton` ([108369b](https://github.com/lunafromthemoon/RenJS-V2/commit/108369bca6e8a07c9cfa4a1264219973761be095))

## [2.9.2](https://github.com/lunafromthemoon/RenJS-V2/compare/v2.9.1...v2.9.2) (2022-06-02)


Expand Down
900 changes: 900 additions & 0 deletions dist/renjs.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/types/src/core/RJS.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ export default class RJS extends Game {
tools: any;
screenReady: boolean;
pluginsRJS: any;
phaserUpdateHandler: any;
phaserRenderHandler: any;
addPlugin(name: string, cls: any): void;
get renjsversion(): string;
config: RJSGameConfig;
Expand Down Expand Up @@ -66,6 +64,7 @@ export default class RJS extends Game {
constructor(config: RJSGameConfig);
launch(): void;
setupScreen(): void;
phaserUpdateHandler(): void;
initStory(): Promise<any>;
checkPlugins(signal: string, params?: any[]): Promise<any>;
pause(): void;
Expand Down
1 change: 0 additions & 1 deletion dist/types/src/states/PreloadStory.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ declare class PreloadStory extends RJSState {
preload(): void;
create(): Promise<any>;
update(): void;
render(): void;
initGame(): void;
}
export default PreloadStory;
6 changes: 5 additions & 1 deletion dist/types/src/utils/gui.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { Text } from 'phaser-ce';
export declare function changeInputEnabled(displayObj: any, enabled: any): void;
export declare function setTextStyles(text: string, textObj: Text, findPauses?: boolean): any;
export declare function setTextStyles(text: string, textObj: Text, findPauses?: false): string;
export declare function setTextStyles(text: string, textObj: Text, findPauses: true): readonly [string, {
time: number;
index: number;
}[]];
/**
* compareFn for hud config elements.
* ensures that name box is on top of dialogue,
Expand Down
Binary file modified docs/downloads/RenJSQuickstart.zip
Binary file not shown.
900 changes: 900 additions & 0 deletions docs/downloads/releases/renjs-v2.9.3.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.2",
"version": "2.9.3",
"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 ebc9395

Please sign in to comment.