From 2edecfa2f524231ca59ce292850819f5ba352fd8 Mon Sep 17 00:00:00 2001 From: Noamyoungerm Date: Tue, 16 Jun 2015 00:47:04 +0300 Subject: [PATCH 1/2] Fixed a bug where having the login type set to USERNAME_ONLY would hide the login button --- client/views/signIn/signIn.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/views/signIn/signIn.html b/client/views/signIn/signIn.html index ac4a51a5..8485ebf4 100644 --- a/client/views/signIn/signIn.html +++ b/client/views/signIn/signIn.html @@ -33,10 +33,10 @@

{{t9n "signIn"}}

- {{#unless isUsernameOnly}} -

{{t9n "forgotPassword"}}

+ {{#unless isUsernameOnly}} +

{{t9n "forgotPassword"}}

+ {{/unless}} - {{/unless}} {{/if}} {{#if showCreateAccountLink}} From e5dcba8311503bb6f6fd5d6c33741808cb5660c8 Mon Sep 17 00:00:00 2001 From: Noam Youngerman Date: Sun, 26 Jul 2015 19:36:09 +0300 Subject: [PATCH 2/2] Published with fix --- .versions | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 3 +++ package.js | 4 ++-- 3 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 .versions diff --git a/.versions b/.versions new file mode 100644 index 00000000..6f0ef156 --- /dev/null +++ b/.versions @@ -0,0 +1,66 @@ +accounts-base@1.2.0 +accounts-password@1.1.1 +base64@1.0.3 +binary-heap@1.0.3 +blaze@2.1.2 +blaze-tools@1.0.3 +boilerplate-generator@1.0.3 +callback-hook@1.0.3 +check@1.0.5 +coffeescript@1.0.6 +ddp@1.1.0 +deps@1.0.7 +ejson@1.0.6 +email@1.0.6 +geojson-utils@1.0.3 +handlebars@1.0.3 +html-tools@1.0.4 +htmljs@1.0.4 +id-map@1.0.3 +iron:controller@1.0.8 +iron:core@1.0.8 +iron:dynamic-template@1.0.8 +iron:layout@1.0.8 +iron:location@1.0.9 +iron:middleware-stack@1.0.9 +iron:router@1.0.9 +iron:url@1.0.9 +joshowens:simple-form@0.2.2 +jquery@1.11.3_2 +json@1.0.3 +less@1.0.14 +local-test:noamyoungerm:accounts-entry@1.0.3 +localstorage@1.0.3 +logging@1.0.7 +meteor@1.1.6 +minifiers@1.1.5 +minimongo@1.0.8 +mongo@1.1.0 +mongo-livedata@1.0.8 +mrt:underscore-string-latest@2.3.3 +noamyoungerm:accounts-entry@1.0.3 +npm-bcrypt@0.7.8_2 +observe-sequence@1.0.6 +ordered-dict@1.0.3 +random@1.0.3 +reactive-dict@1.1.0 +reactive-var@1.0.5 +retry@1.0.3 +routepolicy@1.0.5 +sacha:spin@2.0.4 +schnie:uploader@2.0.3 +service-configuration@1.0.4 +session@1.1.0 +sha@1.0.3 +softwarerero:accounts-t9n@1.0.9 +spacebars@1.0.6 +spacebars-compiler@1.0.6 +srp@1.0.3 +templating@1.1.1 +test-helpers@1.0.4 +tinytest@1.0.5 +tracker@1.0.7 +ui@1.0.6 +underscore@1.0.3 +webapp@1.2.0 +webapp-hashing@1.0.3 diff --git a/README.md b/README.md index 436dcec4..0d412f07 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ [![Stories in Ready](https://badge.waffle.io/Differential/accounts-entry.png?label=ready&title=Ready)](https://waffle.io/Differential/accounts-entry) # Meteor accounts-entry [![Build Status](https://travis-ci.org/Differential/accounts-entry.png)](https://travis-ci.org/Differential/accounts-entry) +**This is a temporary fork of accounts-entry pending the moment that differential will accept a pull-request enabling the login button to be functional again.** + + accounts-entry is a meteor package that relies on Iron Router and provides an alternative interface to accounts-ui, with whole pages for sign up and sign in. ## Getting started diff --git a/package.js b/package.js index 8e01e399..09cf54ad 100644 --- a/package.js +++ b/package.js @@ -1,7 +1,7 @@ Package.describe({ summary: "Make signin and signout their own pages with routes.", version: '1.0.3', - name: "joshowens:accounts-entry", + name: "noamyoungerm:accounts-entry", githubUrl: 'https://github.com/Differential/accounts-entry', }); @@ -94,7 +94,7 @@ Package.onTest(function (api) { 'coffeescript' ]); api.use(['iron:router', 'softwarerero:accounts-t9n', 'joshowens:simple-form'], ['client', 'server']); - api.use('joshowens:accounts-entry'); + api.use('noamyoungerm:accounts-entry'); api.addFiles(['tests/route.coffee', 'tests/client.html', 'tests/client.coffee'], 'client'); });