Skip to content
Snippets Groups Projects
  1. Apr 06, 2018
  2. Apr 05, 2018
  3. Apr 04, 2018
  4. Apr 03, 2018
  5. Apr 02, 2018
    • Eliot Berriot's avatar
    • Eliot Berriot's avatar
    • Eliot Berriot's avatar
      Merge tag '0.8' into develop · fba9a5c9
      Eliot Berriot authored
      0.8 (2018-04-02)
      ----------------
      
      Features:
      
      - Add a detail page for radios (#64)
      - Implemented page title binding (#1)
      - Previous Track button restart playback after 3 seconds (#146)
      
      Enhancements:
      
      - Added credits to Francis Gading for the logotype (#101)
      - API endpoint for fetching instance activity and updated timeline to use this
        new endpoint (#141)
      - Better error messages in case of missing environment variables (#140)
      - Implemented a @test@yourfunkwhaledomain bot to ensure federation works
        properly. Send it "/ping" and it will answer back :)
      - Queue shuffle now apply only to tracks after the current one (#97)
      - Removed player from queue tab and consistently show current track in queue
        (#131)
      - We now restrict some usernames from being used during signup (#139)
      
      Bugfixes:
      
      - Better error handling during file import (#120)
      - Better handling of utf-8 filenames during file import (#138)
      - Converted favicon from .ico to .png (#130)
      - Upgraded to Python 3.6 to fix weird but harmless weakref error on django task
        (#121)
      
      Documentation:
      
      - Documented the upgrade process (#127)
      
      Preparing for federation
      ^^^^^^^^^^^^^^^^^^^^^^^^
      
      Federation of music libraries is one of the most asked feature.
      While there is still a lot of work to do, this version includes
      the foundation that will enable funkwhale servers to communicate
      between each others, and with other federated software, such as
      Mastodon.
      
      Funkwhale will use ActivityPub as it's federation protocol.
      
      In order to prepare for federation (see #136 and #137), new API endpoints
      have been added under /federation and /.well-known/webfinger.
      
      For these endpoints to work, you will need to update your nginx configuration,
      and add the following snippets::
      
          location /federation/ {
              include /etc/nginx/funkwhale_proxy.conf;
              proxy_pass   http://funkwhale-api/federation/;
          }
      
          location /.well-known/webfinger {
              include /etc/nginx/funkwhale_proxy.conf;
              proxy_pass   http://funkwhale-api/.well-known/webfinger;
          }
      
      This will ensure federation endpoints will be reachable in the future.
      You can of course skip this part if you know you will not federate your instance.
      
      A new ``FEDERATION_ENABLED`` env var have also been added to control wether
      federation is enabled or not on the application side. This settings defaults
      to True, which should have no consequencies at the moment, since actual
      federation is not implemented and the only available endpoints are for
      testing purposes.
      
      Add ``FEDERATION_ENABLED=false`` to your .env file to disable federation
      on the application side.
      
      The last step involves generating RSA private and public keys for signing
      your instance requests on the federation. This can be done via::
      
          # on docker setups
          docker-compose run --rm api python manage.py generate_keys --no-input
      
          # on non-docker setups
          source /srv/funkwhale/virtualenv/bin/activate
          source /srv/funkwhale/load_env
          python manage.py generate_keys --no-input
      
      To test and troobleshoot federation, we've added a bot account. This bot is available at @test@yourinstancedomain,
      and sending it "/ping", for example, via Mastodon, should trigger
      a response.
      Verified
      fba9a5c9
    • Eliot Berriot's avatar
      Merge branch 'release/0.8' · 78d0de0e
      Eliot Berriot authored
    • Eliot Berriot's avatar
      Version bump and Changelog · 1a5b7ed2
      Eliot Berriot authored
      Verified
      1a5b7ed2
    • Eliot Berriot's avatar
      Removed factory import · 28700270
      Eliot Berriot authored
      Verified
      28700270
    • Eliot Berriot's avatar
      Merge branch 'federation-inbox' into 'develop' · 7bb15a3a
      Eliot Berriot authored
      Federation inbox
      
      See merge request funkwhale/funkwhale!121
      7bb15a3a
    • Eliot Berriot's avatar
      Use redis in CI · 76c1abe9
      Eliot Berriot authored
      Verified
      76c1abe9
    • Eliot Berriot's avatar
      Changelog · dcb3335c
      Eliot Berriot authored
      Verified
      dcb3335c
    • Eliot Berriot's avatar
      Fixed broken CI · 4f50eb50
      Eliot Berriot authored
      Verified
      4f50eb50
    • Eliot Berriot's avatar
      Fixed failing test · 77c6bd58
      Eliot Berriot authored
      Verified
      77c6bd58
    • Eliot Berriot's avatar
  6. Apr 01, 2018
  7. Mar 31, 2018
Loading