This commit is contained in:
Tobe O 2017-12-27 11:00:57 -05:00
parent 00f20b74b9
commit 75dda051b4
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
# 1.2.0+1
* Removed a type annotation in `authenticateViaPopup` to prevent breaking with DDC.
# 1.2.0
* `ServiceList` now uses `Equality` from `package:collection` to compare items.
* `Service`s will now add service errors to corresponding streams if there is a listener.

View file

@ -54,7 +54,7 @@ class Rest extends BaseAngelClient {
var wnd = window.open(url, 'angel_client_auth_popup');
Timer t;
StreamSubscription<CustomEvent> sub;
StreamSubscription sub;
t = new Timer.periodic(new Duration(milliseconds: 500), (timer) {
if (!ctrl.isClosed) {
if (wnd.closed) {

View file

@ -1,5 +1,5 @@
name: angel_client
version: 1.2.0
version: 1.2.0+1
description: Client library for the Angel framework.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_client