From aa23f346d93fdf80003f953879b253708241f234 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 2 Aug 2015 01:56:26 -0700 Subject: [PATCH] readme. package. --- README.md | 6 ++---- package.json | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b938346..6282e38 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,8 @@ This will render a box with line borders containing the text `'Hello world!'`, perfectly centered horizontally and vertically. __NOTE__: It is recommend you use either `smartCSR` or `fastCSR` as a -`blessed.screen` option. `autoPadding` is also recommended; it will -automatically offset box content within borders instead of on top of them when -coords are `0`. Non-`autoPadding` _may_ be deprecated in the future. See the -API documentation for further explanation of these options. +`blessed.screen` option. This will enable CSR when scrolling text in elements +or when manipulating lines. ``` js var blessed = require('blessed'); diff --git a/package.json b/package.json index be324e2..1ec547e 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "description": "A high-level terminal interface library for node.js.", "author": "Christopher Jeffrey", "version": "0.1.20", + "license": "MIT", "main": "./lib/blessed.js", "bin": "./bin/tput.js", "preferGlobal": false,