Skip to content

Commit

Permalink
2 to 3
Browse files Browse the repository at this point in the history
Signed-off-by: Ashton Larkin <ashton@openrobotics.org>
  • Loading branch information
adlarkin committed Nov 11, 2020
2 parents 4892e2d + 501f192 commit 5a02f30
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
8 changes: 7 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,13 @@

## Ignition Gui 2

### Ignition Gui 2.X.X
### Ignition Gui 2.3.3 (2020-08-31)

1. Fix running plugins with bad world names.
* [Pull request 111](https://github.com/ignitionrobotics/ign-gui/pull/111)

1. Disable more tests known to fail on macOS and Windows.
* [Pull request 112](https://github.com/ignitionrobotics/ign-gui/pull/112)

### Ignition Gui 2.3.2 (2020-08-19)

Expand Down
7 changes: 6 additions & 1 deletion src/plugins/image_display/ImageDisplay.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,21 @@
*
*/

#include "ImageDisplay.hh"

#include <QQuickImageProvider>

#include <algorithm>
#include <iostream>
#include <string>
#include <vector>

#include <ignition/common/Console.hh>
#include <ignition/common/Image.hh>
#include <ignition/plugin/Register.hh>
#include <ignition/transport/Node.hh>

#include "ignition/gui/Application.hh"
#include "ImageDisplay.hh"

namespace ignition
{
Expand Down
5 changes: 3 additions & 2 deletions src/plugins/scene3d/Scene3D.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
*
*/

#include "Scene3D.hh"

#include <algorithm>
#include <cmath>
#include <map>
#include <sstream>
Expand Down Expand Up @@ -54,8 +57,6 @@
#include "ignition/gui/GuiEvents.hh"
#include "ignition/gui/MainWindow.hh"

#include "Scene3D.hh"

namespace ignition
{
namespace gui
Expand Down
6 changes: 4 additions & 2 deletions src/plugins/world_control/WorldControl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@
*
*/

#include "WorldControl.hh"

#include <string>

#include <ignition/common/Console.hh>
#include <ignition/common/Time.hh>
#include <ignition/common/StringUtils.hh>
#include <ignition/plugin/Register.hh>

#include "ignition/gui/Helpers.hh"

#include "WorldControl.hh"

namespace ignition
{
namespace gui
Expand Down
6 changes: 4 additions & 2 deletions src/plugins/world_stats/WorldStats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@
*
*/

#include "WorldStats.hh"

#include <string>

#include <ignition/common/Console.hh>
#include <ignition/common/StringUtils.hh>
#include <ignition/common/Time.hh>
#include <ignition/plugin/Register.hh>

#include "ignition/gui/Helpers.hh"

#include "WorldStats.hh"

namespace ignition
{
namespace gui
Expand Down

0 comments on commit 5a02f30

Please sign in to comment.