Skip to content

Commit

Permalink
Release v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Molly Jones committed Feb 23, 2016
1 parent 6c02b36 commit 1a89a26
Show file tree
Hide file tree
Showing 12 changed files with 910 additions and 588 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = function (grunt) {
grunt.registerTask('release', function (type) {
//TODO: Integrate 'changelog' in here when it's stable
type = type ? type : 'patch';
['bump-only:' + type, 'changelog', 'production', 'bump-commit'].forEach(function (task) {
['bump-only:' + type, 'production', 'bump-commit'].forEach(function (task) {
grunt.task.run(task);
});
});
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "epicenter-js-libs",
"version": "1.6.2",
"version": "1.6.3",
"homepage": "https://github.com/forio/epicenter-js-libs",
"authors": [
"Naren Ranjit <[email protected]>"
Expand Down
7 changes: 7 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="1.6.3"></a>
### 1.6.3 (2016-02-24)
- Updates for the [run strategies](https://forio.com/epicenter/docs/public/api_adapters/strategy/) to use group name rather than group id to create runs with specific scope.
- Addition of the `Auto-Restore` header to the Variables API Service `query()` call; previously it had only been set for the `load()` call. This header means that runs are automatically pulled from the Epicenter backend database into memory (and replayed) when they are queried. A run must be in memory in order to update model variables or call model operations.
- Clean up of the Authentication API Service `logout()` call; it no longer calls the (unsupported) Epicenter delete.
- Documentation improvements, including more information on running Epicenter projects locally and additional examples when using Asset API Adapter.

<a name="1.6.2"></a>
### 1.6.2 (2015-12-29)
- Internal refactoring to add support for version numbers in upcoming Epicenter APIs.
Expand Down
2 changes: 1 addition & 1 deletion dist/components/assignment/assignment.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/components/assignment/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.6.2/components/assignment/assignment.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.6.3/components/assignment/assignment.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js"></script>
</head>
Expand Down Expand Up @@ -73,8 +73,8 @@
</div>
</div>
<!-- make sure to include jquery, epicenter.js and assignment.js -->
<script src="https://forio.com/tools/js-libs/1.6.2/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.2/components/assignment/assignment.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.3/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.3/components/assignment/assignment.js"></script>
<script>
new window.forio.MultiplayerAssignmentComponent({
el: '#assignment-component',
Expand Down
6 changes: 3 additions & 3 deletions dist/components/login/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">

<!-- login.css provides styling for the group selector pop over dialog -->
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.6.2/components/login/login.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.6.3/components/login/login.css">

<!-- make sure to include jquery, epicenter.js and login.js -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.2/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.2/components/login/login.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.3/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.3/components/login/login.js"></script>
</head>
<body>
<!--
Expand Down
2 changes: 1 addition & 1 deletion dist/epicenter-multiplayer-dependencies.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/epicenter-multiplayer-dependencies.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 1a89a26

Please sign in to comment.