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-08-25better handle sizes by default for mask mode, now ignore image width/heightCampbell Barton
2012-08-25ability to register your own online manual callbacks - useful for 3rd party ↵Campbell Barton
addon developers, who may want to link to their own URL's.
2012-08-17style cleanupCampbell Barton
2012-07-29fix for own regression with handling of script paths, however this didnt ↵Campbell Barton
work quite right before either. Handle these 2 kinds of script paths * user script path: ~/.blender/scripts OR $BLENDER_USER_SCRIPTS * pref script path: always bpy.context.user_preferences.filepaths.script_directory now both are returned by bpy.utils.script_paths()
2012-07-18Fix [#32135] FRAMERATE: Framerate display is truncated in selection box.Bastien Montagne
Filename extension was striped twice...
2012-07-04More spell checking.Bastien Montagne
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-06-29fix for bug where user scripts path set by an environment variable would ↵Campbell Barton
write presets there but not show up in the menu.
2012-06-28option so operators can be executed with undo enabled (and redo).Campbell Barton
2012-06-20style cleanupCampbell Barton
2012-06-10remove duplicate importCampbell Barton
2012-05-28bpy.utils.time_to_frame() and frame_to_time() utility functions.Campbell Barton
2012-03-31move debug flag into its own global var (G.debug), split up debug options.Campbell Barton
--debug --debug-ffmpeg --debug-python --debug-events --debug-wm This makes debug output easier to read - event debug prints would flood output too much before. For convenience: --debug-all turns all debug flags on (works as --debug did before). also removed some redundant whitespace in debug prints and prefix some prints with __func__ to give some context.
2012-03-29fix [#30402] modules dir missing from sys.pathCampbell Barton
2012-03-22fix [#30623] user-defined render presets bugCampbell Barton
this report exposed multiple bugs in blender when using a non utf8 compatible home directory. - bpy.utils.script_paths() would crash when homedir wasn't utf8 (reported bug) - PyC_DefaultNameSpace() - would raise an error when running when __file__ was non utf8. - preset filepath property was not set to accept non utf8. - bpy.paths.display_name would raise an error on non utf8 paths, (used for preset draw)
2012-03-16py api:Campbell Barton
modify bpy.path.display_name_from_filepath() to accept bytes
2012-02-07Code Cleanup: remove unused preset variable.Campbell Barton
2012-01-18cleanup for redefined varsCampbell Barton
2012-01-10enable xml preset save/load, replace install/export themes with these.Campbell Barton
2011-12-30check for presets in addons dirs. this way addons can install their own ↵Campbell Barton
presets too.
2011-12-11fix for bpy.path.abspath() on windows when the library argument was set and ↵Campbell Barton
its self a relative path too.
2011-11-24pep8 edits and avoid naming conflicts with python builtinsCampbell Barton
2011-11-16minor cleanupCampbell Barton
- remove / comment unused python vars - replace mul_v3_fl(somevec, -1.0f); with negate_v3(somevec);
2011-11-08cmake & pep8 tidy up, also some style edits.Campbell Barton
remove unneeded collection length function.
2011-11-03modify previous api feature to tag functions as permanent, use nicer ↵Campbell Barton
decorator style, eg: # -------- import bpy from bpy.app.handlers import persistent @persistent def my_func(scene): pass bpy.app.handlers.frame_change_pre.append(my_func)
2011-10-17correct spelling errors in commentsCampbell Barton
2011-10-11py api: bpy_extras.io_utils.path_reference() - added library argument so ↵Campbell Barton
exporters get the paths of linked images right.
2011-10-11- bpy.path.abspath(), added optional library argument since any paths from ↵Campbell Barton
linked datablocks are relative to this, not the blend files path, this saves kludgy path code wherever libraries may be used. - Image "Edit Externally" operator can now edit relative library images. also minor edits to navmesh.
2011-10-05filter RNA classes for translation (removes over 1300 lines from messages.txt)Campbell Barton
- omit operators tagged as INTERNAL - omit classes for internal use: Event, Context, Property, Function, Window.
2011-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-08-12add bpy.types as a module for convenient imports, eg:Campbell Barton
from bpy.types import Menu
2011-08-02Fixed a few small typos.Kent Mein
Kent
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-25fix [#28075] After the correction of No.38528 is applied, the following ↵Campbell Barton
phenomenon has been generated. own fault in recent addition of bpy.path.basename() not supporting byte paths.
2011-07-20fix [#27922] using preset_paths() with an absolute path returns twice the ↵Campbell Barton
same thing raise an error when an invalid subdir is passed to preset_paths()
2011-07-20added bpy.path.basename because "//" prefix breaks os.path.basename.Campbell Barton
2011-07-19fix for bpy.path.abspath(), if a path was passed it would get the last ↵Campbell Barton
directory cut off, broke copying images on export.
2011-07-11make python3.3 compatible, __class__ is no longer in the class methods ↵Campbell Barton
namespace.
2011-07-01minor pep8 editsCampbell Barton
2011-06-29console autocomp import now excludes '_' prefixed variables and the results ↵Campbell Barton
are sorted.
2011-05-20[#27439] Console window doesn't hide on startup when presets are used (Windows)Campbell Barton
only print preset load messages in when debug is enabled.
2011-05-19fix [#27432] [2.57/scripts/modules/bpy/path.py:169] can't concat bytes to strCampbell Barton
2011-05-08fix [#27324] WindowManager.invoke_search_popup() crashes blender and does ↵Campbell Barton
not work also minor formatting fixes.
2011-05-06patch [#27205] Infinite recursion inside resolve_ncase() when passed a ↵Campbell Barton
driver letter on Windows that does not exist by Brandon Ehle (azverkan)
2011-05-04fix 2 bugs with addon installationCampbell Barton
- installing an addon which creates a new script directory didn't add this to the sys.path. - installing the addon was meant to set the search string to the addon name but was broken.
2011-05-02fix [#27148] *Invalid Path* in all "operator presets" dropdownsCampbell Barton
2011-04-11api changes needed for for copying old settings to new.Campbell Barton
- py: bpy.utils.resource_path('USER', 2, 56) - C: BLI_get_folder_version(id, major, minor, check);
2011-04-04fix [#26757] Python console: help() doesn't work anymoreCampbell Barton
also quiet some warnings & add docstrings to bpy module which was shaowing the GPL header in its help() message.
2011-04-01pep8 checker, mostly pedantic style changes but also found an error in ↵Campbell Barton
mesh_utils.mesh_linked_faces()