Skip to content

Commit 5dd915d

Browse files
committed
minor bug fix
2 parents a033343 + efaf823 commit 5dd915d

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.2.1 - 20150708
2+
* Minor bug fix
3+
14
## 0.2.0 - 20150707
25
* Add this changelog
36
* Configure keyboard layout for client side of protocol

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ npm install
2626
To create a simple rdp client :
2727

2828
```javascript
29-
var rdp = require('rdp');
29+
var rdp = require('node-rdpjs');
3030

3131
var client = rdp.createClient({
3232
domain : 'my_domain',
@@ -65,7 +65,7 @@ Client parameters :
6565
- WARN
6666
- ERROR
6767

68-
Use decompress parameter may decrease performance.
68+
Use of decompress parameter impact performance.
6969

7070
### Client Events
7171

bin/client.js

+4
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@
44
var rdp = require("../lib");
55

66

7+
<<<<<<< HEAD
78
rdp.createClient({ domain : 'siradel', userName : '', decompress : false, logLevel : 'INFO'}).connect('172.16.1.62', 3389);
9+
=======
10+
rdp.createClient({ domain : '', userName : '', decompress : false, logLevel : 'INFO'}).connect('', 3389);
11+
>>>>>>> hotfix

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "node-rdpjs",
33
"author": "Sylvain Peyrefitte",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"engines": [
66
"node = 0.10.x"
77
],
88
"description": "Remote Desktop Protocol in Node.js",
9-
"license": "GPL",
9+
"license": "AGPL v3.0",
1010
"repository": {
1111
"type": "git",
1212
"url": "https://github.com/citronneur/node-rdpjs"

0 commit comments

Comments
 (0)