Skip to content
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.

Releases: san650/ember-web-app

v2.3.0

13 Dec 21:31
Compare
Choose a tag to compare

v2.2.0

09 Oct 17:56
Compare
Choose a tag to compare
  • #69 Allow override of manifest.display for Apple by setting manifest.apple.webAppCapable (@martndemus)

Generate meta for favicons and code cleanup

01 Oct 23:10
Compare
Choose a tag to compare

Better broccoli-asset-rev compatibility

08 Jul 14:04
Compare
Choose a tag to compare

This release is not backward compatible.

Main changes

  • Better compatibility with broccoli-asset-rev. We now support adding checksum fingerprint to the manifest file itself and support for prepending values. See #22
  • Adds format-detection meta tag support. See #56
  • Adds favicon definition in icons collection. See #57

🎉 Big shoutout to @bobisjan for contributing some of these features!

Dropped features

  • We don't support renaming the manifest file anymore. This feature was causing more problems than real benefits.
  • The generated manifest file was renamed from manifest.json to manifest.webmanifest.

Project Update

$ ember install ember-web-app

Community contributions

  • #57 Add support for icon related link tags, close #51 (@bobisjan)
  • #56 Add support for Apple's format detection meta tag (@bobisjan)
  • #59 Improve compatibility with broccoli-asset-rev addon (@san650)

Happy coding!

Bugfix release

20 Jun 01:30
Compare
Choose a tag to compare

This release fixes a bug when using absolute URLs for icons. See #49 for more information.

Big shout out to @oscarni for reporting and fixing the bug!

Project Update

$ ember install ember-web-app

Community contributions

Happy coding!

v1.3.0

07 Jun 12:16
Compare
Choose a tag to compare

Project Update

$ ember install ember-web-app

Community contributions

  • #41 Show iOS browser controls when display value is "minimal-ui" or "browser" (@san650)
  • #43 Allow to turn off the generation of apple specific tags (@san650)
  • #44 Fix documentation example (@hidnasio)
  • #47 Fix broccoli rebuild (@simonihmig)

Happy coding!

v1.2.0

31 Mar 04:37
Compare
Choose a tag to compare

This is a feature release

Project Update

$ ember install ember-web-app

Or...

$ npm install --save-dev ember-web-app@v1.2.0
$ ember generate ember-web-app

Main changes

Set apple touch icons as precomposed

Now you can set apple touch icons as precomposed

Example

config/manifest.js

manifest.apple = {
  icons: [
    {
      src: '/foo/bar.png',
      sizes: '180x180'
    }
  ],

  precomposed: 'true'
};

generates

<link rel="apple-touch-icon-precomposed" href="/foo/bar.png" sizes="180x180">

Thanks @hidnasio for the contribution!

Disable manifest generation

Now you can disable the generation of the manifest (and related meta and link tags).

ember-cli-build.js

var EmberApp = require('ember-cli/lib/broccoli/ember-app');

module.exports = function(defaults) {
  var options = {
    'ember-web-app': {
      enabled: false
    }
  };

  var app = new EmberApp(defaults, options);

  return app.toTree();
};

Community contributions

Happy coding!

v1.1.0

20 Dec 15:24
Compare
Choose a tag to compare

This is a feature release

Project Update

$ ember install ember-web-app
$ npm install --save-dev ember-web-app@v1.1.0
$ ember generate ember-web-app

Main changes

Now you can rename the manifest name in your config/environment.js

module.exports = function(environment) {
  var ENV = {
    modulePrefix: 'dummy',
    environment: environment,
    rootURL: '/'
    ...
  };

  ENV['ember-web-app'] = {
    name: 'my-awesome-manifest.json'
  };

  return ENV;
};

Community contributions

  • #26 Add configuration for manifest name (@san650)
  • #27 Add TOC and move up installation instructions (@san650)

Happy coding!

v1.0.5

16 Dec 16:29
Compare
Choose a tag to compare

This is a bug fix release and you should update.

Project Update

$ ember install ember-web-app
$ npm install --save-dev ember-web-app@v1.0.5

Main changes

We renamed the manifest.json file to manifest.ember-web-app.json to workaround an issue with ember-web-app and broccoli-asset-rev and ember-cli-fastboot. We're working on making the name of the manifest configurable. See #23

Community contributions

  • #21 Test fingerprinting of images (@san650)
  • #25 Rename manifest.json to manifest.ember-web-app.json (@san650)

Happy coding!

v1.0.4 - Fastboot support

15 Dec 19:50
Compare
Choose a tag to compare

This is a bug fix release and you should update.

Project Update

$ ember install ember-web-app
$ npm install --save-dev ember-web-app@v1.0.4

Main changes

See #5 for more information. Thanks @ewoutp for reporting the bug and @teddyzeenny for investigating and fixing it!

Community contributions

  • #20 Rename manifest.json to manifest.ember-web-app.json during build (@teddyzeenny)

Happy coding!