From 65241d1c07871aaaae9c4e3e9bbc0c99dd9faf7e Mon Sep 17 00:00:00 2001 From: Micah Allen Date: Mon, 5 Nov 2018 10:20:59 -0500 Subject: [PATCH] Add Changelog to README --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1520d3f..f8b5885 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ * [CEF or Client-side](#cef-or-client-side) * [callBrowsers(name, args)](#callbrowsersname-args) * [callClient(name, args)](#callclientname-args) +* [Changelog](#changelog) ## Motivation @@ -430,4 +431,20 @@ Client-side OR Browser: 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. \ No newline at end of file +###### 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