]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
chore: drop support for Android 2.3 - 4.4
authorDaniel Ruf <daniel@daniel-ruf.de>
Sat, 17 Mar 2018 22:22:37 +0000 (23:22 +0100)
committerDaniel Ruf <daniel@daniel-ruf.de>
Sat, 17 Mar 2018 22:22:37 +0000 (23:22 +0100)
chore: add note about old iOS versions

docs/assets/img/gulpfile.js
docs/pages/compatibility.md
docs/pages/sass.md
gulp/config.js
gulp/tasks/customizer.js

index e332e241fd478572a57da972e412533432fa0d1b..15fd9ac855b1888c4d650f1f620df42bb239cef2 100755 (executable)
@@ -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'));
index bb9442c5abdb999bb646cd5964b1a063854804d6..aa4a7a9ea7e834eb58f3d3005aaf4b43aee998fa 100644 (file)
@@ -16,7 +16,7 @@ tags:
   <tr><td>Firefox</td></tr>
   <tr><td>Safari</td></tr>
   <tr><td>Opera</td></tr>
-  <tr><td>Mobile Safari</td></tr>
+  <tr><td>Mobile Safari<sup>1</sup></td></tr>
   <tr><td>IE Mobile</td></tr>
   <tr>
     <td>Internet Explorer</td>
@@ -24,10 +24,12 @@ tags:
   </tr>
   <tr>
     <td>Android Browser</td>
-    <td class="works">Versions 2.3+</td>
+    <td class="works">Versions 4.4+</td>
   </tr>
 </table>
 
+<sup>1</sup>iOS 7+ is actively supported but with some known bugs.
+
 ---
 
 ## What Won't Work?
index 3db4e957aeffdb8d10de7dc47dc515426600b722..a6e3e42fc10be84ace8e2bea9207ae36ef38f3e5 100644 (file)
@@ -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']
 });
 ```
 
index da5d5237237e243cb9bf71fcbe2f57afe4cc1708..6e639ff636edb5912b6dfd36bbafd257d7e979dd 100644 (file)
@@ -47,7 +47,8 @@ module.exports = {
   CSS_COMPATIBILITY: [
     'last 2 versions',
     'ie >= 9',
-    'android >= 2.3'
+    'android >= 4.4',
+    'ios >= 7'
   ],
 
   // Assets
index 18a91c62ab7106ea32c14ab8e17e4f9752d84e4c..706d2a4bb4c8938987b17df4f6744a8338c0a971 100644 (file)
@@ -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;