@@ -36,8 +36,8 @@ You just need to include the following script and CSS file in the `<head>` tag o
36
36
below the initialization snippet from the Firebase Console:
37
37
38
38
``` html
39
- <script src =" https://www.gstatic.com/firebasejs/ui/live/0.5 /firebase-ui-auth.js" ></script >
40
- <link type =" text/css" rel =" stylesheet" href =" https://www.gstatic.com/firebasejs/ui/live/0.5 /firebase-ui-auth.css" />
39
+ <script src =" https://www.gstatic.com/firebasejs/ui/live/1.0 /firebase-ui-auth.js" ></script >
40
+ <link type =" text/css" rel =" stylesheet" href =" https://www.gstatic.com/firebasejs/ui/live/1.0 /firebase-ui-auth.css" />
41
41
```
42
42
43
43
You can then serve your app locally using ` firebase serve ` .
@@ -49,7 +49,7 @@ FirebaseUI includes the following flows:
49
49
1 . Interaction with Identity Providers such as Google and Facebook
50
50
2 . Sign-up and sign-in with email accounts
51
51
3 . Password reset
52
- 4 . Prevention of account duplication (activated when * "One account per email adress "* setting is
52
+ 4 . Prevention of account duplication (activated when * "One account per email address "* setting is
53
53
enabled in the [ Firebase console] ( https://console.firebase.google.com ) . This setting is enabled by
54
54
default.)
55
55
5 . [ Account Chooser] ( https://www.accountchooser.com/learnmore.html?lang=en ) for remembering emails
@@ -75,7 +75,7 @@ instance should be passed to the constructor of `firebaseui.auth.AuthUI`. You ca
75
75
object.
76
76
77
77
The following example shows how to set up a sign-in screen with all supported providers. Please
78
- refer to the [ demo application in the examples folder] ( examples/ demo/) for a more in-depth
78
+ refer to the [ demo application in the examples folder] ( demo/ ) for a more in-depth
79
79
example, showcasing a Single Page Application mode.
80
80
81
81
> Firebase and FirebaseUI do not work when executed directly from a file (i.e. opening the file in
@@ -92,8 +92,8 @@ example, showcasing a Single Page Application mode.
92
92
* TODO(DEVELOPER): Paste the initialization snippet from:
93
93
* Firebase Console > Overview > Add Firebase to your web app. *
94
94
***************************************************************************************** -->
95
- <script src =" https://www.gstatic.com/firebasejs/ui/live/0.5 /firebase-ui-auth.js" ></script >
96
- <link type =" text/css" rel =" stylesheet" href =" https://www.gstatic.com/firebasejs/ui/live/0.5 /firebase-ui-auth.css" />
95
+ <script src =" https://www.gstatic.com/firebasejs/ui/live/1.0 /firebase-ui-auth.js" ></script >
96
+ <link type =" text/css" rel =" stylesheet" href =" https://www.gstatic.com/firebasejs/ui/live/1.0 /firebase-ui-auth.css" />
97
97
<script type =" text/javascript" >
98
98
// FirebaseUI config.
99
99
var uiConfig = {
@@ -303,8 +303,8 @@ If the callback returns `false` or nothing, the page is not automatically redire
303
303
* TODO(DEVELOPER): Paste the initialization snippet from:
304
304
* Firebase Console > Overview > Add Firebase to your web app. *
305
305
***************************************************************************************** -->
306
- <script src =" https://www.gstatic.com/firebasejs/ui/live/0.5 /firebase-ui-auth.js" ></script >
307
- <link type =" text/css" rel =" stylesheet" href =" https://www.gstatic.com/firebasejs/ui/live/0.5 /firebase-ui-auth.css" />
306
+ <script src =" https://www.gstatic.com/firebasejs/ui/live/1.0 /firebase-ui-auth.js" ></script >
307
+ <link type =" text/css" rel =" stylesheet" href =" https://www.gstatic.com/firebasejs/ui/live/1.0 /firebase-ui-auth.css" />
308
308
<script type =" text/javascript" >
309
309
// FirebaseUI config.
310
310
var uiConfig = {
@@ -358,7 +358,7 @@ widget is not affected by it so you can display everything you want around the w
358
358
359
359
### FirebaseUI widget modes
360
360
361
- Upon initilization , FirebaseUI will look for the ` mode ` parameter in the URL. Depending on the value
361
+ Upon initialization , FirebaseUI will look for the ` mode ` parameter in the URL. Depending on the value
362
362
of this parameter, it will trigger a specific mode. When no ` mode ` parameter is found, it will
363
363
default to the sign-in mode.
364
364
@@ -439,7 +439,8 @@ npm run demo
439
439
```
440
440
441
441
This will start a local server serving a FirebaseUI demo app with all local
442
- changes.
442
+ changes. More details can be found in the [ demo app folder] ( demo/ ) , covering
443
+ how to configure the app to be deployed on a Firebase Hosting instance.
443
444
444
445
### Running unit tests.
445
446
@@ -478,8 +479,18 @@ avoid re-rendering the widget in the middle of an action, but if you do, to avoi
478
479
should use the ` reset() ` method before re-rendering the widget.
479
480
480
481
## Release Notes
482
+
481
483
### 1.0.0
482
484
485
+ See the milestone [ 1.0.0] ( https://github.com/firebase/firebaseui-web/milestone/2 ) for the issues
486
+ covered in this release. Below is a summary of the most important ones:
487
+
488
+ - ** FirebaseUI is now open source!** To contribute, please first create an issue describing either
489
+ the bug observed or the feature requested. This way we can discuss the relevance of the feature,
490
+ before you start working on it. It is also usually better to express the bug before working on a
491
+ fix.
492
+ - Added an option to disable Account Chooser. See: [ Credential Helper] ( credential-helper ) .
493
+
483
494
### 0.5.0
484
495
485
496
See the milestone [ 0.5.0] ( https://github.com/firebase/firebaseui-web/milestone/1 ) for the issues
@@ -490,7 +501,7 @@ dispose of the widget. When the user leaves a page where the FirebaseUI widget w
490
501
instance in the ` componentWillUnmount ` method of a React component), call the ` reset ` method of the
491
502
` firebaseui.auth.AuthUI ` instance you created. Also, call the ` reset ` method before rendering
492
503
again the widget if one has already been rendered on the page. Please refer to the
493
- [ demo app] ( examples/ demo/) for guidance on how to use FirebaseUI in a Single Page
504
+ [ demo app] ( demo/ ) for guidance on how to use FirebaseUI in a Single Page
494
505
Application context.
495
506
- ** Custom scopes** can now be added for each provider. See [ Custom Scopes] ( custom-scopes ) .
496
507
- Several issues, different but related to the ` displayName ` not being present after sign up with
0 commit comments