Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/apps/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
];

Expand Down
2 changes: 1 addition & 1 deletion src/commands/instructions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/commands/modules.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']) {
Expand Down