Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
svfusion
funkwhale
Commits
440c04b5
Verified
Commit
440c04b5
authored
Jan 07, 2018
by
Eliot Berriot
Browse files
Merge branch 'release/0.3.4'
parents
9ecb2bdf
83f3fddd
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
440c04b5
...
...
@@ -2,13 +2,17 @@ Changelog
=========
0.3.
4
(Unreleased)
0.3.
5
(Unreleased)
------------------
0.3.4 (2018-01-07)
------------------
- Fixed wrong URL construction in ajax call
0.3.4 (2018-01-07)
0.3.3 (2018-01-07)
------------------
- Users can now create their own dynamic radios (#51)
...
...
api/funkwhale_api/__init__.py
View file @
440c04b5
# -*- coding: utf-8 -*-
__version__
=
'0.3.
3
'
__version__
=
'0.3.
4
'
__version_info__
=
tuple
([
int
(
num
)
if
num
.
isdigit
()
else
num
for
num
in
__version__
.
replace
(
'-'
,
'.'
,
1
).
split
(
'.'
)])
front/src/components/library/radios/Filter.vue
View file @
440c04b5
...
...
@@ -112,8 +112,9 @@ export default {
selector
.
push
(
'
.autocomplete
'
)
settings
.
fields
=
f
.
autocomplete_fields
settings
.
minCharacters
=
1
let
backendUrl
=
config
.
BACKEND_URL
||
window
.
location
.
protocol
+
'
//
'
+
window
.
location
.
hostname
+
'
:
'
+
window
.
location
.
port
settings
.
apiSettings
=
{
url
:
config
.
BACKEND_URL
+
f
.
autocomplete
+
'
?
'
+
f
.
autocomplete_qs
,
url
:
backendUrl
+
f
.
autocomplete
+
'
?
'
+
f
.
autocomplete_qs
,
beforeXHR
:
function
(
xhrObject
)
{
xhrObject
.
setRequestHeader
(
'
Authorization
'
,
self
.
$store
.
getters
[
'
auth/header
'
])
return
xhrObject
...
...
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