diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a726012..5404c7758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed -Nothing so far +Nothing yet + +## [1.3.17] - 2021-01-22 +### Changed +- Public signup of new users can be enabled or disabled with the SIGNUPS_ENABLED environment variable. +They are enabled by default. +- Removed the message about FeedBunch being an open beta. ## [1.3.16] - 2021-01-22 ### Changed diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb index a0b579391..87ba00fbf 100644 --- a/app/views/devise/registrations/new.html.erb +++ b/app/views/devise/registrations/new.html.erb @@ -7,20 +7,6 @@ <%# Show registration form only if signups are enabled %> <% if Feedbunch::Application.config.signups_enabled %> - <%# TODO delete this div when open beta stage ends %> -
-
-
- -
- -
-

<%= t 'devise.views.open_beta_1' %>

-
-
-

<%= t 'devise.views.open_beta_2' %>

-
-
diff --git a/config/locales/devise.views.en.yml b/config/locales/devise.views.en.yml index 39e74db2b..d61bfdbcf 100644 --- a/config/locales/devise.views.en.yml +++ b/config/locales/devise.views.en.yml @@ -4,8 +4,6 @@ en: sign_in: "Log in" sign_in_link: "Log in" sign_up_link: "Create new account" - open_beta_1: "FeedBunch is in open beta." - open_beta_2: "Please send us your feedback through the email, twitter or github links below." signups_disabled_1: "Public registration of new users is disabled." signups_disabled_2: "Please contact an administrator to register a new account." sign_up: "Sign up" diff --git a/config/locales/devise.views.es.yml b/config/locales/devise.views.es.yml index eab63ddc1..6a724f751 100644 --- a/config/locales/devise.views.es.yml +++ b/config/locales/devise.views.es.yml @@ -4,8 +4,6 @@ es: sign_in: "Entrar" sign_in_link: "Entrar" sign_up_link: "Crear nueva cuenta" - open_beta_1: "FeedBunch está en fase de beta abierta." - open_beta_2: "Por favor envíanos tus comentarios a traves de los enlaces de email, twitter o github de más abajo." signups_disabled_1: "La creación de nuevas cuentas no está abierta al público." signups_disabled_2: "Por favor contacte con un administrador para registrar una nueva cuenta." sign_up: "Crear cuenta"