Add Changelog to README

This commit is contained in:
Micah Allen 2018-11-05 10:20:59 -05:00 committed by GitHub
parent 6ec5e95926
commit 65241d1c07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@
* [CEF or Client-side](#cef-or-client-side) * [CEF or Client-side](#cef-or-client-side)
* [callBrowsers(name, args)](#callbrowsersname-args) * [callBrowsers(name, args)](#callbrowsersname-args)
* [callClient(name, args)](#callclientname-args) * [callClient(name, args)](#callclientname-args)
* [Changelog](#changelog)
## Motivation ## Motivation
@ -430,4 +431,20 @@ Client-side OR Browser:
rpc.callClient('toggleChat', false); rpc.callClient('toggleChat', false);
``` ```
###### Returns [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) resolving or failing due to the procedure's result. If the procedure called does not exist, `PROCEDURE_NOT_FOUND` will be thrown. ###### Returns [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) resolving or failing due to the procedure's result. If the procedure called does not exist, `PROCEDURE_NOT_FOUND` will be thrown.
## Changelog
#### 0.0.3
* FIX: Bug that prevented multiple resources from using RPC at the same time
* FIX: False alarm for multiple CEF instances receiving the same result
* ADD: Extra player verification for outgoing server calls
#### 0.0.2
* FIX: UMD exposing for correct Node.js importing
#### 0.0.1
* Initial commit