From f4fda49d7bfb544795519b99d97e02aca20f5ce2 Mon Sep 17 00:00:00 2001 From: Maxwell Paul Brickner Date: Fri, 30 Mar 2018 12:37:07 -0400 Subject: [PATCH 1/2] Updated links to use https when possible I updated links to use https instead of http when possible to avoid a redirect --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f4feb3e8b..98ae73dbe 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Extra special thanks to our top-tier sponsors: [Orange Games](http://orangegames Every week we publish the [Phaser World](https://phaser.io/community/newsletter) newsletter. It's packed full of the latest Phaser games, tutorials, videos, meet-ups, talks, and more. The newsletter also contains our weekly Development Progress updates which let you know about the new features we're working on. -Over 100 previous editions can be found on our [Back Issues](http://phaser.io/community/backissues) page. +Over 100 previous editions can be found on our [Back Issues](https://phaser.io/community/backissues) page. ![Download Phaser](https://phaser.io/images/github/div-download.png "Download Phaser") @@ -93,7 +93,7 @@ npm install phaser [![](https://data.jsdelivr.com/v1/package/gh/photonstorm/phaser/badge)](https://www.jsdelivr.com/package/gh/photonstorm/phaser) -[Phaser is on jsDelivr](http://www.jsdelivr.com/projects/phaser) which is a "super-fast CDN for developers". Include the following in your html: +[Phaser is on jsDelivr](https://www.jsdelivr.com/projects/phaser) which is a "super-fast CDN for developers". Include the following in your html: ```html @@ -137,7 +137,7 @@ Also, please subscribe to the [Phaser World](https://phaser.io/community/newslet ### Source Code Examples -During our development of Phaser 3, we created hundreds of examples with the full source code and assets. Until these examples are fully integrated into the Phaser website, you can browse them on [Phaser 3 Labs](http://labs.phaser.io), or clone the [examples repo][examples]. Note: Not all examples work, sorry! We're tidying them up as fast as we can. +During our development of Phaser 3, we created hundreds of examples with the full source code and assets. Until these examples are fully integrated into the Phaser website, you can browse them on [Phaser 3 Labs](https://labs.phaser.io), or clone the [examples repo][examples]. Note: Not all examples work, sorry! We're tidying them up as fast as we can. ### Create Your First Phaser 3 Example @@ -147,7 +147,7 @@ Create an `index.html` page locally and paste the following code into it: - + From 562402e4400a3a2a4ac12df7c175273e8119230e Mon Sep 17 00:00:00 2001 From: jdotrjs Date: Fri, 30 Mar 2018 16:25:59 -0700 Subject: [PATCH 2/2] [fixes #3482] HueToComponent was not correctly exporting itself Pretty self explanatory -- `module.export` is a typo, needed to be `exports`. Filed associated bug #3482. --- src/display/color/HueToComponent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display/color/HueToComponent.js b/src/display/color/HueToComponent.js index 7be3c90fa..adca7ffba 100644 --- a/src/display/color/HueToComponent.js +++ b/src/display/color/HueToComponent.js @@ -47,4 +47,4 @@ var HueToComponent = function (p, q, t) return p; }; -module.export = HueToComponent; +module.exports = HueToComponent;