Initial commit (new git name)

This commit is contained in:
Niels
2025-07-14 17:08:05 +02:00
commit 5c111601d7
338 changed files with 28160 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
import QtQuick 2.0
ListModel {
ListElement {
name: "Name"
description: "Search by name"
icon: "../images/bysearch_t.png"
page: "SearchStationsPage.qml"
}
ListElement {
name: "Countries"
description: "Search by tag"
icon: "../images/bycountry_t.png"
page: "CountryListPage.qml"
}
/* ListElement {
name: "New/Changed"
description: "View by new/changed"
icon: "../images/bylatest_t.png"
page: "CrNewChangedPage.qml"
}
ListElement {
name: "Recently played"
description: "View by recently played"
icon: "../images/lastplayed_t.png"
page: "CrRecentPlayedPage.qml"
}
ListElement {
name: "Most votes"
description: "View by most votes"
icon: "../images/byvote_t.png"
page: "CrTopVotedPage.qml"
}
ListElement {
name: "Most Played"
description: "Viwe by most played"
icon: "../images/mostclicked_t.png"
page: "CrMostPlayedPage.qml"
}*/
}