Skip to content

v3.1.0 release notes

nschonni edited this page Apr 11, 2013 · 44 revisions
  • Release date: 2013-04-??
  • Downloads
  • Number of commits: Who's counting? Who cares?

Table of Contents

What's New

Changes That Can Break Things

  • Old page top script section to split jQuery version to support release of jQuery 2.0 dropping support for oldIE
v3.0
<script src="../dist/js/jquery.min.js"></script>
<!--[if lte IE 8]>
<script src="../dist/js/polyfills/html5shiv-min.js"></script>
<link rel="stylesheet" href="../dist/grids/css/util-ie-min.css" />
<link rel="stylesheet" href="../dist/js/css/pe-ap-ie-min.css" />
<link rel="stylesheet" href="../dist/theme-gcwu-fegc/css/theme-ie-min.css" />
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="../dist/grids/css/util-min.css" />
<link rel="stylesheet" href="../dist/js/css/pe-ap-min.css" />
<link rel="stylesheet" href="../dist/theme-gcwu-fegc/css/theme-min.css" />
<!--<![endif]-->
v3.1
<!--[if lte IE 8]>
<script src="../dist/js/jquery-ie.min.js"></script>
<script src="../dist/js/polyfills/html5shiv-min.js"></script>
<link rel="stylesheet" href="../dist/grids/css/util-ie-min.css" />
<link rel="stylesheet" href="../dist/js/css/pe-ap-ie-min.css" />
<link rel="stylesheet" href="../dist/theme-wet-boew/css/theme-ie-min.css" />
<noscript><link rel="stylesheet" href="../dist/theme-wet-boew/css/theme-ns-ie-min.css" /></noscript>
<![endif]-->
<!--[if gt IE 8]><!-->
<script src="../dist/js/jquery.min.js"></script>
<link rel="stylesheet" href="../dist/grids/css/util-min.css" />
<link rel="stylesheet" href="../dist/js/css/pe-ap-min.css" />
<link rel="stylesheet" href="../dist/theme-wet-boew/css/theme-min.css" />
<noscript><link rel="stylesheet" href="../dist/theme-wet-boew/css/theme-ns-min.css" /></noscript>
<!--<![endif]-->
  • jQuery Mobile and pe-ap.js split into IE and non-IE versions at page bottom
v3.0
<!-- ScriptsStart -->
<script src="../dist/theme-gcwu-fegc/js/theme-min.js"></script>
<script src="../dist/js/settings.js"></script>
<script src="../dist/js/pe-ap-min.js"></script>
<!-- ScriptsEnd -->
v3.1
<!-- ScriptsStart -->
<script src="../dist/js/settings.js"></script>
<!--[if lte IE 8]>
<script src="../dist/theme-wet-boew/js/theme-ie-min.js"></script>
<script src="../dist/js/pe-ap-ie-min.js"></script>
<script src="../dist/js/jquerymobile/jquery.mobile-ie.min.js"></script>
<![endif]-->
<!--[if gt IE 8]><!-->
<script src="../dist/theme-wet-boew/js/theme-min.js"></script>
<script src="../dist/js/pe-ap-min.js"></script>
<script src="../dist/js/jquerymobile/jquery.mobile.min.js"></script>
<!--<![endif]-->
<!-- ScriptsEnd -->
  • Multi-column class names now use real numbers instead of written ones in the Grids system (e.g. "column-two" is now "column-2")
  • Slideout tab now uses text instead of images
  • As always, be on the lookout for broken layouts and functionality when upgrading, and test thoroughly

Improved Performance

  • jQuery Mobile integrated with desktop view
  • Upgraded to newer versions of JQuery Mobile, jQuery, and others
  • FIP is now SVG-based

Look and Feel

  • Mobile view redesign
  • Tablet view
  • Improved Multimedia Player UI

New Features

  • Geomap
  • Responsive Images
  • Expand/Collapse All
  • Data Tables
  • Improved Tabbed Interface
  • Improved Charts and Graphs

Compatibility

  • New Polyfill for Meter
  • Improved Slideout Tab

Internationalization and Localization

  • Localization for 29 languages
  • Slideout Tab is now l18n-compliant

Under The Hood (list of commits)

Clone this wiki locally