From 93fc98f709f6682387227498f4413fda47e25c30 Mon Sep 17 00:00:00 2001 From: Azul Date: Tue, 14 Jan 2014 12:56:34 +0100 Subject: ensure auto_update_design_docs is false --- core/config/initializers/couchrest_model.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 core/config/initializers/couchrest_model.rb (limited to 'core') diff --git a/core/config/initializers/couchrest_model.rb b/core/config/initializers/couchrest_model.rb new file mode 100644 index 0000000..ce4f41a --- /dev/null +++ b/core/config/initializers/couchrest_model.rb @@ -0,0 +1,3 @@ +CouchRest::Model::Base.configure do |config| + config.auto_update_design_doc = false +end -- cgit v1.2.3 From 1eb7d8b27728febe325cfa7ecde5f84ef45dcba0 Mon Sep 17 00:00:00 2001 From: elijah Date: Thu, 16 Jan 2014 00:08:47 -0800 Subject: switch to using dl.bitmask.net --- core/app/views/common/_download_for_os.html.haml | 9 +++++---- core/config/locales/en.yml | 3 ++- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'core') diff --git a/core/app/views/common/_download_for_os.html.haml b/core/app/views/common/_download_for_os.html.haml index 4c096ce..3a11d10 100644 --- a/core/app/views/common/_download_for_os.html.haml +++ b/core/app/views/common/_download_for_os.html.haml @@ -3,10 +3,11 @@ %span.link - btn_class = (os == "other") ? "disabled" : "btn-primary" = link_to client_download_url(os), :class => "btn btn-large #{btn_class}" do - .pull-left= huge_icon('mask') - = t(:download_client) - %br/ - %small= I18n.t("os.#{os}") + = big_icon('download') + .pull-right + = t(:download_client) + %br/ + %small= I18n.t("os.#{os}") %span.info %div= t(:client_info, :provider => content_tag(:b,APP_CONFIG[:domain])).html_safe %div diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml index 4abf4e8..bb510d4 100644 --- a/core/config/locales/en.yml +++ b/core/config/locales/en.yml @@ -33,8 +33,9 @@ en: os: linux32: "Linux (32 bit)" linux64: "Linux (64 bit)" + linux: "GNU/Linux" windows: "Windows" android: "Android" osx: "Mac OS" - other: "(not available for your OS.)" + other: "(not available for your OS)" -- cgit v1.2.3