diff --git a/README.md b/README.md index 9a5440d5..e2c558c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ The Game Closure DevKit ======================= +[![Join the chat at https://gitter.im/hashcube/devkit](https://badges.gitter.im/hashcube/devkit.svg)](https://gitter.im/hashcube/devkit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + HTML5 JavaScript game development kit. Run in your browser; build to iOS and Android. @@ -15,6 +17,15 @@ DevKit requires that you install few dependencies first: * [node.js](http://nodejs.org/) v10 or higher * [git](http://git-scm.com/) +Add this to your /.bashrc or /.zshrc +``` +// X.X = Version No. of your OS. + +export CXXFLAGS="-mmacosx-version-min=X.X" +export LDFLAGS="-mmacosx-version-min=X.X" + +``` + We recommend using [brew](http://brew.sh/) to install these if you do not have them already. diff --git a/package.json b/package.json index 625e6747..3220e033 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "name": "devkit", "keywords": "HTML 5 game sdk platform mobile browser javascript ios android", "description": "HTML 5 game platform for browser and mobile", - "version": "3.1.3", + "version": "3.1.3-4", "homepage": "http://github.com/gameclosure/", "repository": { "url": "https://github.com/gameclosure/devkit.git" @@ -23,7 +23,7 @@ "filesize": "^3.1.3", "fs-extra": "^0.24.0", "js-yaml": "^3.4.0", - "jsio": "^2.2.4", + "jsio": "git+https://github.com/hashcube/js.io.git#v2.2.4-3", "lockfile": "^1.0.0", "mime": "^1.3.4", "open": "0.0.5", diff --git a/src/apps/App.js b/src/apps/App.js index 9ecf8f44..5d9fd757 100644 --- a/src/apps/App.js +++ b/src/apps/App.js @@ -221,8 +221,8 @@ var App = module.exports = Class(function () { name: 'devkit-core', ssh: 'git@github.com:', https: 'https://github.com/', - repo: 'gameclosure/devkit-core', - tag: '' + repo: 'hashcube/devkit-core', + tag: 'hc' } ]; diff --git a/src/commands/instructions.js b/src/commands/instructions.js index 01171df5..66fbc219 100644 --- a/src/commands/instructions.js +++ b/src/commands/instructions.js @@ -56,7 +56,7 @@ var InstructionsCommand = Class(BaseCommand, function (supr) { ); } console.log(chalk.cyan( - "Please report any issues at https://github.com/gameclosure/devkit2." + "Please report any issues at https://github.com/hashcube/devkit." )); console.log(chalk.green( "The documentation is available online at http://docs.gameclosure.com" diff --git a/src/commands/modules.js b/src/commands/modules.js index ffdf2666..526ea85c 100644 --- a/src/commands/modules.js +++ b/src/commands/modules.js @@ -95,7 +95,7 @@ var ModulesCommand = Class(BaseCommand, function (supr) { } function describeVersion(app, module) { - var version = module.version; + var version = app._dependencies[module.name].version; return Module.describeVersion(module.path) .then(function (currentVersion) { if (argv['save-current']) {