Nathan Muir
b8852dd7cc
Meteor.loginWithX When using the redirect login style, you may now specify the URL that the user is returned to. Currently defaults to the current URL (window.location).
2015-07-28 13:07:46 +10:00
David Glasser
43b4b30205
Release PLUGINS-PREVIEW@1
...
This included removing some internal version constraints. It would be
nice if package A could say "use B@2.0.0" (when both have changed), but
when they're both in the release, we need to make a release that has a
B@2.0.0-rc in it, which doesn't match that constraint. Fortunately,
constraints aren't necessary within a release anyway.
2015-07-22 23:19:11 -07:00
ninja
13aa883145
updating the twitter configure message
2015-04-04 08:59:18 -05:00
David Glasser
4daaa76b12
METEOR@1.0.4
2015-03-17 13:06:07 -07:00
David Glasser
af0469da35
Bump other packages to -rc.0
2015-03-05 22:54:07 -08:00
Slava Kim
27f249bfed
A lot of crazy package bumps
2015-01-21 14:03:55 -08:00
David Glasser
6b204ca73a
Bump package versions for 1.0.2
2014-12-19 10:31:59 -08:00
David Glasser
73b809c122
Bump versions for 1.0.2.
2014-12-11 22:44:41 -08:00
David Glasser
6ea8443f30
Update calls to addFiles, onUse, and onTest
2014-12-09 20:18:31 -08:00
David Glasser
de5f68cf70
bump all versions (due to source-map upgrade)
2014-11-25 09:06:26 -08:00
Emily Stark
cb54ae18fb
Merge branch 'master' into devel
...
Conflicts:
History.md
examples/localmarket/.meteor/release
examples/localmarket/.meteor/versions
packages/stylus/README.md
tools/compiler.js
tools/package-client.js
tools/tests/old/app-with-private/.meteor/versions
tools/tests/old/app-with-public/.meteor/versions
tools/tests/old/empty-app/.meteor/versions
2014-10-28 10:42:30 -07:00
Sashko Stubailo
ab22135543
Merge remote-tracking branch 'origin/readmes' into devel
...
Conflicts:
docs/client/full-api/packages/fastclick.html
docs/client/full-api/packages/stylus.html
docs/client/packages/stylus.html
packages/blaze/README.md
packages/spacebars-compiler/README.md
packages/stylus/README.md
2014-10-28 09:50:07 -07:00
Avital Oliver
2ca942f9cb
Correct links to www.meteor.com project pages
2014-10-28 02:54:45 -07:00
Emily Stark
b4c10d8f61
bump package versions
2014-10-28 02:49:54 -07:00
Emily Stark
842bfac8df
bump package versions for rc.11
2014-10-28 01:03:08 -07:00
Avital Oliver
da2e72c35a
Minor correction to Twitter Oauth configuration flow
2014-10-28 00:56:32 -07:00
Avital Oliver
b2129ba561
Minor correction to Twitter Oauth configuration flow
2014-10-27 21:35:49 -07:00
Emily Stark
6c8c67afe8
bump package version numbers for rc.10
2014-10-27 20:03:42 -07:00
Emily Stark
3d2c0516ab
Make Twitter login work in Android emulator
2014-10-27 17:12:41 -07:00
Emily Stark
89971d6205
Make Twitter login work in Android emulator
2014-10-27 17:11:50 -07:00
Sashko Stubailo
dda0c44b52
Add a bunch of READMEs
2014-10-23 15:06:33 -07:00
Sashko Stubailo
36da5aecb4
Make all version numbers not have rc
2014-10-13 14:09:37 -07:00
Sashko Stubailo
698fbedb10
Bump all of the version numbers to rc.0
2014-10-07 17:10:48 -07:00
Sashko Stubailo
1e53f6b598
Bump all version numbers again after cherry-picking unipackage fix
2014-10-01 17:06:57 -07:00
Sashko Stubailo
0129c3f5ac
Bump all of the version numbers again, to republish with the unipackage.json fix
2014-10-01 15:43:05 -07:00
Sashko Stubailo
eecc272e4a
Bump every single package version number due to a change in compilation
2014-09-29 23:44:50 -07:00
Emily Stark
dd9a51624d
Fix login service configuration wizards.
...
These were broken by the Template.foo.bar -> Template.foo.helpers({ bar:
... }) transformation. `fields` is a property on the template object,
not a helper.
2014-09-26 18:08:09 -07:00
David Greenspan
48264ccafd
Use preferred helper style in docs,apps,packages
2014-09-25 14:56:15 -07:00
Emily Stark
833c6f5b4f
Bump package versions for 0.9.2
2014-09-15 11:36:57 -07:00
Emily Stark
fb3fb5de03
Bump package versions for 0.9.2-rc2
2014-09-09 07:52:41 -07:00
Emily Stark
c5950f7361
Use Meteor.absoluteUrl for Twitter login URL
...
Fixes Twitter login on Cordova
2014-09-06 07:52:39 -07:00
Slava Kim
fc56f795d6
Bump versions of packages for the 0.9.2-rc0
2014-09-02 14:57:33 -07:00
Emily Stark
345d49f15a
Merge branch 'cordova-hcp-oauth' into cordova-hcp
...
Conflicts:
packages/oauth/package.js
packages/standard-app-packages/package.js
2014-08-29 11:50:00 -07:00
Andrew Wilcox
2fd00e58ba
Implements the "redirect" login flow, for cases such as using a mobile
...
UIWebView which aren't able to use the preferred "popup" login flow.
See the specs for details:
https://meteor.hackpad.com/OAuth-redirect-flow-spec-PeziTcaNPDP
https://meteor.hackpad.com/OAuth-redirect-flow-part-II-vswwUKP4vXe
I extracted code to construct a URL from the `http` package into a new
`url` utility package. The new package has no public API, it simply
has the original URL construction functions that were in `http` and
makes them available to oauth.
Fixes the Meetup account login, as Meetup now requires using
"https://api.meetup.com/2/members " instead of
"https://secure.meetup.com/2/members ".
The `?close` parameter for the redirect URI is now not needed or used.
For backwards compatibility the `?close` parameter is included if the
login service configuration doesn't include the `loginStyle` field
(indicating it was created using old code).
2014-08-28 17:25:13 -07:00
Avital Oliver
864fffc9e9
Bump package versions in preparation for 0.9.1-rc0
2014-08-28 11:00:35 -07:00
ekatek
b9a714f028
ripping out internal, name and test from package.js files
2014-07-07 20:50:50 -07:00
ekatek
fb709c9563
remove versions files from core packages
2014-06-16 22:11:31 -07:00
David Glasser
e4000c6808
Merge branch 'devel' into packaging
...
Conflicts (around utils.quotemeta):
tools/packages.js
tools/utils.js
2014-05-12 17:06:11 -07:00
ekatek
beb0e59b9d
new version files from teh new solver? Also, package.js correct with tests
2014-05-09 17:36:25 -07:00
Emily Stark
0c479a238b
Add credential secret argument to retrieveCredential functions.
...
Fixes #2118 .
2014-05-05 20:51:15 -07:00
ekatek
031890d2c5
don't store buildtime deps in the catalog
2014-05-04 16:56:58 -07:00
ekatek
23ad149a78
better versions files
2014-04-25 15:06:45 -07:00
ekatek
10d2047d12
clean up
2014-04-25 15:01:20 -07:00
ekatek
c84c8d6097
alphabetize package version lock files
2014-04-24 18:18:21 -07:00
David Glasser
3b21c2d9a7
Merge branch 'devel' into publish-packages
...
Conflicts:
packages/domutils/package.js
packages/handlebars/package.js
packages/htmljs/package.js
packages/liverange/package.js
packages/madewith/package.js
packages/meteor-developer/meteor_developer_server.js
packages/preserve-inputs/package.js
packages/spark/package.js
packages/universal-events/package.js
tools/commands.js
tools/files.js
tools/help.txt
tools/packages.js
2014-04-24 16:27:21 -07:00
Emily Stark
55363a9b86
Merge remote-tracking branch 'origin/devel' into awwx-oauth-encryption
...
Conflicts:
History.md
packages/facebook/facebook_client.js
packages/github/github_client.js
packages/google/google_client.js
packages/meetup/meetup_client.js
packages/meteor-developer/meteor_developer_client.js
packages/twitter/twitter_client.js
packages/weibo/weibo_client.js
2014-04-22 11:31:31 -07:00
David Glasser
3229f24ad0
Update Twitter configuration instructions again
...
Also, advise turning on "Sign in with Twitter", which means that users
won't get an authorization question every time they log in.
Fixes #1164 .
2014-04-21 19:28:21 -07:00
Emily Stark
b6501d4ebe
Merge branch 'master' into devel
...
Conflicts:
History.md
packages/oauth1/oauth1_server.js
2014-04-21 15:29:31 -07:00
Emily Stark
3ad1672282
Fix open redirector in oauth1 login flow.
...
Clients are no longer allowed to specify callback URLs.
2014-04-21 14:26:40 -07:00
David Glasser
8c38550315
Improve error message for pre-config login
...
Addresses #2048 .
An earlier attempt (to wait for the config to load) ran into popup
blockers.
It would be nice to load the config statically with something like
Arunoda's fast-render. That said, even that's not good enough to allow
OAuth logins that bypass the popup blocker that aren't a result of a
user action, and for user actions it's easy enough to gate your login
button on `Accounts.loginServicesConfigured()`.
Longer term solutions include non-popup methods of OAuth login (see
Issue #438 ).
2014-04-21 13:39:36 -07:00