Adapt It Mobile
Blog
Adapt It Mobile news, product announcements, and more.

Release 1.0 beta 3 available for download

A very happy New Year 2017 to everyone! We are pleased to announce the third public beta release of Adapt It Mobile 1.0. This is a smaller beta release, and includes issues found during beta testing. A full list of resolved issues can be found in our issue tracker.

Please refer to the Adapt It Mobile Wiki site for instructions on installing. Issues and enhancement requests can be reported through our issues page. Thanks!


Release 1.0 beta 2 available for download

We are pleased to announce the second public beta release for Adapt It Mobile 1.0. This release includes issues found during beta testing. A full list of resolved issues can be found in our issue tracker.

Please refer to the Adapt It Mobile Wiki site for instructions on installing. Issues and enhancement requests can be reported through our issues page. Thanks!


Release 1.0 beta 1 available for download

We are pleased to announce the first beta release for Adapt It Mobile 1.0. This release includes more issues found during alpha testing, as well as some new features:

  • Document export support for the USX and AI Desktop (XML) formats
  • Support for 2-letter ISO 639 language codes

A full list of resolved issues can be found in our issue tracker.

Please refer to the Adapt It Mobile Wiki site for instructions on installing. Issues and enhancement requests can be reported through our issues page. Thanks!


cordova-plugin-fonts maintenance release 0.6.5

The Adapt It Mobile team members maintain a general purpose plugin for the Apache Cordova framework called cordova-plugin-fonts. This plugin allows Adapt It Mobile to enumerate the fonts installed on the mobile device, so that they can be used for adaptation.

The cordova-plugin-fonts release 0.6.5 replaces the hard-coded default font string with a query to the Android system_fonts.xml file. No other changes from the 0.6.0 release.

For more information about cordova-plugin-fonts, including installation instructions for Apache Cordova-based mobile apps, please visit the cordova-plugin-fonts repository page.


cordova-plugin-fonts maintenance release 0.6.0

The Adapt It Mobile team members maintain a general purpose plugin for the Apache Cordova framework called cordova-plugin-fonts. This plugin allows Adapt It Mobile to enumerate the fonts installed on the mobile device, so that they can be used for adaptation.

The cordova-plugin-fonts release 0.6.0 adds a new method, getDefaultFont:

GetDefaultFont

Parameters:

  • successCallback: Callback that returns the string name of the default font on the device.
  • errorCallback: Callback that executes if an error occurs during the call.

Android quirks

Android currently returns a hard-coded string for the default font, “Roboto Regular”.

Firefox OS quirks

Firefox OS does not provide an API to access the fonts on the device. The Fonts plugin currently returns a hard-coded string for the default font “Fira Sans Regular”. See https://www.mozilla.org/en-US/styleguide/products/firefox-os/typeface/ for more information.

Example

if (navigator.Fonts) {
    console.log("Fonts object in navigator");
    navigator.Fonts.getDefaultFont(
        function (defaultFont) {
            if (defaultFont) {
                console.log("Default Font: " + defaultFont);
            }
        },
        function (error) {
            console.log("DefaultFont error: " + error);
        }
    );
} else {
    console.log("Plugin error: Fonts plugin not found (is it installed?)");
}

For more information about cordova-plugin-fonts, including installation instructions for Apache Cordova-based mobile apps, please visit the cordova-plugin-fonts repository page.