Skip to content

Commit

Permalink
Release v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
narenranjit committed Nov 17, 2015
1 parent c2c7d65 commit 3fd66e7
Show file tree
Hide file tree
Showing 8 changed files with 273 additions and 71 deletions.
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.5.0",
"version": "1.6.0",
"homepage": "https://github.com/forio/epicenter-js-libs",
"authors": [
"Naren Ranjit <[email protected]>"
Expand Down
14 changes: 14 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="1.6.0"></a>
## 1.6.0 (2015-11-17)
Features:
- The libraries now include an Asset Service (mapping to the underlying REST Asset API) to allow end-users manage files within projects.
- Run Service now auto-restores runs which go out of memory (#132). You can turn this off by setting `autoRestore` to `false. See https://forio.com/epicenter/docs/public/run_persistence for more information on Run Persistence.
- Run Service now automatically breaks apart long URLs into multiple GETs behind the scenes. Browsers typically have a URL length limit of 2048 characters, and it's easy to bump into that for GETs with lots of variables. There should be no change in behavior as a result of this change (#123).
- Run Service now supports `id` as an alias to `filter` as part of the options, to be more semantic you're only working with a single run.
- World Service: delete() now takes in an optional world id as first param #56
- World Service now supports `id` as an alias to `filter` as part of the options, to be more semantic you're only working with a single world.
- World Manager now takes in the model from the `run` if you don't specify it as part of the `world`.

Bug Fixes:
- Run manager sets cookie path to `/` if you're running it locally - this fixes an issue where cookies were never set locally and you always got a new run if you refreshed.

<a name="1.5.0"></a>
## 1.5.0 (2015-06-10)

Expand Down
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.5.0/components/assignment/assignment.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.6.0/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.5.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.5.0/components/assignment/assignment.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.0/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.5.0/components/login/login.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.6.0/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.5.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.5.0/components/login/login.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.6.0/components/login/login.js"></script>
</head>
<body>
<!--
Expand Down
Loading

0 comments on commit 3fd66e7

Please sign in to comment.