Releases: sahat/satellizer
Releases · sahat/satellizer
0.3.3
- Use
$rootScope[config.user]
instead of$rootScope.currentUser
when during token parsing. - Fixed flicker effect during animation transitions.
- If user closes the window or declines authorization, it now returns a rejected promise with an error message.
- Added
tokenName
config option so you could change the name of a JWT token in Local Storage. - The
postMessage
domain set towindow.location.origin
instead of the*
wildcard. - Return response instead of response.data to deferred.resolve for consistency.
- The method
isAuthenticated()
now correctly returns true or false. - Added scope to
requiredUrlParams
array of the Facebook provider. - CSS clean up via Recess.
- Python: Fixed PyJWT package name in
requirements.txt
. - Tools: Use
gulp-plumber
to prevent gulp from crashing duringngAnnotate()
task.
0.3.2
- 403 response error no longer redirects you to
/login
. - Both
login()
andsignup()
methods now return a promise. - Display alert messages after successful logout and login.
- Use non-minified version of
satellizer.js
for client demo. - Removed font-awesome fonts; replaced by Ionicons.
- Serve CSS libraries from CDN.
- Moved social sign-in buttons out of the
<form>
to prevent form submission. - Use
.npmignore
to avoid downloading unnecessary files duringnpm install satellizer
. - Node: Fixed deprecated warnings for
res.send
. - Code cleanup.