A convention-based version update notifier.
- Add this add-on as you would any other:
> ember install ember-cli-new-version
- Add a version file to your app, eg: ./public/VERSION.txt
1.0.0
- Include the component in your view:
viola!
updateInterval
- the amount of time, in milliseconds, to wait between version checks default: 60000versionFileName
- the name of the file on the server to check default: /VERSION.txtupdateMessage
- the message to show to users when update has been detected. There are two tokens allowed in this string:{{newVersion}}
and{{oldVersion}}
which will replaced with their respective values. eg. (and default). "This application has been updated from version {{oldVersion}} to {{newVersion}}. Please save any work, then refresh browser to see changes."showReload
- true shows a reload button the user can click to refresh. false hides the button. default: truereloadButtonText
- Sets the text for the default reload button. default: "Reload"onNewVersion(newVersion, oldVersion)
- a closure action that is called whenever a new version is detected. You can use this to track the version status elsewhere in your app (outside the component).
By default the notification is styled as a Bootstrap Alert. If you want custom layouts or to use a different framework, then you can define your own markup for the notification.
You can opt-in to automatically generating a VERSION.txt
during the build process. Opting-in means you don't need maintain a /public/VERSION.txt
in your project. Simply add the following to ember-cli-build.js
:
var app = new EmberApp(defaults, {
newVersion: {
enabled: true,
}
});
This will result in dist/VERSION.txt
being created.
To override the version filename:
var app = new EmberApp(defaults, {
newVersion: {
enabled: true,
fileName: 'MY-VERSION.txt'
}
});
This will result in dist/MY-VERSION.txt
being created. Note that this will also update the default versionFileName
attribute in the {{new-version-notifier}}
component.
Since version 1.6.0 this addons is able to use the version string provided by ember-cli-app-version.
All you have to do is install ember-cli-app-version
and enable a flag in ember-cli-build.js
.
Then an update is triggered based on full version strings with build metadata such as 1.0.0-beta-2-e1dffe1
.
var app = new EmberApp(defaults, {
newVersion: {
enabled: true,
useAppVersion: true
}
});
git clone <repository-url>
cd my-addon
npm install
npm run lint:js
npm run lint:js -- --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versions
ember serve
- Visit the dummy application at http://localhost:4200.
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.