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-13Bug fix, irc report:Ton Roosendaal
Overlapping regions, when you both want them on the same side they should not overlap each other! (Try F5 on a region to flip position). Code for subdivision is in need for some cleanup - a branching recursion is needed.
2012-12-13Fix for using active scene instead of actually changed one in some RNA callbacksSergey Sharybin
2012-12-13Bugfix - own collection.Ton Roosendaal
Very occasionally Timer Events could still get handled, after stopping a timer - especially with the timer event still in the queue. This patch disables such events. Introduced a EVENT_NONE to make sure it gets ignored everywhere.
2012-12-13Part of bratwurst GSOC cleanup of subsurf unwrap code: Ommit subsurfAntony Riakiotakis
level in the operator and use the modifier level and subdivision type instead. Using subsurf only makes sense if the modifier is first so print an warning and turn off if this is not the case.
2012-12-13Feature fix:Ton Roosendaal
Upgraded version to 2.65.1, and check on this to map default region backgrounds to have an alpha 0.5. This only worked until now for 2.64 savedi startups.
2012-12-13Bugfix [#33511] Ton Roosendaal
Overlapping regions: when dragging the region to close them, it started the blending timer - which of course is not meant to happen.
2012-12-13add include so alloca() is found on mingw.Campbell Barton
2012-12-13Bugfix, IRC report:Ton Roosendaal
If a new userpref.blend was loaded, but no startup.blend existed yet, Blender crashed.
2012-12-13Only LMB clicks in Panel should return "handled" - it accidentally returned ↵Ton Roosendaal
it for mousewheel too. Previous commit made scrolling in button regions not work.
2012-12-13Fix #33510: Rotate around selection doesn't work when .blend saved in sculpt ↵Sergey Sharybin
mode Issue was caused by calculateTransformCenter not giving any center point in cases object is in painting mode, which lead to previous offset used for view rotation. Since this previous offset is a static variable, it'll mean rotation will happen around scene origin after re-starting blender. Now made it so viewport rotation will use active object's center as an offset when active object is in painting mode. Should behave in more predictable way.
2012-12-13disable openmp thread assert, would fail in cases where the caller was ↵Campbell Barton
locking for its self (sculpt mode)
2012-12-13Bug fix:Ton Roosendaal
- Code for detecting "click inside button panel" was convoluted and detected wrong panels even when they were closed. - Any click inside panels now return "Event Handled", that will prevent events being passed on in case of overlapping or transparent button panels. This is ancient code, will be in on my attention list for further cleaning.
2012-12-13FFmpeg: remove limits of bitrate, they were far too low for losless formats ↵Sergey Sharybin
like DNxHD
2012-12-13Fix #33500: when transforming, tapping shift twice and holding did not enableBrecht Van Lommel
precision mode. Not really the intended way to use this but it revealed a bug in the event handling here.
2012-12-13image view cursor wasn't scaling up with the DPICampbell Barton
2012-12-13region overlap feature missed view3d grid-scale text, increase string size ↵Campbell Barton
for title text too.
2012-12-13minor editsCampbell Barton
- add BLENDER_QUIT_FILE define. - use const for passing rcti's in widget drawing.
2012-12-13remove UI_DPI_FAC, its not needed anymore.Campbell Barton
2012-12-13remove BKE_main_scene_add(), just add main arg to BKE_scene_add()Campbell Barton
2012-12-13style cleanup: changes from recent commitsCampbell Barton
2012-12-13code cleanup: quiet warningsCampbell Barton
2012-12-13fix another crash from missing update in Auto-Merge from r52911Campbell Barton
2012-12-13Can now set a lower bound on the number of subframes (i.e. an upper bound on ↵Alex Fraser
the time step size) for fluid simulations. Previously, the "subframes" parameter was not available when the adaptive time step was enabled; now they can both be set. The two settings can be used together to greatly increase simulation stability.
2012-12-13Bugfix, irc report:Ton Roosendaal
Crash on running in background mode. Calling GHOST function, but there is no GHOST initialized. Easy to skip.
2012-12-13Disable a bugfix I did - to prevent event timers to be used still.Ton Roosendaal
Code looks sane, but somehow it frustrates the panel animation timer, causing freezes now. Work for tomorrow.
2012-12-12Crash, IRC report.Ton Roosendaal
Moving panels in a buttons-region around was calling menu code, reading NULL pointer. Seems to be an existing issue, not caused by my previous commit :)
2012-12-12Better patch for pixelsize to be zero - ghost code is going to be fixed next.Ton Roosendaal
2012-12-12Quick fix for ghost error - solves pixelsize to return 0.Ton Roosendaal
2012-12-12Holiday coding log :)Ton Roosendaal
Nice formatted version (pictures soon): http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.66/Usability Short list of main changes: - Transparent region option (over main region), added code to blend in/out such panels. - Min size window now 640 x 480 - Fixed DPI for ui - lots of cleanup and changes everywhere. Icon image need correct size still, layer-in-use icon needs remake. - Macbook retina support, use command line --no-native-pixels to disable it - Timeline Marker label was drawing wrong - Trackpad and magic mouse: supports zoom (hold ctrl) - Fix for splash position: removed ghost function and made window size update after creation immediate - Fast undo buffer save now adds UI as well. Could be checked for regular file save even... Quit.blend and temp file saving use this now. - Dixed filename in window on reading quit.blend or temp saves, and they now add a warning in window title: "(Recovered)" - New Userpref option "Keep Session" - this always saves quit.blend, and loads on start. This allows keeping UI and data without actual saves, until you actually save. When you load startup.blend and quit, it recognises the quit.blend as a startup (no file name in header) - Added 3D view copy/paste buffers (selected objects). Shortcuts ctrl-c, ctrl-v (OSX, cmd-c, cmd-v). Coded partial file saving for it. Could be used for other purposes. Todo: use OS clipboards. - User preferences (themes, keymaps, user settings) now can be saved as a separate file. Old option is called "Save Startup File" the new one "Save User Settings". To visualise this difference, the 'save startup file' button has been removed from user preferences window. That option is available as CTRL+U and in File menu still. - OSX: fixed bug that stopped giving mouse events outside window. This also fixes "Continuous Grab" for OSX. (error since 2009)
2012-12-12RNA properties for width and height of nodes.Lukas Toenne
Note: For most node types the height is determined automatically. Note2: There are two independent width values, one for regular nodes and one for the collapsed ("hidden") state.
2012-12-12Fix for range checks in generated RNA functions. The code was skipping the ↵Lukas Toenne
value clamping for float and int properties if using the min/max values of the respective number format, but not taking into account range callbacks of the property.
2012-12-12Fix error compiling in debug build, should test #ifndef NDEBUG instead ofBrecht Van Lommel
2012-12-12fix for another crash in r52911Campbell Barton
2012-12-12edge slide: skip creating BMBVHTree when its not used.Campbell Barton
2012-12-12remove context argument from EDBM_update_generic()Campbell Barton
2012-12-12fix for crash in own commit r52911Campbell Barton
2012-12-12Fix related to #33480: for blender internal volume rendering, the camera insideBrecht Van Lommel
volume wasn't accurate, it still isn't quite but hopefully a bit better by taking clip start into account. With clip start it's actually impossible to do a single 'inside' test, since there will not be a single point where all camera rays start from, though for small clip start they will be close together.
2012-12-12fix [#33489] Scaling normals with Alt (maintains shell thickness) producing ↵Campbell Barton
wrong result. not exactly a bug - zero area faces from a cancelled extrude gave issues - but this is a common use case, so make it work by only using selected faces when calculating the vertex shell thickness.
2012-12-12move edge split into its own function which can be called by the modifier ↵Campbell Barton
without having to call a bmesh operator (gives some speedup).
2012-12-12Fix for menu context. The menu draw function context did not inherit the ↵Lukas Toenne
custom context storage from the original uiLayout yet. Fix by Campbell Barton (ideasman_42).
2012-12-12Fix for misleading doc string of panel header options.Lukas Toenne
2012-12-12Toolbar region for the node editor. This region is, for now, empty and ↵Lukas Toenne
hidden by default. Later on we might add standard panels here, but at least it will give addons a place to register tool shelf panels.
2012-12-12Sequencer: add textured solid option for opengl previewSergey Sharybin
2012-12-12use header only tags for edge split (to prepare to move this into tools/)Campbell Barton
2012-12-12Revert recent workaround for sequencer, it'll only work in casesSergey Sharybin
scene strip is added at frame 1, which is very limited usecase. Proper solution is not possible yet..
2012-12-12Bug fix [#33492] Right click on 'confirm reload' crashesTon Roosendaal
Context check could result in NULL - added provision for it and made sure the check is local only (for 1 new option)
2012-12-12Sequencer old todo: inserting keyframes with preview opened didn't workSergey Sharybin
Solved in more like a workaround way by not calling BKE_scene_update_for_newframe if scene's frame didn't change.
2012-12-12Use own list of actions for Vertex Group Lock operator instead of reusing ↵Sv. Lockal
Select All actions. Previous actions and descriptions were confusing, e. g. UnLock All used the description of Deselect All.
2012-12-12revert recent code cleanup which introduced const parametersGaia Clary
2012-12-12fix for EDBM_index_arrays_ensure not working as intended.Campbell Barton