SimpleMPC is a simple MPD client for Firefox OS.

SimpleMPC is a Free Software.
http://hg.user1.be/simplempc/

This is a development version. So, be aware it's unstable.

You can contribute to it:
http://tracker.user1.be/SimpleMPC/

Licence
=======

SimpleMPC is released under GPLv3.

Privacy
=======

SimpleMPC stores the connection informations of your MPD instance.

It doesn't share any personal informations.

Contact
=======

pumpkin <pumpkin@mailoo.org>

Dev in Firefox
==============

1/ Activate TCPSocket
    - Open "about:config" in the browser.
    - Right-click anywhere in the config setting listing, and choose "New", "Boolean" from the context menu.
    - Enter "dom.mozTCPSocket.enabled" in the "Enter the preference name" box and click the "OK" button.
    - Select "true" on the next dialog box and click the "OK" button.

2/ In error console (CTRL + SHIFT + J), add permissions tcp-socket :

    host = '(http|file)://host/index.html';
    perm = Components.classes["@mozilla.org/permissionmanager;1"].createInstance(Components.interfaces.nsIPermissionManager);
    ios = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
    uri = ios.newURI(host, null, null);
    perm.add(uri, 'tcp-socket', 1);
    'Successfully added tcp-socket permissions for ' + host;
