diff options
author | Rob Loach <robloach@gmail.com> | 2015-08-05 12:01:17 -0400 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2015-08-05 12:01:17 -0400 |
commit | 7495467156b9d3da408035b06edb8cfc58b1fc31 (patch) | |
tree | a5f1c6152fb6f88030c3b9e506da0004948764f5 | |
parent | e891b7a44509fd9f1b2338d9b8da74173b384a6b (diff) | |
download | xor-crypt-7495467156b9d3da408035b06edb8cfc58b1fc31.zip xor-crypt-7495467156b9d3da408035b06edb8cfc58b1fc31.tar.gz xor-crypt-7495467156b9d3da408035b06edb8cfc58b1fc31.tar.bz2 |
1.0.01.0.0
-rw-r--r-- | HISTORY.md | 3 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | component.json | 4 | ||||
-rw-r--r-- | index.html | 17 | ||||
-rw-r--r-- | package.json | 4 | ||||
-rw-r--r-- | xor-crypt.js | 4 | ||||
-rw-r--r-- | xor-crypt.min.js | 2 |
8 files changed, 18 insertions, 23 deletions
@@ -1,5 +1,8 @@ # History +## v1.0.0 +- Cleaned documentation + ## v0.0.3 - Improved development tools @@ -8,7 +8,6 @@ Simple XOR string encryption library. - ## Install ### [NPM](http://npmjs.org/) @@ -32,7 +31,6 @@ Simple XOR string encryption library. - Use: `require('xor-crypt')` - Install: `bower install xor-crypt` - ## Usage See the [XOR-Crypt demonstration](http://robloach.github.io/xor-crypt/) for a @@ -50,7 +48,6 @@ var encrypted = xorCrypt('Hello World', 9); var decrypted = xorCrypt(encrypted, 9); ``` - ## Development Install dependencies through [npm](http://npmjs.org): @@ -73,12 +70,10 @@ Versioning](http://semver.org/): git push origin 2.0.0 npm publish - ## History [Discover the change history by heading on over to the `HISTORY.md` file.](https://github.com/RobLoach/xor-crypt/blob/master/HISTORY.md#files) - ## License Licensed under the incredibly [permissive](http://en.wikipedia.org/wiki/Permissive_free_software_licence) [MIT license](http://opensource.org/licenses/MIT) @@ -2,7 +2,7 @@ "name": "xor-crypt", "homepage": "http://github.com/robloach/xor-crypt", "description": "XOR Crypt", - "version": "0.0.3", + "version": "1.0.0", "main": "xor-crypt.js", "ignore": [ "*.json", diff --git a/component.json b/component.json index 0da20f6..546edd4 100644 --- a/component.json +++ b/component.json @@ -4,7 +4,7 @@ "homepage": "http://github.com/robloach/xor-crypt", "description": "Simple XOR string encryption library.", "license": "MIT", - "version": "0.0.3", + "version": "1.0.0", "keywords": [ "encryption" ], @@ -16,4 +16,4 @@ "xor-crypt.js" ], "demo": "https://github.com/RobLoach/xor-crypt" -}
\ No newline at end of file +} @@ -3,13 +3,17 @@ <head> <title>XOR-Crypt</title> <meta name="description" content="Simple XOR string encryption library."> + <style> + body { + text-align: center; + background-color: #ADCCF7; + } + </style> </head> <body> - <h1>XOR-Crypt</h1> <p> - <a href="http://github.com/robloach/xor-crypt">XOR-Crypt</a> is a simple - XOR string encryption library. + <a href="http://github.com/robloach/xor-crypt">XOR-Crypt</a> is a simple XOR string encryption library. </p> <textarea id="content" rows="6" cols="40">Enter text here, click "XOR-Crypt", and see it encrypt. Click again, and see it translate back.</textarea> @@ -27,12 +31,5 @@ element.value = window.xorCrypt(element.value); }); </script> - - <style> - body { - text-align: center; - background-color: #ADCCF7; - } - </style> </body> </html> diff --git a/package.json b/package.json index 274757d..4d809e5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "xor-crypt", "title": "XOR Crypt", "description": "Simple XOR string encryption library.", - "version": "0.0.3", + "version": "1.0.0", "keywords": [ "encryption" ], @@ -36,7 +36,7 @@ "uglify-js": "~2.4.16" }, "scripts": { - "pretest": "standard", + "posttest": "standard", "test": "node test", "build": "uglifyjs xor-crypt.js -o xor-crypt.min.js --comments --mangle", "package": "npm install && npm test && npm run build" diff --git a/xor-crypt.js b/xor-crypt.js index 5c69317..b645fa7 100644 --- a/xor-crypt.js +++ b/xor-crypt.js @@ -1,5 +1,5 @@ /*! - * XOR Crypt v0.0.3 - http://github.com/robloach/xor-crypt + * XOR Crypt v1.0.0 - http://github.com/RobLoach/xor-crypt * @license MIT * http://opensource.org/licenses/MIT */ @@ -8,7 +8,7 @@ * Universal Module Definition * * @see {@link http://github.com/umdjs/umd} -*/ + */ (function (root, factory) { 'use strict' /* global define */ diff --git a/xor-crypt.min.js b/xor-crypt.min.js index d5e02cd..b16d0cf 100644 --- a/xor-crypt.min.js +++ b/xor-crypt.min.js @@ -1,5 +1,5 @@ /*! - * XOR Crypt v0.0.3 - http://github.com/robloach/xor-crypt + * XOR Crypt v1.0.0 - http://github.com/RobLoach/xor-crypt * @license MIT * http://opensource.org/licenses/MIT */ |