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
9d3b92bc
Verified
Commit
9d3b92bc
authored
Aug 21, 2018
by
Eliot Berriot
Browse files
Merge branch 'release/0.16.3'
parents
8a94806d
9875e81c
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
9d3b92bc
...
...
@@ -10,9 +10,25 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
.. towncrier
0.16.3 (2018-08-21)
-------------------
Upgrade instructions are available at
https://docs.funkwhale.audio/upgrading.html
Bugfixes:
- Fixed front-end not contacting the proper path on the API (!385)
0.16.2 (2018-08-21)
-------------------
.. warning::
**This release is broken, do not use it. Upgrade to 0.16.3 or higher instead.**
Upgrade instructions are available at
https://docs.funkwhale.audio/upgrading.html
...
...
api/funkwhale_api/__init__.py
View file @
9d3b92bc
# -*- coding: utf-8 -*-
__version__
=
"0.16.
2
"
__version__
=
"0.16.
3
"
__version_info__
=
tuple
(
[
int
(
num
)
if
num
.
isdigit
()
else
num
...
...
front/src/App.vue
View file @
9d3b92bc
...
...
@@ -127,6 +127,9 @@ export default {
if
(
!
this
.
$store
.
state
.
instance
.
instanceUrl
)
{
let
defaultInstanceUrl
=
process
.
env
.
VUE_APP_INSTANCE_URL
||
this
.
$store
.
getters
[
'
instance/defaultUrl
'
]()
this
.
$store
.
commit
(
'
instance/instanceUrl
'
,
defaultInstanceUrl
)
}
else
{
// needed to trigger initialization of axios
this
.
$store
.
commit
(
'
instance/instanceUrl
'
,
this
.
$store
.
state
.
instance
.
instanceUrl
)
}
this
.
$store
.
dispatch
(
'
auth/check
'
)
this
.
$store
.
dispatch
(
'
instance/fetchSettings
'
)
...
...
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