summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@qt.io>2016-10-25 10:00:30 +0300
committerIikka Eklund <iikka.eklund@qt.io>2016-10-25 10:00:34 +0300
commit9269a8262f8d7ed433c1b3b5d63ebc0608abae9f (patch)
tree796d16a1babf2224956e498811228a1ce843099e
parentae100e0e4f686e7bf22c198a7eb0ec77cd8cec4e (diff)
parentc1b54a0a7b6c34a348a8f30826c8fc2d4b62d615 (diff)
Merge remote-tracking branch 'origin/2.0'
-rw-r--r--Changelog9
-rw-r--r--doc/installerfw.qdoc4
-rw-r--r--src/libs/installer/metadatajob.cpp3
3 files changed, 13 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 1e941caa7..3d38199b6 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,14 @@
2.1.0
+2.0.4
+- Set also display name for Repository action "remove"
+- Adjusted wrong repogen parameter name
+- Fix settings test
+- Make Execute operation work without arguments in Windows
+- Add make install functionality with INSTALL_ROOT
+- Do not force doc build on Linux when calling "make install"
+- Documentation updates
+
2.0.3
- Update Japanese translation.
- Make IFW compile with FreeBSD. (QTIFW-841)
diff --git a/doc/installerfw.qdoc b/doc/installerfw.qdoc
index c8a094453..d543c040b 100644
--- a/doc/installerfw.qdoc
+++ b/doc/installerfw.qdoc
@@ -930,8 +930,8 @@
\li Update all packages in the packages directory. The list can be further
filtered with the \c {-i}, \c {-e} parameters.
\row
- \li --update-new-packages
- \li Update only packages that are new or have a newer version. The
+ \li --update-new-components
+ \li Update only components that are new or have a newer version. The
list can be further filtered with the \c {-i}, \c{-e}
parameters.
\row
diff --git a/src/libs/installer/metadatajob.cpp b/src/libs/installer/metadatajob.cpp
index 58b1ede8e..b010209c3 100644
--- a/src/libs/installer/metadatajob.cpp
+++ b/src/libs/installer/metadatajob.cpp
@@ -397,7 +397,8 @@ MetadataJob::Status MetadataJob::parseUpdatesXml(const QList<FileTaskResult> &re
}
} else if (action == QLatin1String("remove")) {
// remove possible default repositories using the given server url
- Repository repository(resolveUrl(result, el.attribute(QLatin1String("url"))), true);
+ Repository repository(el.attribute(QLatin1String("url")), true);
+ repository.setDisplayName(el.attribute(QLatin1String("displayname")));
repositoryUpdates.insertMulti(action, qMakePair(repository, Repository()));
qDebug() << "Repository to remove:" << repository.displayname();