Skip to content

Commit 169df20

Browse files
Merge pull request #2337 from adaptlearning/release/bugpatch
Release/bugpatch
2 parents 0b18c11 + 60bddd5 commit 169df20

56 files changed

Lines changed: 178 additions & 134 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to the Adapt authoring tool are documented in this file.
55
**IMPORTANT**: For information on how to **correctly and safely** update your installation, please consult **INSTALL.md**.<br/>
66
_Note that we adhere to the [semantic versioning](http://semver.org/) scheme for release numbering._
77

8+
## [0.8.1] - 2019-05-23
9+
10+
Bugfix release.
11+
12+
### Fixed
13+
- Publish spinner shows through force rebuild button ([#2295](https://github.com/adaptlearning/adapt_authoring/issues/2295))
14+
- Tag preview not showing via upload asset from component ([#2300](https://github.com/adaptlearning/adapt_authoring/issues/2300))
15+
- hard-coded placeholder text in sidebarFilter.hbs ([#2309](https://github.com/adaptlearning/adapt_authoring/issues/2309))
16+
- Admins can see other users' unshared courses ([#2312](https://github.com/adaptlearning/adapt_authoring/issues/2312))
17+
- No new migrations are run for upgrades ([#2317](https://github.com/adaptlearning/adapt_authoring/issues/2317))
18+
819
## [0.8.0] - 2019-05-03
920

1021
Adds a UI to allow the editing of a supported theme.
@@ -591,6 +602,7 @@ Initial release.
591602
- Loading screen of death
592603
- Session cookie security issues
593604

605+
[0.8.1]: https://github.com/adaptlearning/adapt_authoring/compare/v0.8.0...v0.8.1
594606
[0.8.0]: https://github.com/adaptlearning/adapt_authoring/compare/v0.7.1...v0.8.0
595607
[0.7.1]: https://github.com/adaptlearning/adapt_authoring/compare/v0.7.0...v0.7.1
596608
[0.7.0]: https://github.com/adaptlearning/adapt_authoring/compare/v0.6.5...v0.7.0

frontend/src/core/collections/tagsCollection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ define(function(require) {
55

66
var TagsCollection = Backbone.Collection.extend({
77

8-
url: '/api/autocomplete/tag'
8+
url: 'api/autocomplete/tag'
99

1010
});
1111

frontend/src/core/models/articleModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(function(require) {
33
var ContentModel = require('./contentModel');
44

55
var ArticleModel = ContentModel.extend({
6-
urlRoot: '/api/content/article',
6+
urlRoot: 'api/content/article',
77
_parentType: 'contentobject',
88
_siblingTypes: 'article',
99
_childTypes: 'block',

frontend/src/core/models/blockModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(function(require) {
33
var ContentModel = require('./contentModel');
44

55
var BlockModel = ContentModel.extend({
6-
urlRoot: '/api/content/block',
6+
urlRoot: 'api/content/block',
77
_parentType: 'article',
88
_siblingTypes: 'block',
99
_childTypes: 'component',

frontend/src/core/models/clipboardModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(function(require) {
33
var ContentModel = require('./contentModel');
44

55
var ClipboardModel = ContentModel.extend({
6-
urlRoot: '/api/content/clipboard',
6+
urlRoot: 'api/content/clipboard',
77
});
88

99
return ClipboardModel;

frontend/src/core/models/componentModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(function(require) {
33
var ContentModel = require('./contentModel');
44

55
var ComponentModel = ContentModel.extend({
6-
urlRoot: '/api/content/component',
6+
urlRoot: 'api/content/component',
77
_parentType: 'block',
88
_siblingTypes: 'component',
99
// These are the only attributes which should be permitted on a save

frontend/src/core/models/componentTypeModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ define(function(require) {
44

55
var ComponentTypeModel = ContentModel.extend({
66
idAttribute: '_id',
7-
urlRoot: '/api/componenttype',
7+
urlRoot: 'api/componenttype',
88
_parent: 'block',
99

1010
comparator: function(model) {

frontend/src/core/models/configModel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ define(function(require) {
1111

1212
switch (method.toLowerCase()) {
1313
case 'read':
14-
options.url = '/api/content/config/' + this.get('_courseId');
14+
options.url = 'api/content/config/' + this.get('_courseId');
1515
break;
1616
case 'update':
1717
case 'patch':
18-
options.url = '/api/content/config/' + this.get('_id');
18+
options.url = 'api/content/config/' + this.get('_id');
1919
break;
2020
}
2121

frontend/src/core/models/contentObjectModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ define(function(require) {
44
var ContentModel = require('./contentModel');
55

66
var ContentObjectModel = ContentModel.extend({
7-
urlRoot: '/api/content/contentobject',
7+
urlRoot: 'api/content/contentobject',
88
_parentType: 'contentobject',
99
_siblingTypes: 'contentobject',
1010
_childTypes: ['contentobject', 'article'],

frontend/src/core/models/courseAssetModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ define(function(require) {
55

66
var CourseAssetModel = Backbone.Model.extend({
77
idAttribute: '_id',
8-
urlRoot: '/api/content/courseasset'
8+
urlRoot: 'api/content/courseasset'
99
});
1010

1111
return CourseAssetModel;

0 commit comments

Comments
 (0)