From 98a91b75f92fff5462a464738345872b2463b374 Mon Sep 17 00:00:00 2001 From: Mike Brennan Date: Fri, 7 Nov 2014 13:22:36 -0500 Subject: [PATCH] Release v0.1.1; update default URLs to use production servers (post-Phoebe) --- README.md | 3 --- package.json | 2 +- src/constants.coffee | 6 +++--- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dc2288a..6a0e71c 100644 --- a/README.md +++ b/README.md @@ -74,9 +74,6 @@ providing them in the options: })) ... -- Note: This release uses the SISI (Singularity) test server URLs by default -because the Tranquility server URLs are not yet working. - #### Authenticate Requests Use `passport.authenticate()`, specifying the `'eveonline'` strategy, to diff --git a/package.json b/package.json index 9125202..6587863 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "test": "mocha --compilers coffee:coffee-script/register test", "watch": "gulp watch-coffeescript" }, - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "passport-oauth2": "^1.1.2" } diff --git a/src/constants.coffee b/src/constants.coffee index e863209..953f509 100644 --- a/src/constants.coffee +++ b/src/constants.coffee @@ -1,5 +1,5 @@ module.exports = - defaultAuthorizationURL: 'https://sisilogin.testeveonline.com/oauth/authorize' - defaultTokenURL: 'https://sisilogin.testeveonline.com/oauth/token' - defaultVerifyURL: 'https://sisilogin.testeveonline.com/oauth/verify' + defaultAuthorizationURL: 'https://login.eveonline.com/oauth/authorize' + defaultTokenURL: 'https://login.eveonline.com/oauth/token' + defaultVerifyURL: 'https://login.eveonline.com/oauth/verify' fetchCharacterInformationError: 'error fetching character information'