Skip to content

Commit

Permalink
Release version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Molly Jones committed Apr 12, 2016
1 parent 691bc64 commit ffe915e
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 27 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.7.0",
"version": "1.7.1",
"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,4 +1,11 @@


<a name="1.7.1"></a>
### 1.7.1 (2016-04-12)

- Bug fixes for the API configuration feature introduced in 1.7.0: make sure we first search for the API configuration on the current server; if it's not available, default to api.forio.com. This allows Epicenter.js to more easily be used on multiple Epicenter installations (not just forio.com), but still provides flexibility for local development.
- Upgraded test framework (sinon) version.

<a name="1.7.0"></a>
### 1.7.0 (2016-04-11)

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.7.0/components/assignment/assignment.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.7.1/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.7.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.0/components/assignment/assignment.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.1/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.1/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.7.0/components/login/login.css">
<link rel="stylesheet" href="https://forio.com/tools/js-libs/1.7.1/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.7.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.0/components/login/login.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.1/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.1/components/login/login.js"></script>
</head>
<body>
<!--
Expand Down
27 changes: 16 additions & 11 deletions dist/epicenter.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/epicenter.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions documentation/index.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ Although in most cases you'll work with the managers directly, the services are

**Epicenter.js**

The Epicenter.js library is available from our tools: <a href="https://forio.com/tools/js-libs/1.7.0/epicenter.min.js" target="_blank">https://forio.com/tools/js-libs/1.7.0/epicenter.min.js</a>. To use it in your project, simply add
The Epicenter.js library is available from our tools: <a href="https://forio.com/tools/js-libs/1.7.1/epicenter.min.js" target="_blank">https://forio.com/tools/js-libs/1.7.1/epicenter.min.js</a>. To use it in your project, simply add

<script src="https://forio.com/tools/js-libs/1.7.0/epicenter.min.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.1/epicenter.min.js"></script>

into any of your [interface](../creating_your_interface/) files (e.g. .html and .js files).

Expand All @@ -69,9 +69,9 @@ The Epicenter.js library depends on jQuery, so you'll also need to download jQue

**Extensions**

If you are building a [multiplayer game](../glossary/#world), you'll also need to include the epicenter-multiplayer-dependencies.js library. This is available from our tools: <a href="https://forio.com/tools/js-libs/1.4.0/epicenter-multiplayer-dependencies.js" target="_blank">https://forio.com/tools/js-libs/1.7.0/epicenter-multiplayer-dependencies.js</a>. To use it in your project, simply add
If you are building a [multiplayer game](../glossary/#world), you'll also need to include the epicenter-multiplayer-dependencies.js library. This is available from our tools: <a href="https://forio.com/tools/js-libs/1.4.0/epicenter-multiplayer-dependencies.js" target="_blank">https://forio.com/tools/js-libs/1.7.1/epicenter-multiplayer-dependencies.js</a>. To use it in your project, simply add

<script src="https://forio.com/tools/js-libs/1.7.0/epicenter-multiplayer-dependencies.js"></script>
<script src="https://forio.com/tools/js-libs/1.7.1/epicenter-multiplayer-dependencies.js"></script>

into any of your [interface](../creating_your_interface/) files (e.g. .html and .js files).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "epicenter-js",
"version": "1.7.0",
"version": "1.7.1",
"repository": {
"type": "git",
"url": "https://github.com/forio/epicenter-js-libs"
Expand Down

0 comments on commit ffe915e

Please sign in to comment.