From: Daniel Ruf Date: Sat, 17 Mar 2018 22:22:37 +0000 (+0100) Subject: chore: drop support for Android 2.3 - 4.4 X-Git-Tag: v6.6.0~3^2~224^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94d6eca09;p=thirdparty%2Ffoundation%2Ffoundation-sites.git chore: drop support for Android 2.3 - 4.4 chore: add note about old iOS versions --- diff --git a/docs/assets/img/gulpfile.js b/docs/assets/img/gulpfile.js index e332e241f..15fd9ac85 100755 --- a/docs/assets/img/gulpfile.js +++ b/docs/assets/img/gulpfile.js @@ -84,7 +84,7 @@ gulp.task('sass', function() { }) .on('error', $.sass.logError)) .pipe($.autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9', 'android >= 2.3'] + browsers: ['last 2 versions', 'ie >= 9', 'android >= 4.4', 'ios >= 7'] })) // .pipe(uncss) .pipe(gulp.dest('./dist/assets/css')); diff --git a/docs/pages/compatibility.md b/docs/pages/compatibility.md index bb9442c5a..aa4a7a9ea 100644 --- a/docs/pages/compatibility.md +++ b/docs/pages/compatibility.md @@ -16,7 +16,7 @@ tags: Firefox Safari Opera - Mobile Safari + Mobile Safari1 IE Mobile Internet Explorer @@ -24,10 +24,12 @@ tags: Android Browser - Versions 2.3+ + Versions 4.4+ +1iOS 7+ is actively supported but with some known bugs. + --- ## What Won't Work? diff --git a/docs/pages/sass.md b/docs/pages/sass.md index 3db4e957a..a6e3e42fc 100644 --- a/docs/pages/sass.md +++ b/docs/pages/sass.md @@ -30,7 +30,7 @@ To get the proper browser support, use these Autoprefixer settings: ```js autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9', 'android >= 2.3'] + browsers: ['last 2 versions', 'ie >= 9', 'android >= 4.4', 'ios >= 7'] }); ``` diff --git a/gulp/config.js b/gulp/config.js index da5d52372..6e639ff63 100644 --- a/gulp/config.js +++ b/gulp/config.js @@ -47,7 +47,8 @@ module.exports = { CSS_COMPATIBILITY: [ 'last 2 versions', 'ie >= 9', - 'android >= 2.3' + 'android >= 4.4', + 'ios >= 7' ], // Assets diff --git a/gulp/tasks/customizer.js b/gulp/tasks/customizer.js index 18a91c62a..706d2a4bb 100644 --- a/gulp/tasks/customizer.js +++ b/gulp/tasks/customizer.js @@ -32,7 +32,8 @@ var OUTPUT_DIR = ARGS.output || 'custom-build'; var COMPATIBILITY = [ 'last 2 versions', 'ie >= 9', - 'android >= 2.3' + 'android >= 4.4', + 'ios >= 7' ]; var CUSTOMIZER_CONFIG; var MODULE_LIST;