From 3389bb0f4e43087ef1bf3073c1cb2e8cf64b60d1 Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 21 Oct 2013 11:30:18 +0200 Subject: fix download urls for mac, android and windows They did not point directly to the download. --- config/defaults.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/defaults.yml b/config/defaults.yml index 6211e37..4d0a8d8 100644 --- a/config/defaults.yml +++ b/config/defaults.yml @@ -22,12 +22,12 @@ downloads: &downloads - windows - android download_paths: - android: /client/android + android: /client/android/Bitmask-Android-latest.apk linux: /client/linux linux32: /client/linux/Bitmask-linux32-latest.tar.bz2 linux64: /client/linux/Bitmask-linux64-latest.tar.bz2 - osx: /client/osx/Bitmask-OSC-latest.dmg - windows: /client/windows + mac: /client/osx/Bitmask-OSX-latest.dmg + windows: /client/windows/Bitmask-win32-latest.zip other: /client common: &common -- cgit v1.2.3 From 23b9c58c4bd2e62ba63064c0e606d84f26fe74fa Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 21 Oct 2013 18:18:13 +0200 Subject: use osx not mac as an identifier for the os. --- config/defaults.yml | 4 ++-- core/config/locales/en.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/defaults.yml b/config/defaults.yml index 4d0a8d8..c7c8502 100644 --- a/config/defaults.yml +++ b/config/defaults.yml @@ -18,7 +18,7 @@ downloads: &downloads available_clients: - linux32 - linux64 - - mac + - osx - windows - android download_paths: @@ -26,7 +26,7 @@ downloads: &downloads linux: /client/linux linux32: /client/linux/Bitmask-linux32-latest.tar.bz2 linux64: /client/linux/Bitmask-linux64-latest.tar.bz2 - mac: /client/osx/Bitmask-OSX-latest.dmg + osx: /client/osx/Bitmask-OSX-latest.dmg windows: /client/windows/Bitmask-win32-latest.zip other: /client diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml index 344eee4..4710a16 100644 --- a/core/config/locales/en.yml +++ b/core/config/locales/en.yml @@ -35,6 +35,6 @@ en: linux64: "Linux (64 bit)" windows: "Windows" android: "Android" - mac: "Mac OSX" + osx: "Mac OSX" other: "(not available for your OS.)" -- cgit v1.2.3 From 9cdd17f630f6e0399e841117f4d6fc98cd437bb8 Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 21 Oct 2013 18:30:19 +0200 Subject: adopt css to mac-> osx change --- app/assets/stylesheets/leap.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/leap.scss b/app/assets/stylesheets/leap.scss index 30f7741..af3bde4 100644 --- a/app/assets/stylesheets/leap.scss +++ b/app/assets/stylesheets/leap.scss @@ -78,11 +78,11 @@ html.windows .os-windows { display: inherit !important; } -.os-mac { +.os-osx { display: none !important; } -html.mac .os-mac { +html.osx .os-osx { display: inherit !important; } -- cgit v1.2.3 From 7b3dd8c2c0436518c7c80d37498b57fcf3b1eaf8 Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 21 Oct 2013 18:55:26 +0200 Subject: the class for the html tag is linux32 - not just linux --- app/assets/stylesheets/leap.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/leap.scss b/app/assets/stylesheets/leap.scss index af3bde4..abfea05 100644 --- a/app/assets/stylesheets/leap.scss +++ b/app/assets/stylesheets/leap.scss @@ -58,7 +58,7 @@ html.android .os-android { display: none !important; } -html.linux .os-linux32 { +html.linux32 .os-linux32 { display: inherit !important; } -- cgit v1.2.3