Skip to content

Commit f999e64

Browse files
committed
3.18.1 release
1 parent 44408b3 commit f999e64

3 files changed

Lines changed: 18 additions & 11 deletions

File tree

README.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Grab the source and join the fun!
2222

2323
<div align="center"><img src="https://phaser.io/images/github/news.jpg"></div>
2424

25-
> 19th June 2019
25+
> 20th June 2019
2626
2727
After another month of hard work, we're very happy to announce the release of Phaser 3.18. In this release we took the time to rewrite large chunks of the Input API. This allowed us to fix a number of issues that had arisen, as well as optimizing the internal event flow. Native support for complete Multi-Touch support, Mouse Wheels and more advanced Pointer Button handling are now available. The whole API is smaller and tidier after the clean-up, which is always a good thing.
2828

@@ -110,13 +110,13 @@ npm install phaser
110110
[Phaser is on jsDelivr](https://www.jsdelivr.com/projects/phaser) which is a "super-fast CDN for developers". Include the following in your html:
111111

112112
```html
113-
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.0/dist/phaser.js"></script>
113+
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.1/dist/phaser.js"></script>
114114
```
115115

116116
or the minified version:
117117

118118
```html
119-
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.0/dist/phaser.min.js"></script>
119+
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.1/dist/phaser.min.js"></script>
120120
```
121121

122122
### API Documentation
@@ -186,13 +186,13 @@ We've 3 tutorials related to Facebook Instant Games and Phaser:
186186
A special build of Phaser with the Facebook Instant Games Plugin ready-enabled is [available on jsDelivr](https://www.jsdelivr.com/projects/phaser). Include the following in your html:
187187

188188
```html
189-
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.0/dist/phaser-facebook-instant-games.js"></script>
189+
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.1/dist/phaser-facebook-instant-games.js"></script>
190190
```
191191

192192
or the minified version:
193193

194194
```html
195-
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.0/dist/phaser-facebook-instant-games.min.js"></script>
195+
<script src="//cdn.jsdelivr.net/npm/phaser@3.18.1/dist/phaser-facebook-instant-games.min.js"></script>
196196
```
197197

198198
The build files are in the git repository in the `dist` folder, and you can also include the plugin in custom builds.
@@ -209,7 +209,7 @@ Create an `index.html` page locally and paste the following code into it:
209209
<!DOCTYPE html>
210210
<html>
211211
<head>
212-
<script src="https://cdn.jsdelivr.net/npm/phaser@3.18.0/dist/phaser-arcade-physics.min.js"></script>
212+
<script src="https://cdn.jsdelivr.net/npm/phaser@3.18.1/dist/phaser-arcade-physics.min.js"></script>
213213
</head>
214214
<body>
215215

@@ -320,6 +320,13 @@ You can then run `webpack` to create a development build in the `build` folder w
320320

321321
# Change Log
322322

323+
## Version 3.18.1 - Raphtalia - 20th June 2019
324+
325+
### Bug Fixes
326+
327+
* `InputManager.preRender` didn't get the `time` property correctly, causing input plugin methods that relied on it to fail.
328+
* `KeyboardPlugin.time` wasn't being set to the correct value, causing `checkDown` to fail constantly.
329+
323330
## Version 3.18.0 - Raphtalia - 19th June 2019
324331

325332
### Input System Changes
@@ -547,8 +554,8 @@ All rights reserved.
547554

548555
"Above all, video games are meant to be just one thing: fun. Fun for everyone." - Satoru Iwata
549556

550-
[get-js]: https://github.com/photonstorm/phaser/releases/download/v3.18.0/phaser.js
551-
[get-minjs]: https://github.com/photonstorm/phaser/releases/download/v3.18.0/phaser.min.js
557+
[get-js]: https://github.com/photonstorm/phaser/releases/download/v3.18.1/phaser.js
558+
[get-minjs]: https://github.com/photonstorm/phaser/releases/download/v3.18.1/phaser.min.js
552559
[clone-http]: https://github.com/photonstorm/phaser.git
553560
[clone-ssh]: git@github.com:photonstorm/phaser.git
554561
[clone-ghwin]: github-windows://openRepo/https://github.com/photonstorm/phaser

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "phaser",
3-
"version": "3.19.0-beta1",
4-
"release": "Naofumi",
3+
"version": "3.18.1",
4+
"release": "Raphtalia",
55
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.",
66
"author": "Richard Davey <rich@photonstorm.com> (http://www.photonstorm.com)",
77
"homepage": "http://phaser.io",

src/const.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var CONST = {
2020
* @type {string}
2121
* @since 3.0.0
2222
*/
23-
VERSION: '3.19.0-beta1',
23+
VERSION: '3.18.1',
2424

2525
BlendModes: require('./renderer/BlendModes'),
2626

0 commit comments

Comments
 (0)