Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
Added changes #11 #18 #71
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgroenen committed Apr 26, 2015
1 parent 6b06155 commit ccf886f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,13 @@ v2.0.0 (UNRELEASED)

- Add support for multiple library sources (Local, SoundCloud, Google Play)

v1.5.0 (UNRELEASED)
-------------------

- Added master mode to Sync service [#71](https://github.com/dirkgroenen/mopidy-mopify/issues/71)

- Rebuild the search's layout [#18](https://github.com/dirkgroenen/mopidy-mopify/issues/18) [#11](https://github.com/dirkgroenen/mopidy-mopify/issues/11)

v1.4.2 (19-04-2015)
------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mopidy-mopify",
"description": "Webclient for Mopidy",
"version": "1.4.2",
"version": "1.5.0",
"homepage": "https://github.com/dirkgroenen/mopidy-mopify",
"license": "apache",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mopidy-mopify",
"author": "Dirk Groenen",
"version": "1.4.2",
"version": "1.5.0",
"description": "Webclient for Mopidy",
"repository": "https://github.com/dirkgroenen/mopidy-mopify",
"licenses": {
Expand Down
2 changes: 2 additions & 0 deletions src/app/player/player.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ angular.module('mopify.player', [
$scope.trackTitle = "";
$scope.trackArtist= "";
$scope.albumUri = "";
$scope.albumName = "";
$scope.playerBackground = "";

$scope.mobiledisplay = ($window.innerWidth < 1024) ? true : false;
Expand Down Expand Up @@ -106,6 +107,7 @@ angular.module('mopify.player', [
$scope.trackArtist = track.artists[0].name;
$scope.trackTitle = track.name;
$scope.albumUri = track.album.uri;
$scope.albumName = track.album.name;

// Get the background image from Spotify
Spotify.getTrack(track.uri).then(function (data) {
Expand Down
2 changes: 1 addition & 1 deletion src/app/player/player.tmpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ng-include src="'player/controls/controls.left.tmpl.html'"></ng-include>
</div>
<div class="seekwrap column" id="seekbar">
<a class="trackname" href="#/music/tracklist/{{ albumUri }}">
<a class="trackname" href="#/music/tracklist/{{ albumUri }}/{{ albumName }}">
<span class="title">{{ trackTitle }}</span> <span class="delimiter">-</span> <span class="artist">{{ trackArtist }}</span>
</a>
<div ng-controller="PlayerSeekbarController">
Expand Down

0 comments on commit ccf886f

Please sign in to comment.