Browse Source

Travis CI: API documentation update at 2017-05-18 15:07:05 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/363f68d36ecae60d7fc6a8fe2937f96e4bf25aac

Message: When the search path is required, search it as rooted and not-rooted.

urho3d-travis-ci 8 years ago
parent
commit
110ac2fe84
4 changed files with 122 additions and 29 deletions
  1. 48 4
      Docs/AngelScriptAPI.h
  2. 32 20
      Docs/LuaScriptAPI.dox
  3. 41 4
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 48 - 4
Docs/AngelScriptAPI.h

@@ -312,6 +312,7 @@ public:
 Animation();
 Animation(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 void AddTrigger(const AnimationTriggerPoint&);
 void AddTrigger(float, bool, const Variant&);
 Animation Clone(const String& = String ( )) const;
@@ -322,8 +323,10 @@ bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
 bool RemoveAllTracks();
 void RemoveAllTriggers();
+void RemoveMetadata(const String&);
 bool RemoveTrack(const String&);
 void RemoveTrigger(uint);
 bool Save(File) const;
@@ -335,9 +338,12 @@ void SendEvent(const String&, VariantMap& = VariantMap ( ));
 String animationName;
 /* readonly */
 String category;
+/* readonly */
+bool hasMetadata;
 float length;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 String name;
 /* readonly */
 uint numTracks;
@@ -11191,11 +11197,14 @@ public:
 Sound();
 Sound(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
+void RemoveMetadata(const String&);
 bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
@@ -11209,10 +11218,13 @@ bool compressed;
 /* readonly */
 float frequency;
 /* readonly */
+bool hasMetadata;
+/* readonly */
 float length;
 bool looped;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 String name;
 /* readonly */
 int refs;
@@ -12921,12 +12933,15 @@ public:
 Texture();
 Texture(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 void ClearDataLost();
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
+void RemoveMetadata(const String&);
 bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
@@ -12952,6 +12967,8 @@ TextureFilterMode filterMode;
 /* readonly */
 uint format;
 /* readonly */
+bool hasMetadata;
+/* readonly */
 int height;
 /* readonly */
 Array<int> levelHeight;
@@ -12963,6 +12980,7 @@ uint levels;
 bool levelsDirty;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 Array<int> mipsToSkip;
 /* readonly */
 int multiSample;
@@ -12992,6 +13010,7 @@ public:
 Texture2D();
 Texture2D(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 void ClearDataLost();
 Image GetImage() const;
 bool HasSubscribedToEvent(Object, const String&);
@@ -12999,6 +13018,8 @@ bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
+void RemoveMetadata(const String&);
 bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
@@ -13026,6 +13047,8 @@ TextureFilterMode filterMode;
 /* readonly */
 uint format;
 /* readonly */
+bool hasMetadata;
+/* readonly */
 int height;
 /* readonly */
 Array<int> levelHeight;
@@ -13037,6 +13060,7 @@ uint levels;
 bool levelsDirty;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 Array<int> mipsToSkip;
 /* readonly */
 int multiSample;
@@ -13068,12 +13092,15 @@ public:
 Texture2DArray();
 Texture2DArray(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 void ClearDataLost();
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
+void RemoveMetadata(const String&);
 bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
@@ -13101,6 +13128,8 @@ TextureFilterMode filterMode;
 /* readonly */
 uint format;
 /* readonly */
+bool hasMetadata;
+/* readonly */
 int height;
 uint layers;
 /* readonly */
@@ -13113,6 +13142,7 @@ uint levels;
 bool levelsDirty;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 Array<int> mipsToSkip;
 /* readonly */
 int multiSample;
@@ -13144,12 +13174,15 @@ public:
 Texture3D();
 Texture3D(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 void ClearDataLost();
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
+void RemoveMetadata(const String&);
 bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
@@ -13177,6 +13210,8 @@ TextureFilterMode filterMode;
 /* readonly */
 uint format;
 /* readonly */
+bool hasMetadata;
+/* readonly */
 int height;
 /* readonly */
 Array<int> levelHeight;
@@ -13188,6 +13223,7 @@ uint levels;
 bool levelsDirty;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 Array<int> mipsToSkip;
 /* readonly */
 int multiSample;
@@ -13217,6 +13253,7 @@ public:
 TextureCube();
 TextureCube(const String&in);
 // Methods:
+void AddMetadata(const String&, const Variant&);
 void ClearDataLost();
 Image GetImage(CubeMapFace) const;
 bool HasSubscribedToEvent(Object, const String&);
@@ -13224,6 +13261,8 @@ bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
+void RemoveAllMetadata();
+void RemoveMetadata(const String&);
 bool Save(File) const;
 bool Save(VectorBuffer&) const;
 bool Save(const String&) const;
@@ -13251,6 +13290,8 @@ TextureFilterMode filterMode;
 /* readonly */
 uint format;
 /* readonly */
+bool hasMetadata;
+/* readonly */
 int height;
 /* readonly */
 Array<int> levelHeight;
@@ -13262,6 +13303,7 @@ uint levels;
 bool levelsDirty;
 /* readonly */
 uint memoryUse;
+Array<Variant> metadata;
 Array<int> mipsToSkip;
 /* readonly */
 int multiSample;
@@ -15932,24 +15974,23 @@ uint GetFloat16Format();
 uint GetFloat32Format();
 uint GetFormat(const String&);
 Variant GetGlobalVar(const String&);
+String GetHostName();
 String GetInternalPath(const String&);
 uint GetLinearDepthFormat();
+String GetLoginName();
 uint GetLuminanceAlphaFormat();
 uint GetLuminanceFormat();
 uint GetMaxBones();
 String GetMiniDumpDir();
 uint GetNumLogicalCPUs();
 uint GetNumPhysicalCPUs();
+String GetOSVersion();
 Array<AttributeInfo> GetObjectAttributeInfos(const String&);
 Array<String> GetObjectCategories();
 Array<String> GetObjectsByCategory(const String&);
 String GetParentPath(const String&);
 String GetPath(const String&);
 String GetPlatform();
-uint64 GetTotalMemory();
-String GetLoginName(); 
-String GetHostName();
-String GetOSVersion(); 
 uint GetRG16Format();
 uint GetRGBA16Format();
 uint GetRGBAFloat16Format();
@@ -15961,6 +16002,7 @@ uint GetRGFloat32Format();
 uint GetRandomSeed();
 uint GetReadableDepthFormat();
 String GetTextureUnitName(TextureUnit);
+uint64 GetTotalMemory();
 VariantType GetVariantTypeFromName(const String&);
 String GetVariantTypeName(VariantType);
 bool HasSubscribedToEvent(Object, const String&);
@@ -15988,7 +16030,9 @@ void Print(const String&, bool = false);
 void Print(const Variant&, bool = false);
 void Print(float, bool = false);
 void Print(int, bool = false);
+void Print(int64, bool = false);
 void Print(uint, bool = false);
+void Print(uint64, bool = false);
 void PrintCallStack(bool = false);
 float Random();
 float Random(float);

+ 32 - 20
Docs/LuaScriptAPI.dox

@@ -162,6 +162,7 @@ namespace Urho3D
 <a href="#Class_ResourceCache"><b>ResourceCache</b></a>
 <a href="#Class_ResourceRef"><b>ResourceRef</b></a>
 <a href="#Class_ResourceRefList"><b>ResourceRefList</b></a>
+<a href="#Class_ResourceWithMetadata"><b>ResourceWithMetadata</b></a>
 <a href="#Class_RibbonTrail"><b>RibbonTrail</b></a>
 <a href="#Class_RigidBody"><b>RigidBody</b></a>
 <a href="#Class_RigidBody2D"><b>RigidBody2D</b></a>
@@ -322,7 +323,7 @@ Properties:
 - LoopMode2D loopMode
 
 <a name="Class_Animation"></a>
-### Animation : Resource
+### Animation : ResourceWithMetadata
 
 Methods:
 
@@ -5476,6 +5477,17 @@ Properties:
 
 - StringHash type
 
+<a name="Class_ResourceWithMetadata"></a>
+### ResourceWithMetadata : Resource
+
+Methods:
+
+- void AddMetadata(const String name, const Variant& value)
+- void RemoveMetadata(const String name)
+- void RemoveAllMetadata()
+- const Variant& GetMetadata(const String name) const
+- bool HasMetadata() const
+
 <a name="Class_RibbonTrail"></a>
 ### RibbonTrail : Drawable
 
@@ -5965,7 +5977,7 @@ Properties:
 - float repeatRate
 
 <a name="Class_Sound"></a>
-### Sound : Resource
+### Sound : ResourceWithMetadata
 
 Methods:
 
@@ -6687,7 +6699,7 @@ Properties:
 - FaceCameraMode faceCameraMode
 
 <a name="Class_Texture"></a>
-### Texture : Resource
+### Texture : ResourceWithMetadata
 
 Methods:
 
@@ -8643,25 +8655,25 @@ Properties:
 - Variant GetGlobalVar(const String key)
 - VariantMap& GetGlobalVars()
 - Graphics* GetGraphics()
+- String GetHostName()
 - Input* GetInput()
 - String GetInternalPath(const String pathName)
 - Localization* GetLocalization()
 - Log* GetLog()
+- String GetLoginName()
 - String GetMiniDumpDir()
 - String GetNativePath(const String pathName)
 - Network* GetNetwork()
 - unsigned GetNumLogicalCPUs()
 - unsigned GetNumPhysicalCPUs()
+- String GetOSVersion()
 - String GetParentPath(const String pathName)
 - String GetPath(const String fullPath)
 - String GetPlatform()
-- unsigned long long GetTotalMemory()
-- String GetLoginName()
-- String GetHostName() 
-- String GetOSVersion() 
 - unsigned GetRandomSeed()
 - Renderer* GetRenderer()
 - Time* GetTime()
+- long GetTotalMemory()
 - UI* GetUI()
 - bool HasSubscribedToEvent(Object* sender, const String eventName)
 - bool HasSubscribedToEvent(const String eventName)
@@ -8685,10 +8697,10 @@ Properties:
 - int Rand()
 - float RandStandardNormal()
 - float Random(float min, float max)
-- float Random(float range)
 - float Random()
-- int RandomInt(int range)
+- float Random(float range)
 - int RandomInt(int min, int max)
+- int RandomInt(int range)
 - float RandomNormal(float meanValue, float variance)
 - void RegisterEventName(const String eventName)
 - String RemoveTrailingSlash(const String pathName)
@@ -8705,11 +8717,11 @@ Properties:
 - float Sin(float angle)
 - float SmoothStep(float lhs, float rhs, float t)
 - float Sqrt(float x)
-- float StableRandom(const Vector3& seed)
 - float StableRandom(float seed)
 - float StableRandom(const Vector2& seed)
-- void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
+- float StableRandom(const Vector3& seed)
 - void SubscribeToEvent(void* sender, const String eventName, void* functionOrFunctionName)
+- void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
 - float Tan(float angle)
 - bool ToBool(const String source)
 - Color ToColor(const String source)
@@ -8738,28 +8750,28 @@ Properties:
 - void UnsubscribeFromEvent(Object* sender, const String eventName)
 - void UnsubscribeFromEvent(const String eventName)
 - void UnsubscribeFromEvents(Object* sender)
-- Vector2 VectorCeil(const Vector2& vec)
 - Vector4 VectorCeil(const Vector4& vec)
 - Vector3 VectorCeil(const Vector3& vec)
+- Vector2 VectorCeil(const Vector2& vec)
 - IntVector3 VectorCeilToInt(const Vector3& vec)
 - IntVector2 VectorCeilToInt(const Vector2& vec)
-- Vector2 VectorFloor(const Vector2& vec)
-- Vector3 VectorFloor(const Vector3& vec)
 - Vector4 VectorFloor(const Vector4& vec)
+- Vector3 VectorFloor(const Vector3& vec)
+- Vector2 VectorFloor(const Vector2& vec)
 - IntVector2 VectorFloorToInt(const Vector2& vec)
 - IntVector3 VectorFloorToInt(const Vector3& vec)
 - Vector2 VectorLerp(const Vector2& lhs, const Vector2& rhs, const Vector2& t)
-- Vector4 VectorLerp(const Vector4& lhs, const Vector4& rhs, const Vector4& t)
 - Vector3 VectorLerp(const Vector3& lhs, const Vector3& rhs, const Vector3& t)
-- Vector4 VectorMax(const Vector4& lhs, const Vector4& rhs)
+- Vector4 VectorLerp(const Vector4& lhs, const Vector4& rhs, const Vector4& t)
+- Vector3 VectorMax(const Vector3& lhs, const Vector3& rhs)
+- IntVector3 VectorMax(const IntVector3& lhs, const IntVector3& rhs)
 - Vector2 VectorMax(const Vector2& lhs, const Vector2& rhs)
+- Vector4 VectorMax(const Vector4& lhs, const Vector4& rhs)
 - IntVector2 VectorMax(const IntVector2& lhs, const IntVector2& rhs)
-- IntVector3 VectorMax(const IntVector3& lhs, const IntVector3& rhs)
-- Vector3 VectorMax(const Vector3& lhs, const Vector3& rhs)
-- Vector2 VectorMin(const Vector2& lhs, const Vector2& rhs)
-- IntVector3 VectorMin(const IntVector3& lhs, const IntVector3& rhs)
 - Vector4 VectorMin(const Vector4& lhs, const Vector4& rhs)
 - Vector3 VectorMin(const Vector3& lhs, const Vector3& rhs)
+- Vector2 VectorMin(const Vector2& lhs, const Vector2& rhs)
+- IntVector3 VectorMin(const IntVector3& lhs, const IntVector3& rhs)
 - IntVector2 VectorMin(const IntVector2& lhs, const IntVector2& rhs)
 - Vector4 VectorRound(const Vector4& vec)
 - Vector2 VectorRound(const Vector2& vec)

+ 41 - 4
Docs/ScriptAPI.dox

@@ -3125,6 +3125,7 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - void AddTrigger(const AnimationTriggerPoint&)
 - void AddTrigger(float, bool, const Variant&)
 - Animation@ Clone(const String& = String ( )) const
@@ -3135,8 +3136,10 @@ Methods:
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
 - bool RemoveAllTracks()
 - void RemoveAllTriggers()
+- void RemoveMetadata(const String&)
 - bool RemoveTrack(const String&)
 - void RemoveTrigger(uint)
 - bool Save(File@) const
@@ -3148,8 +3151,10 @@ Properties:
 
 - String animationName
 - String category // readonly
+- bool hasMetadata // readonly
 - float length
 - uint memoryUse // readonly
+- Variant[] metadata
 - String name
 - uint numTracks // readonly
 - uint numTriggers
@@ -12453,11 +12458,14 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
+- void RemoveMetadata(const String&)
 - bool Save(File@) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
@@ -12468,9 +12476,11 @@ Properties:
 - String category // readonly
 - bool compressed // readonly
 - float frequency // readonly
+- bool hasMetadata // readonly
 - float length // readonly
 - bool looped
 - uint memoryUse // readonly
+- Variant[] metadata
 - String name
 - int refs // readonly
 - uint sampleSize // readonly
@@ -13921,12 +13931,15 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - void ClearDataLost()
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
+- void RemoveMetadata(const String&)
 - bool Save(File@) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
@@ -13946,12 +13959,14 @@ Properties:
 - bool dataLost // readonly
 - TextureFilterMode filterMode
 - uint format // readonly
+- bool hasMetadata // readonly
 - int height // readonly
 - int[] levelHeight // readonly
 - int[] levelWidth // readonly
 - uint levels // readonly
 - bool levelsDirty // readonly
 - uint memoryUse // readonly
+- Variant[] metadata
 - int[] mipsToSkip
 - int multiSample // readonly
 - String name
@@ -13971,6 +13986,7 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - void ClearDataLost()
 - Image@ GetImage() const
 - bool HasSubscribedToEvent(Object@, const String&)
@@ -13978,6 +13994,8 @@ Methods:
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
+- void RemoveMetadata(const String&)
 - bool Save(File@) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
@@ -13999,12 +14017,14 @@ Properties:
 - bool dataLost // readonly
 - TextureFilterMode filterMode
 - uint format // readonly
+- bool hasMetadata // readonly
 - int height // readonly
 - int[] levelHeight // readonly
 - int[] levelWidth // readonly
 - uint levels // readonly
 - bool levelsDirty // readonly
 - uint memoryUse // readonly
+- Variant[] metadata
 - int[] mipsToSkip
 - int multiSample // readonly
 - String name
@@ -14025,12 +14045,15 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - void ClearDataLost()
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
+- void RemoveMetadata(const String&)
 - bool Save(File@) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
@@ -14052,6 +14075,7 @@ Properties:
 - bool dataLost // readonly
 - TextureFilterMode filterMode
 - uint format // readonly
+- bool hasMetadata // readonly
 - int height // readonly
 - uint layers
 - int[] levelHeight // readonly
@@ -14059,6 +14083,7 @@ Properties:
 - uint levels // readonly
 - bool levelsDirty // readonly
 - uint memoryUse // readonly
+- Variant[] metadata
 - int[] mipsToSkip
 - int multiSample // readonly
 - String name
@@ -14079,12 +14104,15 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - void ClearDataLost()
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
+- void RemoveMetadata(const String&)
 - bool Save(File@) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
@@ -14106,12 +14134,14 @@ Properties:
 - bool dataLost // readonly
 - TextureFilterMode filterMode
 - uint format // readonly
+- bool hasMetadata // readonly
 - int height // readonly
 - int[] levelHeight // readonly
 - int[] levelWidth // readonly
 - uint levels // readonly
 - bool levelsDirty // readonly
 - uint memoryUse // readonly
+- Variant[] metadata
 - int[] mipsToSkip
 - int multiSample // readonly
 - String name
@@ -14131,6 +14161,7 @@ Properties:
 
 Methods:
 
+- void AddMetadata(const String&, const Variant&)
 - void ClearDataLost()
 - Image@ GetImage(CubeMapFace) const
 - bool HasSubscribedToEvent(Object@, const String&)
@@ -14138,6 +14169,8 @@ Methods:
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
+- void RemoveAllMetadata()
+- void RemoveMetadata(const String&)
 - bool Save(File@) const
 - bool Save(VectorBuffer&) const
 - bool Save(const String&) const
@@ -14159,12 +14192,14 @@ Properties:
 - bool dataLost // readonly
 - TextureFilterMode filterMode
 - uint format // readonly
+- bool hasMetadata // readonly
 - int height // readonly
 - int[] levelHeight // readonly
 - int[] levelWidth // readonly
 - uint levels // readonly
 - bool levelsDirty // readonly
 - uint memoryUse // readonly
+- Variant[] metadata
 - int[] mipsToSkip
 - int multiSample // readonly
 - String name
@@ -16509,24 +16544,23 @@ Properties:
 - uint GetFloat32Format()
 - uint GetFormat(const String&)
 - Variant GetGlobalVar(const String&)
+- String GetHostName()
 - String GetInternalPath(const String&)
 - uint GetLinearDepthFormat()
+- String GetLoginName()
 - uint GetLuminanceAlphaFormat()
 - uint GetLuminanceFormat()
 - uint GetMaxBones()
 - String GetMiniDumpDir()
 - uint GetNumLogicalCPUs()
 - uint GetNumPhysicalCPUs()
+- String GetOSVersion()
 - AttributeInfo[]@ GetObjectAttributeInfos(const String&)
 - String[]@ GetObjectCategories()
 - String[]@ GetObjectsByCategory(const String&)
 - String GetParentPath(const String&)
 - String GetPath(const String&)
 - String GetPlatform()
-- uint64 GetTotalMemory() 
-- String GetLoginName() 
-- String GetHostName()
-- String GetOSVersion() 
 - uint GetRG16Format()
 - uint GetRGBA16Format()
 - uint GetRGBAFloat16Format()
@@ -16538,6 +16572,7 @@ Properties:
 - uint GetRandomSeed()
 - uint GetReadableDepthFormat()
 - String GetTextureUnitName(TextureUnit)
+- uint64 GetTotalMemory()
 - VariantType GetVariantTypeFromName(const String&)
 - String GetVariantTypeName(VariantType)
 - bool HasSubscribedToEvent(Object@, const String&)
@@ -16565,7 +16600,9 @@ Properties:
 - void Print(const Variant&, bool = false)
 - void Print(float, bool = false)
 - void Print(int, bool = false)
+- void Print(int64, bool = false)
 - void Print(uint, bool = false)
+- void Print(uint64, bool = false)
 - void PrintCallStack(bool = false)
 - float Random()
 - float Random(float)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.67
+0.1.68