diff --git a/plasma/packagemetadata.cpp b/plasma/packagemetadata.cpp index c9ff4464..1738b6ea 100644 --- a/plasma/packagemetadata.cpp +++ b/plasma/packagemetadata.cpp @@ -51,7 +51,6 @@ class PackageMetadataPrivate QString type; QString serviceType; QString api; - KUrl location; }; PackageMetadata::PackageMetadata(const PackageMetadata &other) @@ -107,7 +106,6 @@ void PackageMetadata::write(const QString &filename) const config.writeEntry("X-Plasma-API", d->api); config.writeEntry("X-KDE-ParentApp", d->app); config.writeEntry("Type", d->type); - config.writeEntry("X-Plasma-RemoteLocation", d->location); } void PackageMetadata::read(const QString &filename) @@ -153,7 +151,6 @@ void PackageMetadata::read(const QString &filename) d->api = config.readEntry("X-Plasma-API", d->api); d->app = config.readEntry("X-KDE-ParentApp", d->app); d->type = config.readEntry("Type", d->type); - d->location = config.readEntry("X-Plasma-RemoteLocation", d->location); } QString PackageMetadata::name() const @@ -231,11 +228,6 @@ QString PackageMetadata::requiredVersion() const return d->requiredVersion; } -KUrl PackageMetadata::remoteLocation() const -{ - return d->location; -} - QString PackageMetadata::type() const { return d->type; @@ -316,11 +308,6 @@ void PackageMetadata::setRequiredVersion(const QString &requiredVersion) d->requiredVersion = requiredVersion; } -void PackageMetadata::setRemoteLocation(const KUrl &location) -{ - d->location = location; -} - void PackageMetadata::setType(const QString &type) { d->type = type; diff --git a/plasma/packagemetadata.h b/plasma/packagemetadata.h index b10f0e4f..25538c2c 100644 --- a/plasma/packagemetadata.h +++ b/plasma/packagemetadata.h @@ -91,7 +91,6 @@ public: QString requiredVersion() const; QString pluginName() const; QString implementationApi() const; - KUrl remoteLocation() const; QString type() const; @@ -178,11 +177,6 @@ public: */ void setRequiredVersion(const QString &); - /** - * Set the url where this package is hosted. - */ - void setRemoteLocation(const KUrl &); - /** * Set the type of the package. If not defined this * defaults to "Service" in the desktop file. diff --git a/plasma/version.h b/plasma/version.h index 00d487e5..02e8c023 100644 --- a/plasma/version.h +++ b/plasma/version.h @@ -28,12 +28,12 @@ * String version of libplasma version, suitable for use in * file formats or network protocols */ -#define PLASMA_VERSION_STRING "3.3.0" +#define PLASMA_VERSION_STRING "4.17.0" /// @brief Major version of libplasma, at compile time -#define PLASMA_VERSION_MAJOR 3 +#define PLASMA_VERSION_MAJOR 4 /// @brief Minor version of libplasma, at compile time -#define PLASMA_VERSION_MINOR 3 +#define PLASMA_VERSION_MINOR 17 /// @brief Release version of libplasma, at compile time #define PLASMA_VERSION_RELEASE 0