New version number and codename.

--HG--
branch : dev-2.1
This commit is contained in:
Martín Lucas Golini
2018-01-12 02:00:47 -03:00
parent ea427b21bc
commit 5dcd5e4c82
4 changed files with 11 additions and 3 deletions

View File

@@ -16,5 +16,6 @@
#include <eepp/math/math.hpp>
#include <eepp/math/mtrand.hpp>
#include <eepp/math/easing.hpp>
#include <eepp/math/transform.hpp>
#endif

View File

@@ -58,4 +58,11 @@
#include <eepp/ui/uiwidgetcreator.hpp>
#include <eepp/ui/actions/actioninterpolation1d.hpp>
#include <eepp/ui/actions/actioninterpolation2d.hpp>
#include <eepp/ui/actions/move.hpp>
#include <eepp/ui/actions/rotate.hpp>
#include <eepp/ui/actions/scale.hpp>
#include <eepp/ui/actions/fade.hpp>
#endif

View File

@@ -5,9 +5,9 @@
#include <string>
#define EEPP_MAJOR_VERSION 2
#define EEPP_MINOR_VERSION 0
#define EEPP_MINOR_VERSION 1
#define EEPP_PATCH_LEVEL 0
#define EEPP_CODENAME "Lokuttara"
#define EEPP_CODENAME "Metta"
/** The compiled version of the library */
#define EEPP_VERSION(x) \

View File

@@ -68,7 +68,7 @@ UIWidget * UIWidgetCreator::createFromName( std::string widgetName ) {
else if ( widgetName == "selectbutton" ) return UISelectButton::New();
else if ( widgetName == "window" ) return UIWindow::New();
else if ( widgetName == "scrollview" ) return UIScrollView::New();
else if ( widgetName == "textureregion" ) return UITextureRegion::New();
else if ( widgetName == "textureregion" || widgetName == "subtexture" ) return UITextureRegion::New();
else if ( widgetName == "touchdragable" ) return UITouchDragableWidget::New();
else if ( widgetName == "gridlayout" ) return UIGridLayout::New();