Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
Merge branch 'dev'
  • Loading branch information
Zé Bateira committed Jun 16, 2014
2 parents b7ffff4 + 571f9e4 commit eb93f31
Show file tree
Hide file tree
Showing 83 changed files with 4,628 additions and 1,193 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ RAMA - Relational Artist MAps

RAMA is a Spotify Application for visualizing and interacting with networks of music artists. For the original RAMA web application see [rama.inescporto.pt]

Here are some previews of what this app does:

![Demo](demo2.gif)
![Demo 2](demo.gif)

For now, I do not intend to make this application available on the Spotify App Store, so to run it you need to set it up first.

To open a downloaded app you need to **Activate Spotify Developer account** here: https://devaccount.spotify.com/my-account (no premium account needed).
Expand Down Expand Up @@ -31,9 +36,9 @@ These are the contents of the script:
```sh
$ mkdir ~/Spotify ; cd ~/Spotify
$ rm -rf rama
$ rm rama_v1.0.tar.gz
$ curl -L -O https://github.com/carsy/rama-spotify/releases/download/v1.0/rama_v1.0.tar.gz
$ tar -xvf rama_v1.0.tar.gz
$ rm rama_v1.0.1.tar.gz
$ curl -L -O https://github.com/carsy/rama-spotify/releases/download/v1.0.1/rama_v1.0.1.tar.gz
$ tar -xvf rama_v1.0.1.tar.gz
```

You should now be in the app and seeing a graph thingy.
Expand All @@ -56,9 +61,17 @@ You should now be in the app and seeing a graph thingy.

If not, restart Spotify and then open the app by typing spotify:app:rama in the search bar.

Thank you for testing!

!(just dancing)[dance2.gif]

[Releases]
----

[v1.0.1] - "Equalizer" bar hidden
- bugfixes: #61 and #48
- added checkbox for hidding/showing the "equalizer" bar - it causes Spotify to crash.

[v1.0] - 1.0
- feedback button added
- echonest "powered by" logo added
Expand Down Expand Up @@ -140,6 +153,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
[v1.0.1]:https://github.com/carsy/rama-spotify/releases/tag/v1.0.1
[v1.0]:https://github.com/carsy/rama-spotify/releases/tag/v1.0
[v0.11]:https://github.com/carsy/rama-spotify/releases/tag/v0.11
[v0.10.6]:https://github.com/carsy/rama-spotify/releases/tag/v0.10.6
Expand Down
7 changes: 4 additions & 3 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -422,16 +422,17 @@ a {
/* line 73, ../sass/_settings.scss */
#settings #settings_form .option input {
padding: 2px;
width: 30px;
max-width: 30px;
float: right;
background-color: #222326;
border-width: 1px;
border-color: #3e3e40;
}
/* line 81, ../sass/_settings.scss */
#settings #settings_form .option input[name=treemode] {
#settings #settings_form .option input[type=checkbox] {
margin-top: 5px;
margin-left: 5px;
float: left;
}

