From 94d6eca09ec92d5a551fb2028d25468cdd1b8b0a Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Sat, 17 Mar 2018 23:22:37 +0100 Subject: [PATCH] chore: drop support for Android 2.3 - 4.4 chore: add note about old iOS versions --- docs/assets/img/gulpfile.js | 2 +- docs/pages/compatibility.md | 6 ++++-- docs/pages/sass.md | 2 +- gulp/config.js | 3 ++- gulp/tasks/customizer.js | 3 ++- 5 files changed, 10 insertions(+), 6 deletions(-) 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; -- 2.47.2