From 604f897571668e09646920c63bc6a8e7bf6940c7 Mon Sep 17 00:00:00 2001 From: Krateng Date: Fri, 17 May 2019 15:05:17 +0200 Subject: [PATCH] Minor visual improvements --- README.md | 8 ++++---- maloja | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 42bce5b..2f7a303 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,7 @@ Simple self-hosted music scrobble database to create personal listening statisti You can check [my own Maloja page](https://maloja.krateng.ch) to see what it looks like. -## Never Asked Questions - -### Why not Last.fm / Libre.fm / GNU FM? +## Why not Last.fm / Libre.fm / GNU FM? Maloja is **self-hosted**. You will always be able to access your data in an easily-parseable format. Your library is not synced with any public or official music database, so you can **follow your own tagging schema** or even **group associated artists together** in your charts. @@ -84,8 +82,10 @@ API URL | Your Maloja URL followed by `/api/s/listenbrainz` Username | Any name, doesn't matter Auth Token | Any of your API keys +These are tested with the Pano Scrobbler and the Simple Last.fm Scrobbler for Android. I'm thankful for any feedback whether other scrobblers work! + It is recommended to define a different API key for every scrobbler you use in `clients/authenticated_machines.tsv` in your Maloja folder. ### Manual -If you can't automatically scrobble your music, you can always do it manually on the `/manual` page of your Maloja server. +If you can't automatically scrobble your music, you can always do it manually on the `/manual` page of your Maloja server. diff --git a/maloja b/maloja index 37bf120..e9f5d1f 100755 --- a/maloja +++ b/maloja @@ -64,14 +64,14 @@ def setup(): for k in apikeys: key = settings.get_settings(k) if key is None: - print("Currently not using a " + apikeys[k] + " for image display.") + print("\t" + "Currently not using a " + apikeys[k] + " for image display.") elif key == "ASK": - print("Please enter your " + apikeys[k] + ". If you do not want to use one at this moment, simply leave this empty and press Enter.") + print("\t" + "Please enter your " + apikeys[k] + ". If you do not want to use one at this moment, simply leave this empty and press Enter.") key = input() if key == "": key = None settings.update_settings("settings/settings.ini",{k:key},create_new=True) else: - print(apikeys[k] + " found.") + print("\t" + apikeys[k] + " found.") # OWN API KEY