Merge branch 'stable' into develop

This commit is contained in:
Steffen van Bergerem 2016-02-06 15:40:16 +01:00
commit 936460e874
4 changed files with 7 additions and 6 deletions

View file

@ -117,6 +117,7 @@ Contributions are very welcome, the hard work is done!
## Refactor
* Internationalize controller rescue\_from text [#6554](https://github.com/diaspora/diaspora/pull/6554)
* Make mention parsing a bit more robust [#6658](https://github.com/diaspora/diaspora/pull/6658)
* Remove unlicensed images [#6673](https://github.com/diaspora/diaspora/pull/6673)
## Bug fixes
* Fix plural rules handling more than wanted as "one" [#6630](https://github.com/diaspora/diaspora/pull/6630)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View file

@ -44,9 +44,9 @@ var factory = {
"id": id,
"diaspora_id": "bob@bob.com",
"avatar":{
"large":"http://localhost:3000/assets/user/uma.jpg",
"medium":"http://localhost:3000/assets/user/uma.jpg",
"small":"http://localhost:3000/assets/user/uma.jpg"}
"large":"http://localhost:3000/assets/user/default.png",
"medium":"http://localhost:3000/assets/user/default.png",
"small":"http://localhost:3000/assets/user/default.png"}
};
return _.extend(defaultAttrs, overrides);
@ -90,9 +90,9 @@ var factory = {
"full_name": "bob grimm",
"gender": "robot",
"id": id,
"image_url": "http:\/\/localhost:3000\/assets\/user\/wolf.jpg",
"image_url_medium": "http:\/\/localhost:3000\/assets\/user\/wolf.jpg",
"image_url_small": "http:\/\/localhost:3000\/assets\/user\/wolf.jpg",
"image_url": "http://localhost:3000/assets/user/default.png",
"image_url_medium": "http://localhost:3000/assets/user/default.png",
"image_url_small": "http://localhost:3000/assets/user/default.png",
"last_name": "Grimm",
"location": "Earth",
"nsfw": false,