Browse Source

Travis CI: API documentation update at 2016-08-04 09:43:19 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/5e0e53aa879780c8f528bda289eaa939cfc94eb3

Message: Add feature to changelog.

urho3d-travis-ci 9 years ago
parent
commit
64f90dfc5d
4 changed files with 7 additions and 7 deletions
  1. 2 2
      Docs/AngelScriptAPI.h
  2. 2 2
      Docs/LuaScriptAPI.dox
  3. 2 2
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 2
Docs/AngelScriptAPI.h

@@ -11209,7 +11209,7 @@ bool ToBool() const;
 Color ToColor() const;
 double ToDouble() const;
 float ToFloat() const;
-int ToInt() const;
+int ToInt(int = 10) const;
 IntRect ToIntRect() const;
 IntVector2 ToIntVector2() const;
 String ToLower() const;
@@ -11217,7 +11217,7 @@ Matrix3 ToMatrix3() const;
 Matrix3x4 ToMatrix3x4() const;
 Matrix4 ToMatrix4() const;
 Quaternion ToQuaternion() const;
-uint ToUInt() const;
+uint ToUInt(int = 10) const;
 String ToUpper() const;
 Vector2 ToVector2() const;
 Vector3 ToVector3() const;

+ 2 - 2
Docs/LuaScriptAPI.dox

@@ -8244,7 +8244,7 @@ Properties:
 - bool ToBool(const String source)
 - Color ToColor(const String source)
 - float ToFloat(const String source)
-- int ToInt(const String source)
+- int ToInt(const String source, int base = 10)
 - IntRect ToIntRect(const String source)
 - IntVector2 ToIntVector2(const String source)
 - unsigned ToLower(unsigned ch)
@@ -8255,7 +8255,7 @@ Properties:
 - Rect ToRect(const String source)
 - String ToString(void* value)
 - String ToStringHex(unsigned value)
-- unsigned ToUInt(const String source)
+- unsigned ToUInt(const String source, int base = 10)
 - unsigned ToUpper(unsigned ch)
 - Vector2 ToVector2(const String source)
 - Vector3 ToVector3(const String source)

+ 2 - 2
Docs/ScriptAPI.dox

@@ -12447,7 +12447,7 @@ Methods:
 - Color ToColor() const
 - double ToDouble() const
 - float ToFloat() const
-- int ToInt() const
+- int ToInt(int = 10) const
 - IntRect ToIntRect() const
 - IntVector2 ToIntVector2() const
 - String ToLower() const
@@ -12455,7 +12455,7 @@ Methods:
 - Matrix3x4 ToMatrix3x4() const
 - Matrix4 ToMatrix4() const
 - Quaternion ToQuaternion() const
-- uint ToUInt() const
+- uint ToUInt(int = 10) const
 - String ToUpper() const
 - Vector2 ToVector2() const
 - Vector3 ToVector3() const

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.245
+0.0.246