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-04-15qtcreator/netbeans generators: fix for error getting project info when svn ↵Campbell Barton
isnt found (common on windows)
2012-04-15Fix #30949: live unwrap when marking seams did not work with bmesh.Brecht Van Lommel
2012-04-15Fix #30948: add scene > copy settings did not copy settings like units, ↵Brecht Van Lommel
audio, game data, and tool settings. What exactly should be copied is a bit up to interpretation, but I think these make sense, and things like audio or game data used to be part of render settings which do get copied so at least for those it was a regression.
2012-04-15code cleanup: dont include BLI_winstuff.h on non windows systems, also ↵Campbell Barton
cleanup some defines/includes for windows.
2012-04-15disallow invalid mingw configurations, not just disable by default but ↵Campbell Barton
disallow the built to run if they are set by the developer.
2012-04-15style cleanup: for loop macros, also add a config file for uncrustify source ↵Campbell Barton
formatter (able to get very close to our own style guide).
2012-04-15Scons:Thomas Dinges
* Add new scons options to 'blenderlite' target * Remove ancient yafray comment
2012-04-15Hrm...parse error from previous commitAntony Riakiotakis
2012-04-15Scons ToDo:Thomas Dinges
* Made Frameserver building optional, added WITH_BF_FRAMESERVER. * Enabled per default in btools.py
2012-04-15Scons ToDo:Thomas Dinges
* Made Smoke building optional, added WITH_BF_SMOKE. * Enabled per default in btools.py
2012-04-15Blender Internal:Thomas Dinges
* Remove some remaining (already commented) radiosity cruft.
2012-04-15Fix linking issue with MinGW. For some reason ffmpeg needs to be enabled. ↵Antony Riakiotakis
Some kind of bizarre linking order issue seems to be the case but since it touches so many areas of the code I prefer to simply enable by default.
2012-04-15Fluidsim: Text fix.Daniel Genrich
2012-04-15Fluidsim: Daniel Genrich
a) Remove "animatable" flag from resolution property b) "Hide fluid surface": Add description and changed prperty name. Nobody really understood the purpose of that checkbox.
2012-04-14Revert rename of ColorRamp node from r45629.Thomas Dinges
Don't make such changes based on an assumption, it could be wrong and coordinate with the UI team first!
2012-04-14Minor fix to UI messages.Bastien Montagne
2012-04-14Minor fix to recent i18n commits.Bastien Montagne
2012-04-14Fixed some UI message typos (spotted by Leon Cheung, thx).Bastien Montagne
2012-04-14Fixed another bunch of i18n bugs (thx to Leon Cheung for spotting them), ↵Bastien Montagne
among which: * Drag'n'drop translation in Outliner * "Execute" button in file window * "Labels" of spacing elements, in multi-column enums * A glitch with nodes "Value to RGB", they where called "ColorRamp" in node_type_base() call. This is not definitive, though, as it appears that UI node names are determined by this call, while it should be by "defines" in rna_nodetrre_types.h, I guess... Anyway, not good to have such things in two different places! Also moved default context name under BLF_translation.h, much better to have those all in one place, accessible from whole Blender code!
2012-04-14Silencing some compiler warnings on WindowsJoshua Leung
argv is defined as "char *" here so that unicode magic can happen causing problems later on when "const char**" is expected instead. While this fix is redundant on other platforms, it's a lot less confusing than some of the alternative fixes.
2012-04-14don't constrain single edge extrude, annoying for retopoCampbell Barton
see: http://www.youtube.com/watch?v=5AzRpFfWR6k request from ZanQdo, VenomGFX & Jonathan Williams. For previous functionality Z, Shift+Z.
2012-04-14code cleanup: comment (almost) all members of KeyBlock & Key.Campbell Barton
2012-04-14code cleanup: when extending name length Key.elemstr was incorrectly ↵Campbell Barton
extended to 64 chars, added comment and set back to original length.
2012-04-14style cleanup: key.cCampbell Barton
2012-04-14Grmph, BLF_(p)gettext were not protected against NULL message/context, was ↵Bastien Montagne
causing a sigsev with latest own commits (in File menu)!
2012-04-14i18n: "labels" of multi-section enums need to be marked for gettext (N_()), ↵Bastien Montagne
as they are not available from python...
2012-04-13Fixed (or partly fixed) various missing UI translations, mainly with some ↵Bastien Montagne
specific ops invocations (popup menus…), and (to some extent) with the undo/redo stuff.
2012-04-13Scons:Thomas Dinges
* Compile fix for r45609, pthreads include was missing.
2012-04-13Fix #30376: cycles ignores camera override from sequencer.Brecht Van Lommel
2012-04-13Fix #30858: UI losing buttons at some random moment after using Blender for aBrecht Van Lommel
while. This may not fix all cases but should at least solve the issue when rendering with cycles. The cause was a race condition on C->data.recursion, with multiple threads accessing context at the same time. Cycles itself does not access context from the render thread, but the bpy api would do a context update for any callback in case e.g. a new file got loaded. Disabled that now in non-main threads. The ideal solution would be to not allow any context access at all from threads but that's not so simple to implement, especially not this close to release.
2012-04-13remove duplicate notifier eventAntony Riakiotakis
2012-04-13Do not hide (gray out) lens/lock to object/lock to cursor options in Quad ↵Bastien Montagne
views (View panel)...
2012-04-13fix [#30728] Align View Restricts Further View ChangesCampbell Barton
turntable rotation can get into gimbal lock.
2012-04-13Fix missing cycles update when tweaking some render layer settings.Brecht Van Lommel
2012-04-13code cleanup: use axis_angle_to_quat() to simplify turntable view rotate code.Campbell Barton
2012-04-13fix for editmode UV hiding with edges, was also using deprecated flag ↵Campbell Barton
(UV_SELECT_FACE)
2012-04-13Cycles: add render layer use environment option to disable world lighting onBrecht Van Lommel
individual render layers.
2012-04-13Fix own typo in previous commit for dupligroup offsetSergey Sharybin
2012-04-13Increase limit for game simulation steps to 50, made it hard limit.Sergey Sharybin
Soft limit is still 5, so should be pretty safe even if it's not supported well in all cases.
2012-04-13Move "From Cursor" operator which sets dupli group offset to own operatorSergey Sharybin
Previously it used to use cursor location from time when panel was drawn, which in some cases lead to using previous cursor location instead of current.
2012-04-13Fix #30876, #30932: crash in material preview render after undo or file load,Brecht Van Lommel
due to old material copies hanging around in the preview database. This crash happened pretty randomly, but was especially noticeable when using node groups.
2012-04-13Node Editor / Properties Region:Thomas Dinges
* Improved checks for Grease Pencil and Active Node panel, so the panel only gets shown when there is valid data, rather than showing the empty panel. Thanks to Lukas Tönne for some help! :)
2012-04-13fix [#30936] Face Inset gives bad UV'sCampbell Barton
2012-04-13Fix related to #30928: missing image editor update when changing active imageBrecht Van Lommel
texture node.
2012-04-13fix [#30925] successful import of keyconfig dependant on current object context?Campbell Barton
revert r34885, The hack was to fix poselib UI but is REALLY BAD - don't modify properties when accessing them. This bug must be fixed some other way.
2012-04-13Fix part of #30934: save as image in image editor did not set proper defaultsBrecht Van Lommel
for options like compression.
2012-04-13Fix #30929: cycles rendering of object with scale 0 on some axis did not workBrecht Van Lommel
correct with instancing. Actually such object will not work in many places, e.g. transforming vertices in edit mode doesn't work and textures will be misapplied in Blender Internal, so these should be avoided.
2012-04-13bmesh todo: vertex dirtmap now working again.Campbell Barton
also renamed Polygon helper property from 'loops' to loop_indices
2012-04-13- startup.blend's temp dir was pointing to sergeys user dir, now point to /tmpCampbell Barton
- fix error in ctodata.py (was adding dummy bit) - make UV hide from last commit more readable.
2012-04-13set executable option and some minor changes to ctodata/datatocCampbell Barton