Skip to content

Commit

Permalink
Merge branch 'master' into beta
Browse files Browse the repository at this point in the history
Normally we wouldn't do this for anything other than beta 0. However,
in this case, it's fine because everything that went in is either
extremely low-risk or a high-impact bug that we would've backported
via cherry-pick anyway - and merging rather than cherry-picking
results in a cleaner history.
  • Loading branch information
strugee committed Feb 16, 2017
2 parents f8131bd + 368f8ec commit 40506b8
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ addons:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo $(which npm) run test-root"
script: "npm test && sudo $(which npm) run test-root && npm run test:install"
before_script:
- "./test/hosts.sh"
before_install:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

pump.io follows [Semantic Versioning][semver].

## 3.0.0 beta 1 - 2017-02-15

### Improved

* Improve performance of front-page image

### Fixed

* Fix the web UI repeating YouTube videos (again)
* Fix direct visits to /following URLs not rendering layout (#1279)

## 3.0.0 beta 0 - 2017-02-01

### Improved
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"postinstall": "npm run build",
"test": "npm run lint && vows -v test/*-test.js",
"test-root": "vows -v test/*-test-as-root.js",
"test:install": "sudo $(which npm) install -g .",
"lint": "npm run lint:jshint && npm run lint:jscs && npm run lint:jade",
"lint:jshint": "jshint --exclude 'public/javascript/libs' bin/* routes",
"lint:jscs": "jscs bin/* lib public/javascript/pump* routes test",
Expand Down
Binary file modified public/images/somefriends.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/javascript/pump/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@
"error",
"favorites",
"followers",
"following",
"inbox",
"javascript-disabled",
"list",
Expand Down
12 changes: 12 additions & 0 deletions public/template/following-client.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.user.user-following
.row
.span12
include ./profile-block.jade

.row
.span12
include ./profile-nav.jade

.row
.span12#user-content
include ./user-content-following.jade
13 changes: 3 additions & 10 deletions public/template/following.jade
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
.user.user-following
.row
.span12
include ./profile-block.jade
extends ./layout.jade

.row
.span12
include ./profile-nav.jade
block body

.row
.span12#user-content
include ./user-content-following.jade
include following-client.jade
2 changes: 1 addition & 1 deletion public/template/major-activity.jade
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ unless object.deleted
- var yt = String(object.content.match(/www\.youtube\.com\/watch\?v=[a-zA-Z0-9_-]*/))
if yt
iframe(width="420", height="315", frameborder="0", src="//www.youtube.com/embed/" + yt.substring(yt.indexOf('?v=')+3, yt.length), allowfullscreen)
- delete yt
- yt = '';

if principal
- var obj = object;
Expand Down

0 comments on commit 40506b8

Please sign in to comment.