~ubuntu-branches/ubuntu/precise/minirok/precise

« back to all changes in this revision

Viewing changes to README.Lastfm

  • Committer: Bazaar Package Importer
  • Author(s): Adeodato Simó
  • Date: 2009-10-15 02:29:11 UTC
  • mfrom: (1.1.7 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20091015022911-b7ldmlf9lkcoph1g
Tags: 2.1-1
* New upstream release:
  + allows to enqueue/dequeue tracks with a shortcut. (Closes: #507484)
  + does not segfault when using File-Open directory if no directory has
    ever been opened in the tree view. (Closes: #544230, #549538)
  + does not crash on startup due to an incompatible change in PyQt 4.6.
    (Closes: #548570)

* debian/control:
  + add python-psutil to Recommends.
  + bump required Python version to 2.5.
  + ensure json or simplejson are available.
  + drop lastfmsubmitd from Suggests (submissions are done by Minirok
    itself now).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Submitting played tracks to Last.fm
2
 
===================================
3
 
 
4
 
Minirok can submit played tracks to Last.fm if the program "lastfmsubmitd"
5
 
is installed. If you get stuck configuring it, here's a simple recipe to
6
 
have it running in one minute, for lastfmsubmitd 1.0.4 or later (see below
7
 
for older versions):
8
 
 
9
 
    % mkdir -p ~/.lastfmsubmitd/spool
10
 
    % cat >~/.lastfmsubmitd/conf
11
 
    [account]
12
 
    user = you
13
 
    password = XXX
14
 
 
15
 
    % chmod 600 ~/.lastfmsubmitd/conf
16
 
    % ln -s /usr/bin/lastfmsubmitd ~/.kde/Autostart
17
 
 
18
 
The ~/.kde/Autostart bit is just a mechanism to make the daemon start
19
 
with your KDE session. You can use any other method you like, eg. cron,
20
 
or just start it by hand when you see fit.
21
 
 
22
 
 
23
 
If you're using lastfmsubmitd 1.0.1 or older
24
 
--------------------------------------------
25
 
 
26
 
If your lastfmsubmitd is 1.0.1 or older, you'll need to configure some
27
 
paths explicitly. Append this to your conf file:
28
 
 
29
 
    [paths]
30
 
    log = /home/you/.lastfmsubmitd/log
31
 
    spool = /home/you/.lastfmsubmitd/spool
32
 
    pidfile = /home/you/.lastfmsubmitd/pid
33
 
 
34
 
Also, you need to symlink your conf file as ~/.lastfmsubmitd.conf:
35
 
 
36
 
    % ln -s ~/.lastfmsubmitd/conf ~/.lastfmsubmitd.conf
37
 
 
38
 
 
39
 
If you're using lastfmsubmitd 1.0.2 or 1.0.3
40
 
--------------------------------------------
41
 
 
42
 
If you're using lastfmsubmitd 1.0.2 or 1.0.3, please upgrade to 1.0.4.
43
 
These versions have some undesirable behavior and are not supported.