Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreSchroeder-TomTom committed Nov 9, 2018
1 parent b18cfee commit 5178c35
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rviz_satellite
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.0.0 (2018-11-08)
------------------
* Initial release
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package>
<name>rviz_satellite</name>
<version>0.0.2</version>
<version>1.0.0</version>
<description>Display satellite map tiles in RViz</description>
<author>Gareth Cross</author>
<maintainer email="[email protected]">gcross</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion src/tileloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void TileLoader::start() {
const QUrl uri = uriForTile(x, y);
// send request
QNetworkRequest request = QNetworkRequest(uri);
auto const userAgent = QByteArray("rviz_satellite/0.0.2 (+https://github.com/gareth-cross/rviz_satellite)");
auto const userAgent = QByteArray("rviz_satellite/1.0.0 (+https://github.com/gareth-cross/rviz_satellite)");
request.setRawHeader(QByteArray("User-Agent"), userAgent);
QNetworkReply *rep = qnam_->get(request);
emit initiatedRequest(request);
Expand Down

0 comments on commit 5178c35

Please sign in to comment.