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-17Fix #28262: uv unwrap in sync selection mode unwrapped all faces irrespectiveBrecht Van Lommel
of selection. Changed the fix for bug #27198, live unwrap not working with sync selection.
2011-07-26correct misc warningsCampbell Barton
2011-07-22patch [#28045] Straighten tool from Simple TodosCampbell Barton
from Kyle Mills (khonkhortisan)
2011-07-17cmake: cleanup include paths, some duplicates and going up some unneeded dirs.Campbell Barton
2011-06-28make drawing faces in the UV editor an image space option, re-using the mesh ↵Campbell Barton
option was lazy and doesn't make much sense.
2011-06-20Fix related to #27689: unwrap, pack island, minimize stretch now cancelBrecht Van Lommel
operator if there are no uv's selected.
2011-06-06Added cancel callbacks to modal operators which allocates memorySergey Sharybin
in invoke callback. This prevents unfreed memory blocks when quiting Bledner with modal operator running.
2011-06-03Quiet warnings for picky compilers.Campbell Barton
2011-05-31cmake maintenanceCampbell Barton
blender_add_lib now takes a separate include argument to suppress warnings in system includes (mostly ffmpeg & python). also only build wm_apple.c on apple+carbon configuration.
2011-05-28fixed "rather then" -> "rather than" typos all over the placeM.G. Kishalmi
2011-05-20use event->mval rather then subtracting ar->winrct.x / y from event->x / yCampbell Barton
2011-05-15Patch [#27344] 300+ New/changed tooltips by Davis Sorenson (dsavi). Thanks a ↵Thomas Dinges
lot! Reviewed by Tom Musgrove and myself. From the patch description: ValterVB on #blendercoders submitted a long list of missing tooltips in Blender, and I went through the list and added all I knew. After that I crowdsourced the rest by putting a spreadsheet on Google docs and having people fill in the missing ones that I didn't know. So if there's some weird tooltip in there that doesn't make sense, that's why. Thanks to Wolter, spacetug and others on BlenderArtists for contributing tooltips.
2011-05-10minor cleanup: make functions static, use NULL for pointer comparisons,Campbell Barton
also fixed a possible bug assigning incorrect DPX function types to imbuf.
2011-05-02UV Edit: move uv vertex buttons code to uvedit module. Brecht Van Lommel
2011-05-01- remove UV_OT_select_inverse, instead use invert option for UV_OT_select_all.Campbell Barton
- fixed INVERT option for UV_OT_select_all.
2011-04-29fix [#27198] Missing Live LSCM Update after Aligning of pinned vertices (W)Campbell Barton
UV Sync Select was failing with live unwrap.
2011-04-21converted more mixed tab/space indentations to tabs. only whitespace changes.Campbell Barton
2011-04-21whitespace only, no functional change mixed tabs/spaces --> tabs.v2.57aCampbell Barton
2011-04-19patch [#26978] Minor Spelling Mistakes in Editor OperatorsCampbell Barton
+ some errors I noticed.
2011-04-12Fix #26860: uv snap/weld/stitch did not take live unwrap setting into account.Brecht Van Lommel
2011-04-08fix [#26674] Inconsistency in snapping CursorToSelection between UV_Editor ↵Campbell Barton
and 3d_View.
2011-04-07add margin access [#26806] Missing pack margin for pack islands in UV editorCampbell Barton
2011-04-06fix for cmake glew includes (tested with mingw), also made qtcreator project ↵Campbell Barton
generator work with mingw again
2011-04-01Bugfix #26654Ton Roosendaal
A lot of UV tools only work in Image editor, but the operator polls allowed them to be used in 3d window too, causing crashes in cases. Also added a poll() check in F6 redo menu.
2011-03-29fix [#26666] Snapping the cursor to selected in UV Image Editor when ↵Campbell Barton
unwrapping causes an assert.
2011-03-28uvedit: floats were being implicitly promoted to doubles, adjust to use floats.Campbell Barton
2011-03-27object/paint/misc-files: floats were being implicitly promoted to doubles, ↵Campbell Barton
adjust to use floats. - also UV angle stretching was using radians->deg which wasn't needed.
2011-03-18Fix for [#25878] UV Scale/Rotate/Grab break with non grid snapping.Janne Karhu
* The selected uv-vertices (the ones being transformed) weren't being disregarded as snapping targets, so moving two verts that were in the same location together was impossible.
2011-03-15fix [#26504] Deselection of vertices not working in UVs editorCampbell Barton
2011-03-15bugfix [#26505] zoom in selected keys on graph editorCampbell Barton
measure uv vertex distance in screen pixels rather then image.
2011-03-12Fix uvedit unwrap tool not taking selection into account.Brecht Van Lommel
2011-03-10request from Jedrzej Slewczuk's:Campbell Barton
Option for tagging creases (Ctrl+RMB) to also re-unwrap the mesh. In 2.42 this could be done by setting rt==8 (very hidden), now its a little less hidden (in the toolbar).
2011-03-03use NULL instead of 0 for pointers, (editors)Campbell Barton
2011-02-27doxygen: blender/editors tagged.Nathan Letwory
2011-02-27pedantic warning cleanup, also remove texspace_edit() since its been added ↵Campbell Barton
using a different method.
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-21I swear, it was just an innocence change in guardedalloc!Nathan Letwory
The butterfly wing flap, causing a nice storm in the rest of blender. Now all dependencies should point ok again. CMakers, do double-test.
2011-02-14made most variables which are only used in a single file and not defined in ↵Campbell Barton
header static for blenlib, blenkernel and editors.
2011-02-13warning cleanup.Campbell Barton
- fix mistake with grease pencil UI (&& was intended but & used). - use (void) rather then () across _all_ blenders code. - a few minor edits, don't shadow stack variables in roll calculation & avoid running memset() for VBO vertex map.
2011-01-30remove nan-makefilesCampbell Barton
2011-01-23correct own bad spellingCampbell Barton
2011-01-18bad spelling; 'indicies' --> 'indices'Campbell Barton
2011-01-15remove/comment unused defines.Campbell Barton
2011-01-15remove unused vars & avoid some clang warnings.Campbell Barton
2011-01-13remove/comment unused varsCampbell Barton
also removed unnecessary NULL checks (where the pointer was used later without checking).
2011-01-12remove redundant assignments & unused vars.Campbell Barton
also minor functional changes - OBJECT_OT_make_links_data() type property is now assigned to the operator property (so popup menu can find it) - removing BG image now returns cancelled if no image is removed.
2011-01-07remove references to BKE_utildefines where its not needed.Campbell Barton
- move GS() define into DNA_ID.h - add BLI_utildefines as an automatic include with makesrna generated files.
2011-01-07split BKE_utildefines.h, now it only has blender specific defines like GS() ↵Campbell Barton
MAKE_ID, FILE_MAXDIR, moved the generic defines to BLI_utildefines.h. no functional changes.
2011-01-03DAG_id_tag_update was being called with non object ID's and OB_RECALC_* ↵Campbell Barton
flags which only apply to objects. harmless but misleading.
2011-01-03Fix #25456: using Live Unwrap always unwraps with method Angle Based.Brecht Van Lommel