Browse Source

Travis CI: API documentation update at 2016-05-23 18:07:35 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/2ea850ff14a94b1dd66abd6c8bad3282a4051066

Message: Do not compile HttpRequestDemo sample if URHO3D_NETWORK is not defined. Fix HttpRequest class Lua bindings to not inherit Deserializer to avoid crash, instead expose read functions manually like File does. Fix string concatenation in HttpRequestDemo lua code.

urho3d-travis-ci 9 years ago
parent
commit
0aa4ec9e72
2 changed files with 41 additions and 2 deletions
  1. 40 1
      Docs/LuaScriptAPI.dox
  2. 1 1
      Source/Urho3D/.soversion

+ 40 - 1
Docs/LuaScriptAPI.dox

@@ -2615,7 +2615,8 @@ Properties:
 ### HierarchyContainer : UIElement
 ### HierarchyContainer : UIElement
 
 
 <a name="Class_HttpRequest"></a>
 <a name="Class_HttpRequest"></a>
-### HttpRequest : Deserializer
+### HttpRequest
+
 
 
 Methods:
 Methods:
 
 
@@ -2625,6 +2626,44 @@ Methods:
 - HttpRequestState GetState() const
 - HttpRequestState GetState() const
 - unsigned GetAvailableSize() const
 - unsigned GetAvailableSize() const
 - bool IsOpen() const
 - bool IsOpen() const
+- VectorBuffer Read(unsigned size)
+- bool IsEof() const
+- int ReadInt()
+- short ReadShort()
+- char ReadByte()
+- unsigned ReadUInt()
+- short ReadUShort()
+- char ReadUByte()
+- bool ReadBool()
+- float ReadFloat()
+- double ReadDouble()
+- IntRect ReadIntRect()
+- IntVector2 ReadIntVector2()
+- Rect ReadRect()
+- Vector2 ReadVector2()
+- Vector3 ReadVector3()
+- Vector3 ReadPackedVector3(float maxAbsCoord)
+- Vector4 ReadVector4()
+- Quaternion ReadQuaternion()
+- Quaternion ReadPackedQuaternion()
+- Matrix3 ReadMatrix3()
+- Matrix3x4 ReadMatrix3x4()
+- Matrix4 ReadMatrix4()
+- Color ReadColor()
+- BoundingBox ReadBoundingBox()
+- String ReadString()
+- String ReadFileID()
+- StringHash ReadStringHash()
+- VectorBuffer ReadBuffer()
+- ResourceRef ReadResourceRef()
+- ResourceRefList ReadResourceRefList()
+- Variant ReadVariant()
+- Variant ReadVariant(VariantType type)
+- VariantVector ReadVariantVector()
+- VariantMap ReadVariantMap()
+- unsigned ReadVLE()
+- unsigned ReadNetID()
+- String ReadLine()
 
 
 Properties:
 Properties:
 
 

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.226
+0.0.227