Skip to content

Commit 764b1f3

Browse files
committed
Merge pull request #1 from coderaiser/dev
Cloud Commander Application v0.2.0
2 parents 72694f2 + b1ba092 commit 764b1f3

File tree

8 files changed

+58
-61
lines changed

8 files changed

+58
-61
lines changed

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
Cloud Commander Application
22
============
3+
Node-webkit version of [Cloud Commander](http://coderaiser.github.io/cloudcmd "Cloud Commander").
34

4-
Use [Cloud Commander](//github.com/coderaiser/cloudcmd "Cloud Commander") not only in browser but in [appjs](//github.com/appjs/appjs "appjs")
5-
and [node-webkit](//github.com/rogerwang/node-webkit "node-webkit") to.
5+
Screenshots
6+
============
7+
[MainIMG]: https://raw.github.com/coderaiser/cloudcmd-screenshot/master/cloudcmd-v0.3.0.png "Cloud Commander App (main)"
8+
[MainURL]: https://github.com/coderaiser/cloudcmd-screenshot/blob/master/cloudcmd-v0.3.0.png
9+
10+
[EditIMG]: https://raw.github.com/coderaiser/cloudcmd-screenshot/master/cloudcmd-v0.3.0-edit.png "Cloud Commander App (edit)"
11+
[EditURL]: https://github.com/coderaiser/cloudcmd-screenshot/blob/master/cloudcmd-v0.3.0-edit.png
12+
13+
[ConsoleIMG]: https://raw.github.com/coderaiser/cloudcmd-screenshot/master/cloudcmd-v0.3.0-console.png "Cloud Commander App (view"
14+
[ConsoleURL]: https://github.com/coderaiser/cloudcmd-screenshot/blob/master/cloudcmd-v0.3.0-console.png
15+
16+
- Main window
17+
[![cloudcmd][MainIMG]][MainURL]
18+
19+
- Edit
20+
[![cloudcmd][EditIMG]][EditURL]
21+
22+
- Console
23+
[![cloudcmd][ConsoleIMG]][ConsoleURL]
24+
25+
Download
26+
============
27+
[v0.2.0 (win)](https://github.com/coderaiser/cloudcmd-app/releases/download/v0.2.0/cloudcmd-app-v0.2.0.zip)
28+
29+
Build
30+
============
31+
1. Get [Cloud Commander](http://coderaiser.github.io/cloudcmd "Cloud Commander") and [node-webkit](http://github.com/rogerwang/node-webkit "node-webkit").
32+
2. Unpack them to root app dir.
33+
3. Zip to cloudcmd-app.zip files: [package.json](http://github.com/coderaiser/cloudcmd-app/blob/master/package.json), [favicon.png](http://github.com/coderaiser/cloudcmd-app/blob/master/favicon.png)
34+
4. Rename cloudcmd-app.zip to cloudcmd-app.nw
35+
5. Start with [cloudcmd-app.bat](http://github.com/coderaiser/cloudcmd-app/blob/master/cloudcmd-app.bat)

app.js

Lines changed: 0 additions & 30 deletions
This file was deleted.

cloudcmd-app.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
start node-webkit\nw cloudcmd-app.nw
2+
node cloudcmd\cloudcmd
3+
pause

cloudcmd.nw

-530 Bytes
Binary file not shown.

cloudcmd/index.html

Lines changed: 0 additions & 6 deletions
This file was deleted.

cloudcmd/package.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

favicon.png

6.37 KB
Loading

package.json

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
{
2-
"name": "cloudcmd-app",
3-
"version": "0.1.0",
4-
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5-
"description": "use cloud commander not only in browser but in appjs and node-webkit to",
6-
"homepage": "https://github.com/coderaiser/cloudcmd-app",
7-
"repository": {
8-
"type": "git",
9-
"url": "git://github.com/coderaiser/cloudcmd-app.git"
10-
},
11-
"subdomain": "cloudcmd",
12-
"dependencies": {
13-
"appjs": "0.0.19",
14-
"cloudcmd": "0.1.8"
15-
}
16-
}
1+
{
2+
"name": "Cloud Commander Application",
3+
"version": "0.2.0",
4+
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5+
"description": "node-webkit version of Cloud Commander",
6+
"homepage": "https://github.com/coderaiser/cloudcmd-app",
7+
"repository": {
8+
"type": "git",
9+
"url": "git://github.com/coderaiser/cloudcmd-app.git"
10+
},
11+
"subdomain": "cloudcmd",
12+
"dependencies": {
13+
"cloudcmd": "0.3.0"
14+
},
15+
"main": "http://localhost:8000",
16+
"window": {
17+
"title": "Cloud Commander",
18+
"icon": "favicon.png",
19+
"width": 1200,
20+
"height": 820,
21+
"toolbar": false
22+
}
23+
}

0 commit comments

Comments
 (0)