/* line 1, ../sass/_eqbar.scss */
Expand Down Expand Up @@ -516,7 +517,7 @@ a {
z-index: 1;
position: absolute;
left: 0;
top: 110px;
top: 15%;
width: 126px;
opacity: 0.9;
background-color: #222326;
Expand Down
Binary file added dance.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dance2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions deliverables/abstracts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc

## Intermediate documents:
*.dvi
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf

## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml

## Build tool auxiliary files:
*.fdb_latexmk
*.synctex.gz
*.pdfsync

## Auxiliary and intermediate files from other packages:

# algorithms
*.alg
*.loa

# amsthm
*.thm

# beamer
*.nav
*.snm
*.vrb

# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls

# hyperref
*.brf

# listings
*.lol

# makeidx
*.idx
*.ilg
*.ind
*.ist

# minitoc
*.maf
*.mtc
*.mtc0

# minted
*.pyg

# nomencl
*.nlo

# todonotes
*.tdo

# xindy
*.xdy
# workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project
15 changes: 15 additions & 0 deletions deliverables/abstracts/LEIAME.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Este arquivo contém exemplos para escrita dos resumos requeridos pelo
MIEIC:
- resumo-pt.tex - junto com a Makefile produz resumo-pt.pdf
- Makefile - para ser usada com o pdflatex
- resumo-pt.pdf - resultado final em PDF
- para a versão em Inglês é necessário alterar a Makefile, o .tex
nos sítios assinalados e, obviamente, o texto
- os ficheiros usam a codificação UTF-8; para outras codificações
é necessário alterar \usepackage[utf8]{inputenc} para a codificação
usada.
- é necessário usar uma versão recente do pacote caption (por exemplo,
procurar no CTAN uma com "\ProvidesPackage{caption}[2008/08/24 v3.1j",
ou mais recente

JCL, Mon Jul 6 23:39:47 2009
97 changes: 97 additions & 0 deletions deliverables/abstracts/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
#
# Makefile for feupteses/feupthesis
#
# Version: Sat May 17 22:36:50 2008
# Written by JCL
#

# orelse
#
# la­texmk com­pletely au­to­mates the pro­cess of gen­er­at­ing a LaTeX doc­u­ment.
# Given the source files for a doc­u­ment, la­texmk is­sues the ap­pro­pri­ate
# se­quence of com­mands to gen­er­ate a .dvi, .ps, .pdf or hard­copy ver­sion
# of the doc­u­ment
#
# latexmk $TARGET.tex -bibtex -pdf -recorder -pvc

## Basename for result in PT
#TARGET=resumo

## Basename for result in EN
TARGET=abstract

## programs
LATEX=latex
PDFLATEX=pdflatex
BIBTEX=bibtex
DVIDVI=dvidvi -m '2:0(3mm,-14mm),1(193mm,-14mm)'
DVIPS=dvips -Ppdf
DVI2PS=dvips -t landscape -x 707
PS2PDF=ps2pdf -dEmbedAllFonts#true
MKIDX=makeindex

## .tex files
TEXFILES=$(wildcard *.tex **/*.tex)

## BibTeX files
BIB=$(wildcard *.bib)

## paper
PAPERSIZE=a4

main: $(TARGET).pdf

index:
$(MKIDX) $(TARGET)

biblio:
$(BIBTEX) $(TARGET)

.tex.pdf:
rm -f $(TARGET).pdf
$(PDFLATEX) $< $@ || { rm -f $*.aux $*.idx && false ; }
if grep 'There were undefined references' $*.log ; then \
$(BIBTEX) $(TARGET); $(PDFLATEX) $< $@; fi
while grep 'Rerun to get cross-references right.' $*.log ; do \
$(PDFLATEX) $< $@ || { rm -f $*.aux $*.idx && false ; } ; done

.tex.dvi:
rm -f $*.ps $*.pdf
$(LATEX) $< || { rm -f $*.dvi $*.aux $*.idx && false ; }
if grep 'There were undefined references' $*.log ; then \
$(BIBTEX) $(TARGET); $(LATEX) $< $@; fi
while grep 'Rerun to get cross-references right.' $*.log ; do \
$(LATEX) $< || { rm -f $*.dvi $*.aux $*.idx && false ; } ; done

.dvi.ps:
$(DVIPS) -t $(PAPERSIZE) $< -o $@

.dvi.dvi2:
$(DVIDVI) $< $@

.dvi2.ps2:
$(DVI2PS) $< -o $@

.ps.pdf:
$(PS2PDF) $< $@

$(TARGET).pdf: $(TEXFILES)
$(TARGET).dvi: $(TEXFILES)
$(TARGET).ps: $(TARGET).dvi
$(TARGET).ps2: $(TARGET).dvi2
$(TARGET).dvi2: $(TARGET).dvi

## Extensions
EXTS=aux toc idx ind ilg log out lof lot lol bbl blg

##clean
clean:
for EXT in ${EXTS}; do \
find `pwd` -name \*\.$${EXT} -exec rm -v \{\} \; ; done

##show PDF
display: $(TARGET).pdf
acroread $(TARGET).pdf &

### misc
.SUFFIXES: .tex .aux .toc .lof .lot .log .dvi .dvi2 .ps .ps2 .pdf .bib .bbl
Binary file added deliverables/abstracts/abstract-pt.pdf
Binary file not shown.
Loading

0 comments on commit eb93f31

Please sign in to comment.