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-15move bpath module from BLI to BKE, it was making many bad level calls into BKE.Campbell Barton
2012-12-01style cleanupCampbell Barton
2012-11-27fix crash with path conversion, not all materials have nodesAntony Riakiotakis
2012-11-27add osl shader scripts to bpath walker (so making paths absolute or relative ↵Campbell Barton
applies to shader paths too). also remove "RNA_types.h" include from BKE_nodes.h.
2012-11-07fix [#33108] Running save_as_mainfile breaks relative texture pathsCampbell Barton
save-as with path remapping left the paths relate to the file written.
2012-10-21A final bunch of UI messages fixes and tweaks, and some ↵Bastien Montagne
BKE_report()<->BKE_reportf() fixes.
2012-10-21code cleanup: spellingCampbell Barton
2012-10-02fix: path looper was checking the path of old tessface external data rather ↵Campbell Barton
then loop data. (missed with bmesh upgrade)
2012-09-04code cleanup: move file string defines into BLI_path_utils.h, ↵Campbell Barton
BKE_utildefines is now unused but keep incase we want to add defines there later.
2012-08-29code cleanup: add utility function BLI_path_is_rel()Campbell Barton
2012-08-04code cleanup:Campbell Barton
- replace (strcmp(vfont->name, FO_BUILTIN_NAME) == 0) with (BKE_vfont_is_builtin(vfont)). - reduce some double promotions.
2012-07-30fix for own error in r43796, 'Find Missing Files', could set the path to an ↵Campbell Barton
empty string.
2012-06-07code cleanup: rename sequencer types to SEQ_TYPE_*** and use enums rather ↵Campbell Barton
then defines.
2012-05-29Massive Code cleanup:Thomas Dinges
* Remove all code for Texture and Sequencer plugin system, this never worked in 2.5x / 2.6x and is therefore not needed anymore. * DNA structures are kept, all read/writefile code is gone.
2012-05-28style cleanup: defines with bracesCampbell Barton
2012-05-12style cleanup: whitespace, bli & makesdnaCampbell Barton
2012-05-05code cleanup: function naming for BLI functions.Campbell Barton
2012-04-30style cleanup: re - ↵Campbell Barton
http://wiki.blender.org/index.php/Dev:Doc/CodeStyle#Braces_with_Macros
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ↵Campbell Barton
to BLI_array macros.
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-18spelling cleanupCampbell Barton
2012-03-13style cleanupCampbell Barton
2012-03-12style cleanupCampbell Barton
2012-03-08style cleanup - spelling.Campbell Barton
2012-03-04style cleanup / comment formatting for bli/bke/bmeshCampbell Barton
2012-01-31fix own error [#29634] 'Find Missing Files' breaks good linksCampbell Barton
2011-12-18cleanup of weight paint color setting code, no functional changesCampbell Barton
2011-12-04Fix for movie clips weren't remapped properly on file saveSergey Sharybin
2011-11-14minor cleanup Campbell Barton
- use NULL rather then 0 for pointers - use static functions where possible - add own includes to ensure func's and their declarations don't get out of sync.
2011-11-13add the ocean modifier to bpath visitorCampbell Barton
2011-11-07use macro for access to library filepathCampbell Barton
2011-11-01added path traversal flag - BPATH_TRAVERSE_SKIP_MULTIFILE,Campbell Barton
so path manipulation functions dont run multiple times on the same path in the case of sequence strips where the one directory is used as the base for many images.
2011-10-29replace BLI_strtok_r from r41337 with lighter method that doesnt alloc for ↵Campbell Barton
template_list
2011-10-27use path remapping for all make local functions, patch from Alex Fraser with ↵Campbell Barton
changes.
2011-10-27bpathCampbell Barton
- loop over all sequence images and pointcache - option not to loop over library / packed data, expose in bpy.utils.blend_paths()
2011-10-27- remove bpath iterator and replace all uses with visitor.Campbell Barton
- added flag to optionally receive all paths as absolute.
2011-10-27Support more kinds of paths for path re-writing / traversing, patch from ↵Campbell Barton
Alex Fraser with additions. this now supports as many types as bpath iterator which its intended to replace.
2011-10-27edits ontop of Alex's patch from r41292.Campbell Barton
pass main rather than use G.main when naming from -> to relative paths.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-21- add convenience functions BLI_split_dir_part / BLI_split_file_part, which ↵Campbell Barton
just call BLI_split_dirfile(). - add a fixed value for bprogdir (the dir of bprogname), since it was being used for resource lookups.
2011-10-15fix for buffer overrun with BLI_split_dirfile(...), was simple to do since ↵Campbell Barton
many places don't check for filename lengyj of 79 chars which is the limit for the file selector. Add max dir and file length args.
2011-09-28whitespace edits, make formatting for functions consustent at least within ↵Campbell Barton
the file.
2011-09-22Corrected fix for #28722: Segfault when reading volumetric clouds exampleSergey Sharybin
Looks like with current implementation voxeldata should always be created for voxel textures. Remove recently added NULL check and allocate voxel data when linking a texture.
2011-09-22Fix #28722: Segfault when reading volumetric clouds exampleSergey Sharybin
Added checking for voxel data isn't NULL.
2011-05-19formatting changes only.Campbell Barton
2011-05-18- check paths are not empty strings before making blend file paths absolute ↵Campbell Barton
or relative. - when saving blend file with 'Remap Relative' enabled, don't try make paths absolute if the internal filename is invalid. - use case insensitive path comparison on windows when checking if path remapping is needed & for comparing next/prev dirs in the file selector.
2011-05-18fix [#27405] Append objects with linked materials they dissapears after saveCampbell Barton
when linking in files to an unsaved blend file, make all library paths absolute.
2011-02-27doxygen: blender/blenlib tagged.Nathan Letwory
2011-02-27pedantic warning cleanup, also remove texspace_edit() since its been added ↵Campbell Barton
using a different method.