0
mirror of https://github.com/valentineus/iii-for-vk.git synced 2025-04-29 01:51:25 +03:00

Release of version 0.0.4.

This commit is contained in:
Valentin Popov 2017-06-07 16:47:42 +00:00
parent 21b0680916
commit 0d420f1319
4 changed files with 11 additions and 9 deletions

View File

@ -1,14 +1,15 @@
# Description of releases # Description of releases
## 0.0.3 (05-06-2017) ## 0.0.4 (07-06-2017)
Fix:
- Fixed the sample file and the instruction for its launch.
## 0.0.3 (05-06-2017)
Features: Features:
- Added useful icons. - Added useful icons.
## 0.0.2 (05-06-2017) ## 0.0.2 (05-06-2017)
Fix: Fix:
- Fixed exclusion files. - Fixed exclusion files.
## 0.0.1 (05-06-2017) ## 0.0.1 (05-06-2017)
Release. Release.

View File

@ -21,10 +21,11 @@ A simple example that implements an answering machine is at the root of the repo
This is the file `example.js`. This is the file `example.js`.
In the NPM package it is not included to reduce the volume: In the NPM package it is not included to reduce the volume:
```bash ```bash
$ git clone https://github.com/valentineus/iii-for-vk.git $ npm init
$ cd ./iii-for-vk $ npm install --save iii-for-vk
# Edit the file example.js $ curl -L -o index.js https://raw.githubusercontent.com/valentineus/iii-for-vk/master/example.js
$ node ./example.js // Edit the file index.js
$ node ./index.js
``` ```
## Expanding functionality ## Expanding functionality

View File

@ -1,4 +1,4 @@
var ChatBot = require('./lib/core.js'); var ChatBot = require('iii-for-vk');
var bot = new ChatBot({ var bot = new ChatBot({
appID: "id", // The application ID appID: "id", // The application ID

View File

@ -1,6 +1,6 @@
{ {
"name": "iii-for-vk", "name": "iii-for-vk",
"version": "0.0.3", "version": "0.0.4",
"description": "Simple automatic reply to incoming messages.", "description": "Simple automatic reply to incoming messages.",
"homepage": "https://github.com/valentineus/iii-for-vk", "homepage": "https://github.com/valentineus/iii-for-vk",
"main": "lib/core.js", "main": "lib/core.js",