Added License

Esse commit está contido em:
Ivan Seidel
2015-12-28 02:07:38 -02:00
commit 96dce7e887
8 arquivos alterados com 47 adições e 5 exclusões
+4
Ver Arquivo
@@ -1,3 +1,7 @@
/*
Developed by Ivan Seidel [https://github.com/ivanseidel]
*/
var robot = require('./robotjs');
var scanner = require ('./scanner');
+21
Ver Arquivo
@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2016 ivanseidel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+4
Ver Arquivo
@@ -1,3 +1,7 @@
/*
Developed by Ivan Seidel [https://github.com/ivanseidel]
*/
var _ = require('lodash');
var async = require('async');
var synaptic = require('synaptic');
+3 -2
Ver Arquivo
@@ -77,5 +77,6 @@ There are a few files in the project:
## Credits
- [Tony Ngan](https://github.com/tngan) **The idea came from him**
- [João Pedro](https://github.com/joaopedrovbs)
- [Ivan Seidel](https://github.com/ivanseidel)
- [João Pedro](https://github.com/joaopedrovbs)
- [Tony Ngan](https://github.com/tngan) **The idea came from him**
+4
Ver Arquivo
@@ -1,3 +1,7 @@
/*
Developed by Ivan Seidel [https://github.com/ivanseidel]
*/
var fs = require('fs');
var blessed = require('blessed')
var contrib = require('blessed-contrib')
+4
Ver Arquivo
@@ -1,3 +1,7 @@
/*
Developed by Ivan Seidel [https://github.com/ivanseidel]
*/
var UI = require('./UI');
var robot = require('./robotjs');
var Learner = require('./Learner');
+3 -3
Ver Arquivo
@@ -1,13 +1,13 @@
{
"name": "iamdinosaur",
"version": "1.0.0",
"description": "",
"description": "A simple artificial inteligence to teach Google's Dinosaur to jump cactus",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"author": "Ivan Seidel",
"license": "MIT",
"dependencies": {
"async": "^1.5.0",
"blessed": "^0.1.81",
+4
Ver Arquivo
@@ -1,3 +1,7 @@
/*
Developed by Ivan Seidel [https://github.com/ivanseidel]
*/
// External Modules
var robot = require('./robotjs');
var screenSize = robot.getScreenSize();