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-08-11Commiting patch from jensverwiebe for NDOF support on OSXv2.59Sergey Sharybin
2011-08-11Fix for crash when using undo during sketching session.Sergey Sharybin
Currently, grease pencil conflicts with such operators as undo and set object mode which makes behavior totally unpredictable and crash for some cases. The only way to solve this proper is to ger rid of pointers to data which can chage stored in operator custom data.
2011-08-11Fix #28180: crash running wm.keyconfigs.user.keymaps.new("My Keymap").Brecht Van Lommel
There isn't much point in doing this at the moment, but shouldn't crash.
2011-08-11Adding a readonly length_squared property to mathutils.Vector. This is ↵Mitchell Stokes
simply vector.dot(vector), so nothing new is really added, but it's nice for writing more intent revealing code. In other words: if vec.dot(vec) > some_distance*some_distance: do_something() might not be quite as obvious looking as: if vec.length_squared > some_distance*some_distance: do_something() As to why you'd want to use length_squared over length is that length uses a square root, which isn't always necessary for simple distance checks (e.g., closest object, checks like the ones above, ect).
2011-08-11fix [#28213] Imperial unit for 0.001 inches inconsistently displayed as mils ↵Campbell Barton
and thous
2011-08-11SVN maintenance.Guillermo S. Romero
2011-08-11use ghash for operator and menu types, was doing string lookup in the ↵Campbell Barton
operator list (containing over 1000 items) for each button draw. gives small speedup for UI drawing and overall startup time.
2011-08-11ifdef'd outliner code which is spesific to gsoc pepper with '// GSOC_PEPPER' ↵Campbell Barton
so its obvious. this will keep merging pepper changes from conflicting and can be removed when its finally merged.
2011-08-11merge outliner refactor so we dont have to keep outliner.c locked in trunk.Campbell Barton
this wont build because of changes spesific to pepper, fix coming next. svn merge source/blender/editors/space_outliner -r36830:38987 https://svn.blender.org/svnroot/bf-blender/branches/soc-2011-pepper/source/blender/editors/space_outliner
2011-08-11unlocking outliner.c and removing... (merging refactor from pepper but looks ↵Campbell Barton
like this will take a few steps)
2011-08-11fix for regression for shape key UI, values are now editable again in the ↵Campbell Barton
list, double checked this works for mesh/curve and lattice types.
2011-08-10error in own recent commit. set subversion to 0Campbell Barton
2011-08-102.59 Splash screen by tomket7. Congratulations! Thomas Dinges
Chosen by the jury Ben Simonds, Reynante Martinez and Hjalti Hjálmarsson.
2011-08-10Version bump for 2.59Campbell Barton
2011-08-10fix [#28206] Motion Paths shown in 3DView even when Only Render option is ↵Campbell Barton
enabled
2011-08-10Fix for incorrect parameter amount.Nathan Letwory
2011-08-10fix for error in templateCampbell Barton
2011-08-10fix [#28203] Misplaced string in bone constraintsCampbell Barton
2011-08-10Fix [#28195] Particles objects disappear in viewport, and 90° rotationNathan Letwory
Reported by Jean Francois Sarazin Lack of normal normalisation caused scaling issues. SIGGRAPH fix by jahka and jesterKing. Thanks to host dfelinto with entertainment provided by slikdigit.
2011-08-10fix for [#28201] blender crashes when "mpeg" selectedCampbell Barton
2 changes - When writing OGG only allow Theora encoding, this fixes the crash. - When setting the MPEG preset, dont allow the 'Codec' to be left as Theora, this is just confusing. * note that this is highly confusing for users and devs - there are 4 places to set the codec/format, with both python and C presets :S.
2011-08-10fix for crash undoing grease pencil session, last action would free entire ↵Campbell Barton
frame which the session held a reference to.
2011-08-10fix [#28197] Undoing Grease pencil removes last 2 strokesCampbell Barton
2011-08-10fix [#28196] Unwrap tris in lightmap packCampbell Barton
2011-08-09style change, harmless changes while looking into bug [#28196]Campbell Barton
2011-08-09fix [#28186] textboxes properties not animatableCampbell Barton
2011-08-09fix [#28191] Exception when enabling a script for a newer Blender buildCampbell Barton
2011-08-09note to address issue raised by report [#28190].Campbell Barton
2011-08-09change doxygen string to 2.59Campbell Barton
2011-08-09Blender 2.59:Thomas Dinges
* Update the readme file * Update link to release logs, they point to http://www.blender.org/development/release-logs/blender-259/ now
2011-08-09off by 1 error with number keys in ghost/sdlCampbell Barton
2011-08-08fix [#28183] Wavefront OBJ import has no preset savingCampbell Barton
2011-08-08report error on installign keymaps rather then raising an exception.Campbell Barton
2011-08-08quiet harmless py resource warning - file opened but not closed.Campbell Barton
2011-08-08fix [#28178] make single user copy of object data doesn't workCampbell Barton
2011-08-08add missing keys for ghost/sdlCampbell Barton
2011-08-08add missing header to cmake files (else some IDE's wont index it)Campbell Barton
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-08- update X3D and FBX testing checksumsCampbell Barton
- building with GHOST/SDL now adds the PREFIX - image.external_edit operator errors out if the filepath isnt set (was annoying and loaded gimp while running tests)
2011-08-08Mac Compile fix for ndof, by jensverwiebe. Thanks!Thomas Dinges
2011-08-07fixed typoMike Erwin
2011-08-07simplify x11 path code, had unneeded NULL checks and std namespaceCampbell Barton
2011-08-07ndof data change: operators can access values as vectors or components, as ↵Mike Erwin
both are handy
2011-08-07removed old ndof transform code, to be replaced with modern stuff in 2.6Mike Erwin
2011-08-07scons patch from jensverwiebeCampbell Barton
fix a silly bug in version detection, - added an OSX sdk-check jensverwiebe, needs to get commit access!, but will apply his patches for now.
2011-08-07stricter WITH_INPUT_NDOF guards, general cleanupMike Erwin
2011-08-07fixed ndof library detect for Mac SCons, ndof enabled by default (disabled ↵Mike Erwin
if lib not found), minor cleanup
2011-08-07fix for building ndof with cmake on osxCampbell Barton
2011-08-07Changed do_version condition for noodle_curving.Sergey Sharybin
It should be re-set to 5 for files saved in 2.58.1 release.
2011-08-07Fix #28169: keymap bug when using a preset configuration, e.g. object mode ↵Brecht Van Lommel
keymap was also being used in edit mode.
2011-08-07fix [#28172] Cannot restore Add-ons tab in user preferences after a failed ↵Campbell Barton
attempt to install an add-on. non utf8 addons would make the addon UI vanish, now give a message in the console and UI.