Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
sailfish-apps
Received
Commits
b28f0a68
Commit
b28f0a68
authored
Oct 22, 2017
by
kempe
Browse files
Forgotten Path changes for previous commit
Signed-off-by:
kempe
<
l.f.kempe@gmail.com
>
parent
85308bc6
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
9 deletions
+13
-9
qml/components/RadioAPI.qml
qml/components/RadioAPI.qml
+2
-2
qml/components/audioplayer/DockedAudioPlayer.qml
qml/components/audioplayer/DockedAudioPlayer.qml
+3
-3
qml/components/audioplayer/DockedAudioPlayerForm.ui.qml
qml/components/audioplayer/DockedAudioPlayerForm.ui.qml
+1
-0
qml/components/contextmenus/StationsListContextMenu.qml
qml/components/contextmenus/StationsListContextMenu.qml
+1
-1
qml/harbour-received.qml
qml/harbour-received.qml
+2
-1
qml/pages/BrowseByCategoryPage.qml
qml/pages/BrowseByCategoryPage.qml
+1
-1
qml/pages/FavoritesPageForm.ui.qml
qml/pages/FavoritesPageForm.ui.qml
+1
-0
qml/pages/StationsPageForm.ui.qml
qml/pages/StationsPageForm.ui.qml
+2
-1
No files found.
qml/components/RadioAPI.qml
View file @
b28f0a68
...
...
@@ -55,8 +55,8 @@ Python {
console
.
log
(
"
Number of results:
"
,
response
.
length
)
mList
.
clear
()
response
.
forEach
(
function
(
category
)
{
mList
.
append
({
title
:
category
})
response
.
forEach
(
function
(
title
)
{
mList
.
append
({
title
:
title
,
category
:
cat
})
});
loading
=
false
...
...
qml/components/audioplayer/DockedAudioPlayer.qml
View file @
b28f0a68
import
QtQuick
2.6
import
Sailfish
.
Silica
1.0
import
"
./js/Storage.js
"
as
DB
import
"
./js/Favorites.js
"
as
FavoritesUtils
import
"
./js/Utils.js
"
as
Utils
import
"
.
.
/js/Storage.js
"
as
DB
import
"
.
.
/js/Favorites.js
"
as
FavoritesUtils
import
"
.
.
/js/Utils.js
"
as
Utils
DockedAudioPlayerForm
{
id
:
player
...
...
qml/components/audioplayer/DockedAudioPlayerForm.ui.qml
View file @
b28f0a68
import
QtQuick
2.6
import
Sailfish
.
Silica
1.0
import
"
../
"
DockedPanel
{
id
:
player
...
...
qml/components/contextmenus/StationsListContextMenu.qml
View file @
b28f0a68
import
QtQuick
2.6
import
Sailfish
.
Silica
1.0
import
"
js/Favorites.js
"
as
FavoritesUtils
import
"
../
js/Favorites.js
"
as
FavoritesUtils
/**
* Context menu intended for use within StationsPage list
...
...
qml/harbour-received.qml
View file @
b28f0a68
...
...
@@ -3,6 +3,7 @@ import org.nemomobile.notifications 1.0
import
Sailfish
.
Silica
1.0
import
"
pages
"
import
"
components
"
import
"
components/audioplayer
"
as
Audio
import
"
./components/js/Storage.js
"
as
DB
import
"
./components/js/Utils.js
"
as
Utils
...
...
@@ -25,7 +26,7 @@ ApplicationWindow
id
:
favorites
}
DockedAudioPlayer
{
Audio.
DockedAudioPlayer
{
id
:
player
}
...
...
qml/pages/BrowseByCategoryPage.qml
View file @
b28f0a68
...
...
@@ -7,7 +7,7 @@ BrowseByCategoryPageForm {
browseByListView.onCurrentIndexChanged
:
{
var
item
=
browseByModel
.
get
(
browseByListView
.
currentIndex
)
pageStack
.
push
(
Qt
.
resolvedUrl
(
"
StationsPage.qml
"
),
{
listType
:
new
Utils
.
ListType
(
title
),
pageStack
.
push
(
Qt
.
resolvedUrl
(
"
StationsPage.qml
"
),
{
listType
:
new
Utils
.
ListType
(
item
.
title
),
category
:
item
.
category
,
value
:
item
.
title
});
}
...
...
qml/pages/FavoritesPageForm.ui.qml
View file @
b28f0a68
import
QtQuick
2.6
import
Sailfish
.
Silica
1.0
import
"
../components/
"
import
"
../components/contextmenus
"
Page
{
...
...
qml/pages/StationsPageForm.ui.qml
View file @
b28f0a68
import
QtQuick
2.6
import
Sailfish
.
Silica
1.0
import
"
../components
"
import
"
../components/contextmenus
"
as
ContextMenu
Page
{
...
...
@@ -61,7 +62,7 @@ Page {
stationCurrent
:
currentTrack
?
currentTrack
:
"
-
"
isPlaying
:
player
.
stationData
!==
undefined
&&
player
.
stationData
.
radIoId
==
id
menu
:
StationsListContextMenu
{
menu
:
ContextMenu.
StationsListContextMenu
{
id
:
contextMenu
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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