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
2014-03-22Warning cleanup:Antony Riakiotakis
* Comparison in utf detection code always failed * Cast to integer to silence grumpy 64bit gcc
2014-01-30Code cleanup: remove BLI_has_parentCampbell Barton
2014-01-30Code cleanup: add BLI_testextensie_n, replacing multuple calls to ↵Campbell Barton
BLI_testextensie also use attributes for BLI path functions
2013-12-22Style Cleanup: remove preprocessor indentation (updated wiki style guide too)Campbell Barton
2013-11-25fix for regression with own recent commitCampbell Barton
2013-11-25Fix T37591: 'Extensions' option ignored for movies.Campbell Barton
2013-11-24Code Cleanup: replace shorts with ints for path code.Campbell Barton
2013-09-23Fix related to #36319: restore SDL_VIDEODRIVER=dummy environment variable, itBrecht Van Lommel
seems that somehow not having this is causing keyboard events to be caught by SDL. This was removed because it broke addons that could use SDL, now set the environment variable only temporary during SDL initialization. This may have been causing issues with keyboard events getting missed in the game engine, but I couldn't confirm the issue here.
2013-09-02Some function didn't match their declarationSergey Sharybin
2013-08-29default blend file name setting (untitled.blend) length check wasn't ↵Campbell Barton
correct, move to generic function BLI_ensure_filename().
2013-08-27Get rid of madness about fnmatch: BLI_fnmatch did not do the OS checks, they ↵Bastien Montagne
had to be done in every file using fnmatch (autoexec.c did not, wonder how it could work under unix???). Thanks to Brecht for noting this!
2013-07-25add api function BLI_path_append to add to a path (and ensure a seperator), ↵Campbell Barton
replaces BLI_join_dirfile when the dir and the destimation were the same.
2013-07-23replace use of strcat() where the string offset is known.Campbell Barton
also correct bad logic with converting a textblock to 3d-text, bytes-vs-number of chars wasn't handled right.
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-07-19code cleanup: simplify BLI_parent_dir using BLI_join_dirfileCampbell Barton
2013-06-28fix for out of bounds read in BLI_path_relCampbell Barton
2013-06-27- remove edge collapse loop operator (now replaced by dissolve).Campbell Barton
- fix missing null pointer check from own recent changes. - add asserts if BLI path functions are given wrong id's
2013-03-29code cleanup: quiet warnings building with mingw.Campbell Barton
2013-03-26Fix regression introduced by svn rev55545Sergey Sharybin
After this revision BLI_stringdec worked incorrect in cases there's no digits in original file name, making head one character shorter than it should be. Time to cover BLI with unit-tests?
2013-03-26style cleanup:Campbell Barton
also rename mesh_getVertexCos() --> BKE_mesh_vertexCos_get() to match curve function.
2013-03-24code cleanup: move doxy docs from headers into source. also replace ↵Campbell Barton
strncpy();str[len]=0 with BLI_strncpy() in BLI_stringdec().
2013-03-10code cleanup: use '%.*d' with string formatting for variable length number.Campbell Barton
2013-03-10Improvements to addon-prefs key search suggested by Yang Niren.Campbell Barton
- add accent_grave. - strip the search string. - add numpad numbers (currently these match regular numbers). also remove unneeded forward declarations in path_util.c
2013-03-10patch [#34103] path_util_split_name_num.patchCampbell Barton
from Lawrence D'Oliveiro (ldo) Simplify implementation of BLI_split_name_num - With some changes of my own to avoid second call to strlen()
2013-03-10patch [#34103] path_util_cleanup_path.patchCampbell Barton
from Lawrence D'Oliveiro Improve implementation of BLI_cleanup_path, including making it behave as documented. "/../home/me" would become "home/me" rather then "/home/me" Also remove redundant BLI_strncpy()
2013-03-05patch [#34103] path_util_split_dirstring.patch, ↵Campbell Barton
path_util_split_dirstring_2.patch, path_util_split_dirstring_3.patch from Lawrence D'Oliveiro (ldo) Get rid of BLI_splitdirstring, replace with calls to BLI_split_dirfile, BLI_split_dir_part and BLI_split_file_part as appropriate.
2013-03-05patch [#34103] path_util_cleanups.patchCampbell Barton
from Lawrence D'Oliveiro (ldo) - Better argument name for BLI_cleanup_path and BLI_cleanup_file - remove redundant BLI_add_slash already done by BLI_cleanup_dir
2013-03-05patch [#34103]Campbell Barton
from Lawrence D'Oliveiro (ldo) More use of bool type, necessitating adding inclusion of BLI_utildefines.h, or moving it up in the inclusion order if it was already included, in various places - storage.c: make some variables only used in bli_builddir local to that - storage.c: BLI_file_descriptor_size should allow 0 as a valid file descriptor - path_util.c: make pointers to non-reentrant storage returned from folder routines const, necessitating making variables holding these returned pointers const elsewhere as well - path_util.c: BLI_string_to_utf8 closes iconv context in case of conversion error - blf_lang.c: fill_locales routine now has its own "languages" local variable to construct paths (was stealing internal storage belonging to BLI_get_folder before)
2013-03-04patch [#34103] use boolean in path functions and add comments.Campbell Barton
path_util_1.patch from Lawrence D'Oliveiro (ldo)
2013-03-04patch [#34103] use booleans for extensions testing.Campbell Barton
bli_testextensie.patch - from Lawrence D'Oliveiro (ldo)
2013-02-06add more path debug prints when PATH_DEBUG is defined.Campbell Barton
2012-12-25make weight paint respect box & near clipping.Campbell Barton
also replace strncmp with BLI_path_ncmp for BLI_rebase_path, (so its case insensitive on windows)
2012-12-24code cleanup: don't alloca zero size and remove paranoid NULL checks ↵Campbell Barton
(checked all uses and there not needed).
2012-12-15move pbvh into BKE, it used many BKE bad level includes.Campbell Barton
now blenlib/BLI doesn't depend on any blenkern/BKE functions, there are still some bad level includes but these are only to access G.background and the blender version define.
2012-10-21style cleanup: trailing tabs & expand some non prefix tabs into spaces.Campbell Barton
2012-10-21style cleanup: commentsCampbell Barton
2012-09-16style cleanupCampbell Barton
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-07-17code cleanup: spellingCampbell Barton
2012-07-01style cleanupCampbell Barton
2012-06-27style cleanupCampbell Barton
2012-06-22fixed function name: BLI_rebase_path, reworked description, added enum ↵Gaia Clary
bli_rebase_state for defined return values
2012-05-31style cleanupCampbell Barton
2012-05-25Unix: enable use of XDG paths for storing Blender configuration on Linux/BSD/..,Brecht Van Lommel
starting from version 2.64. Unless you have a special system setup, this means the will be in ~/.config/blender rather than ~/.blender. When the version number is changed to 2.64, the "Copy Previous Settings" operator in the splash will copy the settings to the new location. XDG base directory specification: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
2012-05-20code cleanup:Campbell Barton
- style - multi-line ifs move braces onto new lines. - iterators - convert some to macros, other split up and move brace.
2012-05-19style cleanup: whitespace/indentationCampbell Barton
2012-05-12style cleanup: remaining BLI files.Campbell Barton
2012-05-09style cleanup: whitespace/operatorsCampbell Barton
2012-04-29style cleanup: function calls & whitespace.Campbell Barton