From bbe37053f52b9c9c004575c19260fdfb83ba62c4 Mon Sep 17 00:00:00 2001 From: Luca Mussi Date: Wed, 29 Oct 2014 19:16:54 +0100 Subject: [PATCH] various changes in names and link --- README.md | 12 +++++------- package.js | 16 ++++++++-------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 27c8d3f..6f62fb1 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -[![Build Status](https://travis-ci.org/splendido/accounts-templates-bootstrap.svg?branch=master)](https://travis-ci.org/splendido/accounts-templates-bootstrap) +[![Build Status](https://travis-ci.org/useraccounts/bootstrap.svg?branch=master)](https://travis-ci.org/useraccounts/bootstrap) accounts-templates-bootstrap ============================ Meteor sign up and sign in templates (and much more!) styled for twitter Bootstrap -This package depends on [accounts-templates-core](https://atmospherejs.com/package/accounts-templates-core) +This package depends on [accounts-templates-core](https://atmospherejs.com/useraccounts/core) -Learn more [here](http://accounts-templates.meteor.com) or have a look at a [live demo application](http://accounts-templates-bootstrap.meteor.com) or at the full [documentation](https://github.com/splendido/accounts-templates-core). +Learn more [here](http://accounts-templates.meteor.com) or have a look at a [live demo application](http://accounts-templates-bootstrap.meteor.com) or at the full [documentation](https://github.com/useraccounts/core). ## Warning! -Adding this package with `mrt add accounts-templates-bootstrap` does not add any other packages providing Bootstrap. This is to let you choose the flavour you prefer, being it compiled, less, sass, or from CDN! +Adding this package with `mrt add useraccounts:bootstrap` does not add any other packages providing Bootstrap. This is to let you choose the flavour you prefer, being it compiled, less, sass, or from CDN! At the moment it is up to date with Bootstrap 3.2.0. @@ -20,6 +20,4 @@ At the moment it is up to date with Bootstrap 3.2.0. Anyone is welcome to contribute. Fork, make your changes, and then submit a pull request. -Thanks to all those who have contributed code changes to [this package](https://github.com/splendido/accounts-templates-bootstrap/graphs/contributors) as well as to the [core package](https://github.com/splendido/accounts-templates-core/graphs/contributors) and all who have helped by submitting bug reports and feature ideas. - -[![Support via Gittip](https://rawgithub.com/twolfson/gittip-badge/0.2.0/dist/gittip.png)](https://www.gittip.com/splendido/) \ No newline at end of file +Thanks to all those who have contributed code changes to [this package](https://github.com/useraccounts/bootstrap/graphs/contributors) as well as to the [core package](https://github.com/useraccounts/core/graphs/contributors) and all who have helped by submitting bug reports and feature ideas. \ No newline at end of file diff --git a/package.js b/package.js index 63e3cad..4c003f4 100644 --- a/package.js +++ b/package.js @@ -1,12 +1,12 @@ Package.describe({ summary: "Accounts Templates styled for Twitter Bootstrap.", version: "0.11.0", - name: "splendido:accounts-templates-bootstrap", - git: "https://github.com/splendido/accounts-templates-bootstrap.git", + name: "useraccounts:bootstrap", + git: "https://github.com/meteor-useraccounts/bootstrap.git", }); Package.on_use(function(api, where) { - api.versionsFrom("METEOR@0.9.2.2"); + api.versionsFrom("METEOR@1.0"); api.use([ "less", @@ -14,11 +14,11 @@ Package.on_use(function(api, where) { ], "client"); api.use([ - "splendido:accounts-templates-core", + "useraccounts:core", ], ["client", "server"]); api.imply([ - "splendido:accounts-templates-core@0.11.0", + "useraccounts:core@0.11.0", ], ["client", "server"]); api.add_files([ @@ -57,8 +57,8 @@ Package.on_use(function(api, where) { Package.on_test(function(api) { api.use([ - "splendido:accounts-templates-bootstrap", - "splendido:accounts-templates-core@0.11.0", + "useraccounts:bootstrap", + "useraccounts:core@0.11.0", ]); api.use([ @@ -70,4 +70,4 @@ Package.on_test(function(api) { api.add_files([ "tests/tests.js" ], ["client", "server"]); -}); \ No newline at end of file +});