ls-vertretungsplan-desktop

UNOFFICIAL Desktop App for the schedule of Lornsenschule, Schleswig
git clone git://archive.git.mtrnord.blog/MTRNord/ls-vertretungsplan-desktop.git
Log | Files | Refs | README

commit 8c8e5b7bcef1c0a7d37c9884b7080c63ec7951fe
parent d53f7d8588f08704582cb3fed0ea13f439b6992e
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun, 13 Mar 2016 15:59:28 +0100

Update fileStructure

Diffstat:
M.gitignore | 1+
Rindex.html -> app/index.html | 0
Aapp/package.json | 25+++++++++++++++++++++++++
Mbuild.js | 4++--
Mpackage.json | 6+++---
5 files changed, 31 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -23,6 +23,7 @@ coverage # Compiled binary addons (http://nodejs.org/api/addons.html) build/Release build +cache # Dependency directory node_modules diff --git a/index.html b/app/index.html diff --git a/app/package.json b/app/package.json @@ -0,0 +1,25 @@ +{ + "name": "ls-vertretungsplan-desktop", + "version": "0.0.1", + "description": "", + "main": "index.html", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "", + "window": { + "title": "NW.js demo", + "icon": "link.png", + "toolbar": false, + "frame": true, + "width": 800, + "height": 600, + "position": "center", + "min_width": 400, + "min_height": 200 + }, + "webkit": { + "plugin": true + } +} diff --git a/build.js b/build.js @@ -1,8 +1,8 @@ var NwBuilder = require('nw-builder'); var nw = new NwBuilder({ - files: './cache', // use the glob format + files: './app/**', // use the glob format platforms: ['win', 'linux'], - version: '0.0.1' + version: 'v0.12.3' }); //Log stuff you want diff --git a/package.json b/package.json @@ -1,7 +1,7 @@ { - "name": "nw-demo", - "version": "0.0.1", - "main": "index.html", + "name": "ls-vertretungsplan-desktop", + "version": "0.0.0", + "dependencies": {}, "devDependencies": { "nw-builder": "^2.2.0" }