From 265501b4af5bba889d5648c9a2091ac2bd0a875f Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Mon, 11 Jul 2016 22:38:09 +0100 Subject: [PATCH] The src/system folder has been removed and all files relocated to the src/utils folder. This doesn't change anything from an API point of view, but did change the grunt build scripts slightly. --- README.md | 1 + src/{system => utils}/Canvas.js | 0 src/{system => utils}/DOM.js | 0 src/{system => utils}/Device.js | 0 src/{system => utils}/RequestAnimationFrame.js | 0 tasks/jsdoc-conf.json | 1 - tasks/jsdocexportjson-conf.json | 1 - tasks/manifests/dom.json | 2 +- tasks/manifests/system.json | 6 +++--- 9 files changed, 5 insertions(+), 6 deletions(-) rename src/{system => utils}/Canvas.js (100%) rename src/{system => utils}/DOM.js (100%) rename src/{system => utils}/Device.js (100%) rename src/{system => utils}/RequestAnimationFrame.js (100%) diff --git a/README.md b/README.md index cc38b7963..86bccf746 100644 --- a/README.md +++ b/README.md @@ -318,6 +318,7 @@ You can read all about the philosophy behind Lazer [here](http://phaser.io/news/ * TypeScript definitions fixes and updates (thanks ) * Docs typo fixes (thanks ) * The InputHandler.flagged property has been removed. It was never used internally, or exposed via the API, so was just overhead. +* The src/system folder has been removed and all files relocated to the src/utils folder. This doesn't change anything from an API point of view, but did change the grunt build scripts slightly. ### Bug Fixes diff --git a/src/system/Canvas.js b/src/utils/Canvas.js similarity index 100% rename from src/system/Canvas.js rename to src/utils/Canvas.js diff --git a/src/system/DOM.js b/src/utils/DOM.js similarity index 100% rename from src/system/DOM.js rename to src/utils/DOM.js diff --git a/src/system/Device.js b/src/utils/Device.js similarity index 100% rename from src/system/Device.js rename to src/utils/Device.js diff --git a/src/system/RequestAnimationFrame.js b/src/utils/RequestAnimationFrame.js similarity index 100% rename from src/system/RequestAnimationFrame.js rename to src/utils/RequestAnimationFrame.js diff --git a/tasks/jsdoc-conf.json b/tasks/jsdoc-conf.json index 9c31e7711..db2650966 100644 --- a/tasks/jsdoc-conf.json +++ b/tasks/jsdoc-conf.json @@ -18,7 +18,6 @@ "./src/physics/", "./src/plugins/", "./src/sound/", - "./src/system/", "./src/tilemap/", "./src/time/", "./src/tween/", diff --git a/tasks/jsdocexportjson-conf.json b/tasks/jsdocexportjson-conf.json index de94ae21e..1e1d0cbdd 100644 --- a/tasks/jsdocexportjson-conf.json +++ b/tasks/jsdocexportjson-conf.json @@ -17,7 +17,6 @@ "./src/particles/", "./src/physics/", "./src/sound/", - "./src/system/", "./src/tilemap/", "./src/time/", "./src/tween/", diff --git a/tasks/manifests/dom.json b/tasks/manifests/dom.json index c28024d53..2414a1a4e 100644 --- a/tasks/manifests/dom.json +++ b/tasks/manifests/dom.json @@ -1,3 +1,3 @@ [ - "src/system/DOM.js" + "src/utils/DOM.js" ] diff --git a/tasks/manifests/system.json b/tasks/manifests/system.json index 99595d51b..9402e77ef 100644 --- a/tasks/manifests/system.json +++ b/tasks/manifests/system.json @@ -1,5 +1,5 @@ [ - "src/system/Device.js", - "src/system/Canvas.js", - "src/system/RequestAnimationFrame.js" + "src/utils/Device.js", + "src/utils/Canvas.js", + "src/utils/RequestAnimationFrame.js" ]