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
2011-11-03ability to have permanent callbacks that stay active when new blend files ↵Campbell Barton
are loaded. this works by tagging functions, eg: def my_func(scene): pass bpy.app.handlers.permanent_tag(my_func, True) # <-- important bit bpy.app.handlers.frame_change_pre.append(my_func)
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-22Code refactoring: move external engine functions into own file.Brecht Van Lommel
2011-10-21Code cleanup: don't use btempdir/bprogdir/bprogname globals anymore, but wrapBrecht Van Lommel
in BLI_ functions.
2011-10-21- remove release/bin/.blender/.bfont.ttf, we have ↵Campbell Barton
./release/datafiles/bfont.ttf already, and its not used anymore. - removed scons WITH_BF_FREETYPE
2011-10-21move fonts/ and locale/ dirs into release/datafiles, since blender wasn't ↵Campbell Barton
finding them in their current location and so to test international characters you had to 'make install'. updated scons/cmake/translation-scripts.
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-20misc editsCampbell Barton
- rename define DISABLE_SDL --> WITH_SDL (which was already used in some places) - blenders interation preset was using orbit rather then turntable 3d view preference (different from factory defaults). - tagged some unused rna args.
2011-10-15misc editsCampbell Barton
- cmake/windows was installing locale & font when internationalization was disabled, twice when enabled. - file selector was using the string size-1, where this isn't needed since string buttons expected this value to be the sizeof(), accounting for '\0'. - use const char for extension checking funcs. - minor pep8 edits
2011-10-07Patch [#28660] x64 thumbnail handler not being installed in CMake builds by ↵Thomas Dinges
Tom Edwards.
2011-10-03remove .Blanguages, its not used anymoreCampbell Barton
2011-09-30formatting edits onlyCampbell Barton
2011-09-27OSX CMake bundle - blenderplayer doesn't need locale, data, ..Dalai Felinto
also blenderplayer is a subset of Blender, so no need to repeat the macros here.
2011-09-27OSX: fix player bundle_creationJens Verwiebe
2011-09-26replace strncpy with BLI_strncpy, in some cases strncpy was being misused ↵Campbell Barton
since it doesnt ensure \0 termination. also dont call CTX_data_scene() twice when checking for function arguments.
2011-09-26OSX - cmake: blenderplayer part 2: Jens Verwiever co-patchDalai Felinto
Using OSX Bundle (in oppose to Blender dummy .app) as start point for binary. That way we don't need to move the blenderplayer after the bundle is finished and we can rebuild it without doing `make install` I will test more tomorrow, but it should be working now
2011-09-26cmake files for bundling blenderplayer in OSXDalai Felinto
this is working fine. The only problem is described in the XXX there. While Blender is linked to the right place during `make` time (~/bin/blender.app/Content/MacOS/blender) blenderplayer is in the top bin folder (~/bin/blenderplayer). That means it will be correct only after you run `make install` (we are moving it to the right place inside the bundle). I couldn't find the place to fix this properly. I will see with Jens Verwiebe how we can address that.
2011-09-25whitespace cleanupCampbell Barton
2011-09-21remove support for irixCampbell Barton
2011-09-19i18n: code cleanup and fixing unneeded translation (when partial translation ↵Sergey Sharybin
is used only)
2011-09-19svn merge -r40222:40344 ^/trunk/blenderSergey Sharybin
2011-09-15Fixing issues with i18n stuff:Sergey Sharybin
- Make gettext stuff draw-time. so switching between languages can happens without restart now. - Added option to translate visible interface (menus, buttons, labels) and tooltips. Now it's possible to have english UI and localized tooltips. - Clean-up sources, do not use gettext stuff for things which can be collected with RNA. - Fix issues with windows 64bit and ru_RU locale on my desktop (it was codepage issue). - Added operator "Get Messages" which generates new text block with with all strings collected from RNA. - Changed script for updating blender.pot so now it appends messages collected from rna to automatically gathered messages. To update .pot you have to re-generate messages.txt using "Get Messages" operator and then run update_pot script. - Clean up old translation stuff which wasn't used and most probably wouldn't be used. - Return back "International Fonts" option, so if it's disabled, no gettext lookups happens on draw. - Merged read_homefile function back. No need in splitting it. TODO: - Custom fonts and font size. Current font isn't nice at least for russian locale, it's difficult to read it. - Put references to messages.txt so gettext can merge translation when name/description of some property changes.
2011-09-15- Whitespace fixes (was commiting from windows where text editor wasn't ↵Sergey Sharybin
configured, pardon) - Fixing typo in description of GP paint mode.
2011-09-15svn merge -r39834:40222 https://svn.blender.org/svnroot/bf-blender/trunk/blenderSergey Sharybin
2011-09-15replace BLI_strncpy with BLI_strncpy_utf8 where input isnt ensured to be valid.Campbell Barton
also replace strcpy's which copy using "" with str[0]='\0'
2011-09-15Update build rules to deal with new gettext libraries.Sergey Sharybin
2011-09-14removed nodes from CMake's BLENDER_LINK_LIBS, rewrote find-pcre using own ↵Campbell Barton
template.
2011-09-14- removed some duplicate library links from cmake (which were needed because ↵Campbell Barton
of bad level calls) - FindXML2 we had copied from another project was always running and not using cached value, rewrote based on template used for most of our other find modules which makes use of 'FindPackageHandleStandardArgs' - mark statuc collada libs as advanced.
2011-09-11fix for 'blender -E' crashing.Campbell Barton
2011-09-10fixed linking with CMakeCampbell Barton
2011-09-07svn merge -r 37306:39975 ↵Benoit Bolsee
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-09-06Merged the particles-2010 branch with node improvements into trunk.Lukas Toenne
This branch adds mostly organizational improvements to the node system by renaming the node folders and files. A couple of internal features have been added too. Detailed information can be found on the wiki page: http://wiki.blender.org/index.php/User:Phonybone/Particles2010
2011-09-01merge with trunk r39834Xiao Xiangquan
2011-08-22FFmpeg library update:Sergey Sharybin
- Update scons/cmake rules to use new versions of libs/dlls. - Update rules for buildbot.
2011-08-22rename NAN_BUILDINFO --> WITH_BUILDINFOCampbell Barton
2011-08-22buildinfo is now quoted from the build systems, avoids stripping quotes on ↵Campbell Barton
startup. tested with linux/cmake linux/scons windows/cmake/mingw windows/cmake/msvc
2011-08-13some small fixXiao Xiangquan
2011-08-12remove gettext from mkaesrna, and update language packsXiao Xiangquan
2011-08-10merge with trunk r39216Xiao Xiangquan
2011-08-07small fix of building rulesXiao Xiangquan
2011-07-30fix of cmake rules for mac, from sirdudeXiao Xiangquan
2011-07-29merge with trunk r38787Xiao Xiangquan
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-25complete the language-select featureXiao Xiangquan
2011-07-15move mathutils into its own lib.Campbell Barton
2011-07-14merge from trunk 38379Xiao Xiangquan
2011-07-10run WM_exit(C) when blender as a python module exitsCampbell Barton
2011-07-02fix for error in cmake filesCampbell Barton
2011-07-01cmake was installing text as a directory rather then coping the files within it.Campbell Barton
2011-06-28RenderEngine API: add self.report() error reporting function for render engines,Brecht Van Lommel
works the same as for operators. Also includes some refactoring of render error reporting code to use ReportList.