Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-31minor updates to text autocomplete apiCampbell Barton
- draw function wasn't lining up correctly since DPI edits - rename text_python.c to text_autocomplete.c
2012-03-04style cleanup / comment formatting for bli/bke/bmeshCampbell Barton
2012-02-17unify include guard defines, __$FILENAME__Campbell Barton
without the underscores these clogged up the namespace for autocompleation which was annoying.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-10header cleanup (no functional changes)Campbell Barton
2011-02-18doxygen: blenkernel under core as module.Nathan Letwory
2010-12-03- added GCC warning -Wstrict-prototypesCampbell Barton
- fixed bug in paste material, exposed by stricter warnings. - removed/renamed various shadowed vars. - removed BGE lamp.colour, only allow lamp.color attribute.
2010-02-12correct fsf addressCampbell Barton
2009-04-01Clean up for the imminent migration from SVN to GIT.Guillermo S. Romero
2008-08-11Suggestion list scrolling and selection made independent for easier use. ↵Ian Thompson
Selections no longer move away from the cursor.
2008-07-24Refactor: Renamed text tool methods (suggestions and docs) for clarity and ↵Ian Thompson
consistency.
2008-07-21Removed requirement for suggestions to be pre-sorted. Allowed lists of ↵Ian Thompson
strings to be suggested without having to specify their type. Specifying a prefix when suggesting is now also optional.
2008-07-19Added a documentation panel with primitive word-wrap functionality. It can ↵Ian Thompson
be displayed by Text.showDoc(string) in python and has a text-plugin script for function docs which may be invoked with Ctrl+I inside its params list. Eg. type "dir(" <Ctrl+I>
2008-06-25Added UI for suggestions list. Works with arrow-keys and mouse wheel, accept ↵Ian Thompson
with Enter, reject with Esc or click elsewhere. Mouse selection not yet supported. The script is called from the File->Text Plugins menu. Tidied python script, the C suggestions functions and fixed some bugs including suggestions not being freed properly.
2008-06-24Text plugin basis with plugin for suggestions/completions. The suggest ↵Ian Thompson
plugin works for imported global variables, methods, modules and module members. For example typing: import Blender from Blender import * | <- cursor here suggests globals Blender.Draw.gl| <- cursor here suggests all Draw members starting gl Currently suggestions are listed in the console when the space is redrawn but will be presented as a menu-style list soon. Also to add are shortcut/activation keys to allow plugins to respond to certain key strokes.