Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Philipp Wolfer
funkwhale
Commits
7e8972a3
Verified
Commit
7e8972a3
authored
Apr 23, 2018
by
Eliot Berriot
Browse files
Version bump and Changelog
parent
bcc71280
Changes
17
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
7e8972a3
...
...
@@ -3,9 +3,42 @@ Changelog
.. towncrier
0.10 (
Unreleased
)
0.10 (
2018-04-23
)
-----------------
Features:
- Can now import files in-place from the CLI importer (#155)
Enhancements:
- Avoid downloading audio files multiple times from remote libraries (#163)
- Better file import performance and error handling (#144)
- Import job and batch API and front-end have been improved with better
performance, pagination and additional filters (#171)
- Increased max_length on TrackFile.source, this will help when importing files
with a really long path (#142)
- Player is back in Queue tab (#150)
Bugfixes:
- Fail graciously when AP representation includes a null_value for mediaType
- Fix sidebar tabs not showing under small resolution under Chrome (#173)
- Fixed broken login due to badly configured Axios (#172)
- Fixed broken playlist modal after login (#155)
- Fixed queue reorder or track deletion restarting currently playing track
(#151)
- Radio will now append new track if you delete the last track in queue (#145)
- Reset all sensitive front-end data on logout (#124)
- Typos/not showing text due to i18n work (#175)
Documentation:
- Better documentation for hardware requirements and memory usage (#165)
In-place import
^^^^^^^^^^^^^^^
...
...
@@ -14,8 +47,9 @@ This release includes in-place imports for the CLI import. This means you can
load gigabytes of music into funkwhale without worrying about about Funkwhale
copying those music files in its internal storage and eating your disk space.
This new feature is documented <here> and require additional configuration
to ensure funkwhale and your webserver can serve those files properly.
`This new feature is documented here <https://docs.funkwhale.audio/importing-music.html#in-place-import>`_
and require additional configuration to ensure funkwhale and your webserver can
serve those files properly.
**Non-docker users:**
...
...
@@ -45,7 +79,9 @@ Assuming you have the following volume directive in your ``docker-compose.yml``
(it's the default): ``/srv/funkwhale/data/music:/music:ro``, then add
the following to your .env file::
# this is the path in the container
MUSIC_DIRECTORY_PATH=/music
# this is the path on the host
MUSIC_DIRECTORY_SERVE_PATH=/srv/funkwhale/data/music
...
...
api/funkwhale_api/__init__.py
View file @
7e8972a3
# -*- coding: utf-8 -*-
__version__
=
'0.
9.
1'
__version__
=
'0.1
0
'
__version_info__
=
tuple
([
int
(
num
)
if
num
.
isdigit
()
else
num
for
num
in
__version__
.
replace
(
'-'
,
'.'
,
1
).
split
(
'.'
)])
changes/changelog.d/124.bugfix
deleted
100644 → 0
View file @
bcc71280
Reset all sensitive front-end data on logout (#124)
changes/changelog.d/142.enhancement
deleted
100644 → 0
View file @
bcc71280
Increased max_length on TrackFile.source, this will help when importing files with a really long path (#142)
changes/changelog.d/144.enhancement
deleted
100644 → 0
View file @
bcc71280
Better file import performance and error handling (#144)
changes/changelog.d/145.bugfix
deleted
100644 → 0
View file @
bcc71280
Radio will now append new track if you delete the last track in queue (#145)
changes/changelog.d/150.enhancement
deleted
100644 → 0
View file @
bcc71280
Player is back in Queue tab (#150)
changes/changelog.d/151.bugfix
deleted
100644 → 0
View file @
bcc71280
Fixed queue reorder or track deletion restarting currently playing track (#151)
changes/changelog.d/153.feature
deleted
100644 → 0
View file @
bcc71280
C
an
now import files in-place from the CLI importe (#155)
changes/changelog.d/155.bugfix
deleted
100644 → 0
View file @
bcc71280
Fixed broken playlist modal after login (#155)
changes/changelog.d/163.enhancement
deleted
100644 → 0
View file @
bcc71280
Avoid downloading audio files multiple times from remote libraries (#163)
changes/changelog.d/165.doc
deleted
100644 → 0
View file @
bcc71280
Better documentation for hardware requirements and memory usage (#165)
changes/changelog.d/171.enhancement
deleted
100644 → 0
View file @
bcc71280
Import job and batch API and front-end have been improved with better performance,
pagination and additional filters (#171)
changes/changelog.d/172.bugfix
deleted
100644 → 0
View file @
bcc71280
Fixed broken login due to badly configured Axios (#172)
changes/changelog.d/173.bugfix
deleted
100644 → 0
View file @
bcc71280
Fix sidebar tabs not showing under small resolution under Chrome (#173)
changes/changelog.d/175.bugfix
deleted
100644 → 0
View file @
bcc71280
Typos/not showing text due to i18n work (#175)
changes/changelog.d/media-type.bugfix
deleted
100644 → 0
View file @
bcc71280
Fail graciously when AP representation includes a null_value for mediaType
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment