Warning, /network/neochat/src/qml/OsmLocationPlugin.qml is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2021 Tobias Fella <fella@posteo.de> 0002 // SPDX-License-Identifier: GPL-2.0-or-later 0003 0004 pragma Singleton 0005 0006 import QtQuick 0007 import QtLocation 0008 0009 QtObject { 0010 property var plugin: Plugin { 0011 name: "osm" 0012 PluginParameter { 0013 name: "osm.useragent" 0014 value: Application.name + "/" + Application.version + " (kde-devel@kde.org)" 0015 } 0016 PluginParameter { 0017 name: "osm.mapping.providersrepository.address" 0018 value: "https://autoconfig.kde.org/qtlocation/" 0019 } 0020 } 0021 }