Skip to content

Commit 6500a8f

Browse files
committed
Initial commit
0 parents  commit 6500a8f

9 files changed

+92
-0
lines changed

.excludes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Makefile
2+
*.tmp
3+
.bzr
4+
.git
5+
po
6+

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.ubuntu-sdk-deploy
2+
*.user
3+
*.click

COPYING

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# The MIT License (MIT)
2+
Copyright (c) 2016 Nicolas Delvaux
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# uFip
2+
3+
This is a simple webapp to listen to the Fip radio on an Ubuntu phone/tablet/thing.
4+
5+
The main point of this webapp is that it supports background playback.
6+
This means that, contrary to the current default Web browser on the phone,
7+
you do not have to let the screen on and the application focused to prevent the stream interruption.
8+
9+
## Disclaimer
10+
11+
This application is **NOT** official. It is not supported by Fip or Radio France.
12+
13+
14+
## License
15+
16+
The MIT license (MIT).
17+
Please refer to the **COPYING** file.

manifest.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "ufip.malizor",
3+
"description": "Allow you to listen to the Fip radio. This application supports background playback.",
4+
"architecture": "all",
5+
"title": "A simple (unofficial) Fip radio webapp",
6+
"hooks": {
7+
"uFip": {
8+
"apparmor": "uFip.apparmor",
9+
"desktop": "uFip.desktop"
10+
}
11+
},
12+
"version": "0.1",
13+
"maintainer": "Nicolas Delvaux <[email protected]>",
14+
"framework": "ubuntu-sdk-15.04.4"
15+
}

uFip.apparmor

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"template": "ubuntu-webapp",
3+
"policy_groups": [
4+
"networking",
5+
"audio",
6+
"webview"
7+
],
8+
"policy_version": 1.3
9+
}

uFip.desktop

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[Desktop Entry]
2+
Name=uFip
3+
Comment=Unofficial webapp for the French "Fip" Radio.
4+
Comment[fr]=Application non-officielle pour la radio Fip.
5+
Type=Application
6+
Icon=uFip.png
7+
Exec=webapp-container --enable-media-hub-audio --webappUrlPatterns=http://www.fipradio.fr/* http://www.fipradio.fr/player %u
8+
Terminal=false
9+
X-Ubuntu-Touch=true
10+
X-Ubuntu-Default-Department-ID=sound-video
11+
X-Ubuntu-Single-Instance=true

uFip.png

17.4 KB
Loading

uFip.ubuntuhtmlproject

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import QmlProject 1.1
2+
3+
Project {
4+
mainFile: "uFip.desktop"
5+
6+
/* Include .qml, .js, and image files from current directory and subdirectories */
7+
/* QmlFiles {
8+
directory: "."
9+
}
10+
JavaScriptFiles {
11+
directory: "."
12+
}
13+
ImageFiles {
14+
directory: "."
15+
}
16+
*/ Files {
17+
filter: "*.desktop"
18+
}
19+
/* List of plugin directories passed to QML runtime */
20+
importPaths: [ "." ,"/usr/bin","/usr/lib/x86_64-linux-gnu/qt5/qml" ]
21+
}
22+
23+

0 commit comments

Comments
 (0)