Skip to content

Commit 29aec01

Browse files
committed
Bumping to 3.7.0
1 parent 7c53e13 commit 29aec01

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

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.6.1',
23+
VERSION: '3.7.0',
2424

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

src/display/mask/BitmapMask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ var BitmapMask = new Class({
200200
* so be sure to call `clearMask` on any Game Object using it, before destroying it.
201201
*
202202
* @method Phaser.Display.Masks.BitmapMask#destroy
203-
* @since 3.6.1
203+
* @since 3.7.0
204204
*/
205205
destroy: function ()
206206
{

src/display/mask/GeometryMask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ var GeometryMask = new Class({
140140
* so be sure to call `clearMask` on any Game Object using it, before destroying it.
141141
*
142142
* @method Phaser.Display.Masks.GeometryMask#destroy
143-
* @since 3.6.1
143+
* @since 3.7.0
144144
*/
145145
destroy: function ()
146146
{

src/textures/CanvasTexture.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var Texture = require('./Texture');
3232
* @extends Phaser.Textures.Texture
3333
* @memberOf Phaser.Textures
3434
* @constructor
35-
* @since 3.6.1
35+
* @since 3.7.0
3636
*
3737
* @param {Phaser.Textures.TextureManager} manager - A reference to the Texture Manager this Texture belongs to.
3838
* @param {string} key - The unique string-based key of this Texture.
@@ -58,7 +58,7 @@ var CanvasTexture = new Class({
5858
* @name Phaser.Textures.TextureManager#_source
5959
* @type {Phaser.Textures.TextureSource}
6060
* @private
61-
* @since 3.6.1
61+
* @since 3.7.0
6262
*/
6363
this._source = this.frames['__BASE'].source;
6464

@@ -68,7 +68,7 @@ var CanvasTexture = new Class({
6868
* @name Phaser.Textures.TextureManager#canvas
6969
* @readOnly
7070
* @type {HTMLCanvasElement}
71-
* @since 3.6.1
71+
* @since 3.7.0
7272
*/
7373
this.canvas = this._source.image;
7474

@@ -78,7 +78,7 @@ var CanvasTexture = new Class({
7878
* @name Phaser.Textures.TextureManager#canvas
7979
* @readOnly
8080
* @type {CanvasRenderingContext2D}
81-
* @since 3.6.1
81+
* @since 3.7.0
8282
*/
8383
this.context = this.canvas.getContext('2d');
8484

@@ -89,7 +89,7 @@ var CanvasTexture = new Class({
8989
* @name Phaser.Textures.TextureManager#width
9090
* @readOnly
9191
* @type {integer}
92-
* @since 3.6.1
92+
* @since 3.7.0
9393
*/
9494
this.width = width;
9595

@@ -100,7 +100,7 @@ var CanvasTexture = new Class({
100100
* @name Phaser.Textures.TextureManager#height
101101
* @readOnly
102102
* @type {integer}
103-
* @since 3.6.1
103+
* @since 3.7.0
104104
*/
105105
this.height = height;
106106
},
@@ -111,7 +111,7 @@ var CanvasTexture = new Class({
111111
* canvas has changed, as there is a significant GPU texture allocation cost involved in doing so.
112112
*
113113
* @method Phaser.Textures.CanvasTexture#refresh
114-
* @since 3.6.1
114+
* @since 3.7.0
115115
*
116116
* @return {Phaser.Textures.CanvasTexture} This CanvasTexture.
117117
*/
@@ -126,7 +126,7 @@ var CanvasTexture = new Class({
126126
* Gets the Canvas Element.
127127
*
128128
* @method Phaser.Textures.CanvasTexture#getCanvas
129-
* @since 3.6.1
129+
* @since 3.7.0
130130
*
131131
* @return {HTMLCanvasElement} The Canvas DOM element this texture is using.
132132
*/
@@ -139,7 +139,7 @@ var CanvasTexture = new Class({
139139
* Gets the 2D Canvas Rendering Context.
140140
*
141141
* @method Phaser.Textures.CanvasTexture#getContext
142-
* @since 3.6.1
142+
* @since 3.7.0
143143
*
144144
* @return {CanvasRenderingContext2D} The Canvas Rendering Context this texture is using.
145145
*/
@@ -152,7 +152,7 @@ var CanvasTexture = new Class({
152152
* Clears this Canvas Texture, resetting it back to transparent.
153153
*
154154
* @method Phaser.Textures.CanvasTexture#clear
155-
* @since 3.6.1
155+
* @since 3.7.0
156156
*
157157
* @return {Phaser.Textures.CanvasTexture} The Canvas Texture.
158158
*/
@@ -167,7 +167,7 @@ var CanvasTexture = new Class({
167167
* Changes the size of this Canvas Texture.
168168
*
169169
* @method Phaser.Textures.CanvasTexture#setSize
170-
* @since 3.6.1
170+
* @since 3.7.0
171171
*
172172
* @param {integer} width - The new width of the Canvas.
173173
* @param {integer} [height] - The new height of the Canvas. If not given it will use the width as the height.

src/textures/Frame.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ var Frame = new Class({
304304
* and should rarely be changed on-the-fly.
305305
*
306306
* @method Phaser.Textures.Frame#setSize
307-
* @since 3.6.1
307+
* @since 3.7.0
308308
*
309309
* @param {integer} width - The width of the frame before being trimmed.
310310
* @param {integer} height - The height of the frame before being trimmed.

src/textures/TextureManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ var TextureManager = new Class({
153153
* Checks the given texture key and throws a console.warn if the key is already in use, then returns false.
154154
*
155155
* @method Phaser.Textures.TextureManager#checkKey
156-
* @since 3.6.1
156+
* @since 3.7.0
157157
*
158158
* @param {string} key - The texture key to check.
159159
*
@@ -182,7 +182,7 @@ var TextureManager = new Class({
182182
* step when clearing down to avoid this.
183183
*
184184
* @method Phaser.Textures.TextureManager#remove
185-
* @since 3.6.1
185+
* @since 3.7.0
186186
*
187187
* @param {(string|Phaser.Textures.Texture)} key - The key of the Texture to remove, or a reference to it.
188188
*

src/textures/TextureSource.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var TextureSource = new Class({
3939
*
4040
* @name Phaser.Textures.TextureSource#renderer
4141
* @type {(Phaser.Renderer.Canvas.CanvasRenderer|Phaser.Renderer.WebGL.WebGLRenderer)}
42-
* @since 3.6.1
42+
* @since 3.7.0
4343
*/
4444
this.renderer = game.renderer;
4545

@@ -195,7 +195,7 @@ var TextureSource = new Class({
195195
* it updates the WebGLTexture using the canvas data.
196196
*
197197
* @method Phaser.Textures.TextureSource#update
198-
* @since 3.6.1
198+
* @since 3.7.0
199199
*/
200200
update: function ()
201201
{

0 commit comments

Comments
 (0)