Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
Merge branch 'dev'

Conflicts:
	README.md
  • Loading branch information
Zé Bateira committed May 6, 2014
2 parents df03e0a + e75406b commit 3729629
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ These are the contents of the script:
```sh
$ mkdir ~/Spotify ; cd ~/Spotify
$ rm -rf rama
$ rm rama_v0.9.tar.gz
$ curl https://github.com/carsy/rama-spotify/releases/download/v0.9/rama_v0.9.tar.gz
$ tar -xvf rama_v0.9.tar.gz
$ rm rama_v0.9.1.tar.gz
$ curl https://github.com/carsy/rama-spotify/releases/download/v0.9.1/rama_v0.9.1.tar.gz
$ tar -xvf rama_v0.9.1.tar.gz
$ open spotify:app:rama
```

Expand Down Expand Up @@ -64,6 +64,9 @@ With no official release for the Spotify Desktop Client, there's nothing I can d
[Releases]
----

[v0.9.1] - Expand button bugfix
- expand button shown after expand.

[v0.9] - Exploring the graph
- Expand control button added.

Expand Down Expand Up @@ -118,6 +121,7 @@ José Bateira
[here]:https://github.com/carsy/rama-spotify/releases/latest
[Releases]:https://github.com/carsy/rama-spotify/releases/latest
[issues]:https://github.com/carsy/rama-spotify/issues
[v0.9.1]:https://github.com/carsy/rama-spotify/releases/tag/v0.9.1
[v0.9]:https://github.com/carsy/rama-spotify/releases/tag/v0.9
[v0.8]:https://github.com/carsy/rama-spotify/releases/tag/v0.8
[v0.6]:https://github.com/carsy/rama-spotify/releases/tag/v0.6
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

version="v0.9"
version="v0.9.1"

mkdir ~/Spotify ; cd ~/Spotify
rm -rf rama-spotify
Expand Down
6 changes: 1 addition & 5 deletions js/controllers/artistmenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,6 @@ require([
this.updateView(node.artist);
},
onBtnExpandClick: function(event) {
// TODO expand node (depth one)
// try to save nodes positions
// then add nodes and edges
// create new graph with updated nodes and edges
// setPosition(savedPositions)

var node = _.findWhere(
this.graphcontroller.artistGraph.data.nodes, {
Expand All @@ -189,6 +184,7 @@ require([
border: '#7fb701',
background: '#313336'
};
node.isLeaf = false;

this.artist.load('related').done(this, function(artist) {
var rootArtist = artist;
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"track"
],
"BundleType": "Application",
"BundleVersion": "0.9",
"BundleVersion": "0.9.1",
"Dependencies": {
"api": "1.0.0",
"views": "1.0.0",
Expand Down

0 comments on commit 3729629

Please sign in to comment.