diff options
| author | Gubolin <gubolin@fantasymail.de> | 2014-09-06 15:15:11 +0200 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2014-09-06 15:15:11 +0200 |
| commit | 23664e86b4e92c74d7ed64152b66709e5b2e5253 (patch) | |
| tree | 82ecce42994b4352027ff9cd323198f59810cd6b | |
| parent | e010c3ba9a58219ff0fdc92349d70d0feea715f2 (diff) | |
| download | snap-23664e86b4e92c74d7ed64152b66709e5b2e5253.tar.gz snap-23664e86b4e92c74d7ed64152b66709e5b2e5253.zip | |
prepare for packaging for desktop using node-webkit
| -rwxr-xr-x | desktop.sh | 12 | ||||
| -rw-r--r-- | package.json | 8 |
2 files changed, 20 insertions, 0 deletions
diff --git a/desktop.sh b/desktop.sh new file mode 100755 index 0000000..46a7594 --- /dev/null +++ b/desktop.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Requirements: +# git, zip, nodejs +# node-webkit (https://github.com/rogerwang/node-webkit), node-webkit-builder (https://github.com/mllrsohn/node-webkit-builder) + +# binaries are in snap/build/Snap! + +git clone https://github.com/Gubolin/snap.git +cd "snap" +git checkout mobileapp +nwbuild -p win,osx,linux32,linux64 . diff --git a/package.json b/package.json new file mode 100644 index 0000000..678a69c --- /dev/null +++ b/package.json @@ -0,0 +1,8 @@ +{ + "name": "Snap!", + "version": "4.0", + "main": "snap.html", + "window": { + "toolbar": false + } +} |
