Browse Source

Travis CI: API documentation update at 2017-01-01 20:43:44 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/11f099c6553e330cb2d1280cb14617f56f0c556b

Message: Minor style edits. Use position instead of iterator in autocomplete to be safe against iterator invalidation. Add Lua binding to autocomplete. Add short description of the new feature being demonstrated in sample 26.

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

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -2355,9 +2355,11 @@ int weakRefs;
 class Console
 {
 // Methods:
+void AddAutoComplete(const String&);
 void CopySelectedRows() const;
 bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
+void RemoveAutoComplete(const String&);
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 void Toggle();
 void UpdateElements();

+ 2 - 0
Docs/LuaScriptAPI.dox

@@ -1290,6 +1290,8 @@ Methods:
 - void SetNumRows(unsigned rows)
 - void SetNumHistoryRows(unsigned rows)
 - void SetFocusOnShow(bool enable)
+- void AddAutoComplete(const String option)
+- void RemoveAutoComplete(const String option)
 - void UpdateElements()
 - XMLFile* GetDefaultStyle() const
 - BorderImage* GetBackground() const

+ 2 - 0
Docs/ScriptAPI.dox

@@ -4860,9 +4860,11 @@ Properties:
 
 Methods:
 
+- void AddAutoComplete(const String&)
 - void CopySelectedRows() const
 - bool HasSubscribedToEvent(Object@, const String&)
 - bool HasSubscribedToEvent(const String&)
+- void RemoveAutoComplete(const String&)
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 - void Toggle()
 - void UpdateElements()

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.36
+0.1.37