Compare commits
10 Commits
b5c6b4d528
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| ec2142da13 | |||
| 5dfd8550c0 | |||
| 7467117179 | |||
| 56a21e3136 | |||
| 55ed00211b | |||
| 5db515d9f9 | |||
| e06678c6a8 | |||
| 9b33d61556 | |||
| 85736c4892 | |||
| 5646dcd0ba |
@@ -1,3 +1,7 @@
|
||||
# AllRadio2
|
||||
|
||||
A new version of AllRadio (An internet radio player)
|
||||
|
||||
Thank you to:
|
||||
|
||||
Carmen for the Spanish translation and some bug tracking! :-)
|
||||
|
||||
@@ -22,7 +22,6 @@ DISTFILES += qml/harbour-allradio2.qml \
|
||||
LICENSE \
|
||||
README.md \
|
||||
qml/cover/CoverPage.qml \
|
||||
qml/pages/SecondPage.qml \
|
||||
rpm/harbour-allradio2.changes.in \
|
||||
rpm/harbour-allradio2.changes.run.in \
|
||||
rpm/harbour-allradio2.spec \
|
||||
|
||||
@@ -17,7 +17,7 @@ import QtQuick 2.0
|
||||
import "../models"
|
||||
|
||||
Item {
|
||||
property string _useragent: "AllRadio/2.0.0 (test) (SailfishOS; Linux) nesnomis@gmail.com"
|
||||
property string _useragent: "AllRadio/2 (SailfishOS; Linux) nesnomis@gmail.com"
|
||||
property int _tags: 0
|
||||
property int _countries: 0
|
||||
property int _c: 0
|
||||
|
||||
@@ -212,6 +212,7 @@ MediaPlayer {
|
||||
|
||||
function pauseStream() {
|
||||
isPlaying = false
|
||||
isPaused = true
|
||||
source = ""
|
||||
stop()
|
||||
}
|
||||
|
||||
@@ -4,7 +4,6 @@ import Sailfish.Silica 1.0
|
||||
Page {
|
||||
Flickable {
|
||||
id: flick
|
||||
//width:parent.width
|
||||
height: parent.height - Theme.paddingLarge * 3
|
||||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
@@ -23,7 +22,6 @@ Page {
|
||||
font.bold: true
|
||||
text: "AllRadio2 v"+ _version
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
||||
}
|
||||
|
||||
Text {
|
||||
@@ -31,12 +29,9 @@ Page {
|
||||
font.pixelSize: Theme.fontSizeMedium
|
||||
color: Theme.primaryColor
|
||||
linkColor: Theme.highlightColor
|
||||
//wrapMode: TextEdit.WordWrap
|
||||
//verticalAlignment: Text.Center
|
||||
horizontalAlignment: Text.Center
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
onLinkActivated: Qt.openUrlExternally(link)
|
||||
// text: qsTr("License: <a href='file:///gpl-2.0-standalone.html'>GPLv2</a>")
|
||||
text: qsTr("License: GPLv2")
|
||||
}
|
||||
|
||||
@@ -58,7 +53,7 @@ Page {
|
||||
wrapMode: TextEdit.WordWrap
|
||||
verticalAlignment: Text.AlignLeft
|
||||
onLinkActivated: Qt.openUrlExternally(link)
|
||||
text: "<p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
text: qsTr("<p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
@@ -66,7 +61,7 @@ Page {
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>."
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
import QtQuick 2.0
|
||||
import Sailfish.Silica 1.0
|
||||
|
||||
Page {
|
||||
id: page
|
||||
|
||||
// The effective value will be restricted by ApplicationWindow.allowedOrientations
|
||||
allowedOrientations: Orientation.All
|
||||
|
||||
SilicaListView {
|
||||
id: listView
|
||||
model: 20
|
||||
anchors.fill: parent
|
||||
header: PageHeader {
|
||||
title: qsTr("Nested Page")
|
||||
}
|
||||
delegate: BackgroundItem {
|
||||
id: delegate
|
||||
|
||||
Label {
|
||||
x: Theme.horizontalPageMargin
|
||||
text: qsTr("Item") + " " + index
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
color: delegate.highlighted ? Theme.highlightColor : Theme.primaryColor
|
||||
}
|
||||
onClicked: console.log("Clicked " + index)
|
||||
}
|
||||
VerticalScrollDecorator {}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,14 @@
|
||||
Name: harbour-allradio2
|
||||
|
||||
Summary: AllRadio2
|
||||
Version: 2.0.23
|
||||
Version: 2.0.25
|
||||
Release: 1
|
||||
License: LICENSE
|
||||
URL: http://example.org/
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Requires: sailfishsilica-qt5 >= 0.10.9
|
||||
Requires: qt5-qtdeclarative-import-xmllistmodel
|
||||
Requires: qml(Amber.Mpris)
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: pkgconfig(sailfishapp) >= 1.0.2
|
||||
BuildRequires: pkgconfig(Qt5Quick)
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -4,10 +4,23 @@
|
||||
<context>
|
||||
<name>AboutPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="40"/>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="35"/>
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/AboutPage.qml" line="56"/>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1549,19 +1562,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="15"/>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/SecondPage.qml" line="22"/>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
@@ -7,6 +7,18 @@
|
||||
<source>License: GPLv2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><p>This is version 2 of my old app AllRadio. It fixes the API changes made a couple of years ago in <a href='https://api.radio-browser.info/'>Radio Browser</a>.</p>
|
||||
<p>What i have done (for now):<p>
|
||||
<ul>
|
||||
<li>Cleaned up the code.</li>
|
||||
<li>Included some old requests.</li>
|
||||
<li>Added a simple tv station video player.</li></ul>
|
||||
|
||||
<p>It is propably buggy and lacking of some functions, but i will try to update and fix it when i find the time for it.</p>
|
||||
<p>For now, the source code is hosted on this <a href='http://gitea.nesnomis.nu/nesnomis/harbour-allradio2'>git server</a>.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AllRadio</name>
|
||||
@@ -1236,17 +1248,6 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SecondPage</name>
|
||||
<message>
|
||||
<source>Nested Page</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Item</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsPage</name>
|
||||
<message>
|
||||
|
||||
Reference in New Issue
Block a user