Skip to content

Commit

Permalink
Added LOG_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed Oct 14, 2024
1 parent eb7f17c commit 833802c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion src/const.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,17 @@ var CONST = {
* @type {string}
* @since 3.0.0
*/
VERSION: '3.86.0',
VERSION: '3.86.1',

/**
* Phaser Release Version as displayed in the console.log header URL.
*
* @name Phaser.LOG_VERSION
* @const
* @type {string}
* @since 3.86.1
*/
LOG_VERSION: 'v386',

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

Expand Down
2 changes: 1 addition & 1 deletion src/core/Config.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ var Config = new Class({
/**
* @const {string} Phaser.Core.Config#gameURL - The URL of the game.
*/
this.gameURL = GetValue(config, 'url', 'https://phaser.io/v385/');
this.gameURL = GetValue(config, 'url', 'https://phaser.io/' + CONST.LOG_VERSION);

/**
* @const {string} Phaser.Core.Config#gameVersion - The version of the game.
Expand Down

0 comments on commit 833802c

Please sign in to comment.