summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2015-08-05 12:01:17 -0400
committerRob Loach <robloach@gmail.com>2015-08-05 12:01:17 -0400
commit7495467156b9d3da408035b06edb8cfc58b1fc31 (patch)
treea5f1c6152fb6f88030c3b9e506da0004948764f5
parente891b7a44509fd9f1b2338d9b8da74173b384a6b (diff)
downloadxor-crypt-7495467156b9d3da408035b06edb8cfc58b1fc31.zip
xor-crypt-7495467156b9d3da408035b06edb8cfc58b1fc31.tar.gz
xor-crypt-7495467156b9d3da408035b06edb8cfc58b1fc31.tar.bz2
1.0.01.0.0
-rw-r--r--HISTORY.md3
-rw-r--r--README.md5
-rw-r--r--bower.json2
-rw-r--r--component.json4
-rw-r--r--index.html17
-rw-r--r--package.json4
-rw-r--r--xor-crypt.js4
-rw-r--r--xor-crypt.min.js2
8 files changed, 18 insertions, 23 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 7318a01..3d52c96 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,5 +1,8 @@
# History
+## v1.0.0
+- Cleaned documentation
+
## v0.0.3
- Improved development tools
diff --git a/README.md b/README.md
index 7bd2a15..1a46725 100644
--- a/README.md
+++ b/README.md
@@ -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)
diff --git a/bower.json b/bower.json
index 5495553..d5fa228 100644
--- a/bower.json
+++ b/bower.json
@@ -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
+}
diff --git a/index.html b/index.html
index ea31f63..9295375 100644
--- a/index.html
+++ b/index.html
@@ -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
*/