Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paul Walko
funkwhale
Commits
9d3b92bc
Verified
Commit
9d3b92bc
authored
6 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Plain Diff
Merge branch 'release/0.16.3'
parents
8a94806d
9875e81c
No related branches found
Branches containing commit
Tags
0.9
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+16
-0
16 additions, 0 deletions
CHANGELOG
api/funkwhale_api/__init__.py
+1
-1
1 addition, 1 deletion
api/funkwhale_api/__init__.py
front/src/App.vue
+3
-0
3 additions, 0 deletions
front/src/App.vue
with
20 additions
and
1 deletion
CHANGELOG
+
16
−
0
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
...
...
This diff is collapsed.
Click to expand it.
api/funkwhale_api/__init__.py
+
1
−
1
View file @
9d3b92bc
# -*- coding: utf-8 -*-
__version__
=
"
0.16.
2
"
__version__
=
"
0.16.
3
"
__version_info__
=
tuple
(
[
int
(
num
)
if
num
.
isdigit
()
else
num
...
...
This diff is collapsed.
Click to expand it.
front/src/App.vue
+
3
−
0
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
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment