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-10-21style cleanup: trailing tabs & expand some non prefix tabs into spaces.Campbell Barton
2012-09-20code cleanup: remove unused macros, commet some which may be useful later - ↵Campbell Barton
or good to keep for completeness. quieted some warnings and add flags -Wmissing-include-dirs and -Wno-div-by-zero to cmake/gcc
2012-09-18code cleanup: remove unused definesCampbell Barton
2012-09-09style cleanup:Campbell Barton
also remove some redundant conversions int -> short -> int
2012-07-09style cleanupCampbell Barton
2012-06-20style cleanup: use TRUE/FALSE for ui align args.Campbell Barton
2012-05-09style cleanup: whitespace/operatorsCampbell Barton
2012-04-28code cleanup: replace some long ELEM7 checks with macro ↵Campbell Barton
OB_TYPE_SUPPORT_EDITMODE()
2012-04-21style cleanup: multi-line if statements.Campbell Barton
2012-03-27style/name cleanup: have EDBM_* functions match our style guide and also ↵Campbell Barton
match BM_ function naming conventions
2012-03-26style cleanup: mostly whitespace around operatorsCampbell Barton
2012-03-24style cleanup: mainly for mesh code, also some WM function use.Campbell Barton
2012-03-22style cleanup: spaces aroudn operators for operator definitions.Campbell Barton
2012-03-21patch [#30593] Minor 3D View Hint ChangesCampbell Barton
from Harley Acheson (harley)
2012-03-18spelling cleanupCampbell Barton
2012-03-04style cleanup - comment spelling + translate some dutch.Campbell Barton
2012-03-03style cleanup - use aligned * prefixed blocks for descriptive comments (was ↵Campbell Barton
already used a lot and part of proposed style guide).
2012-03-02code cleanup:Campbell Barton
replace casts: '((Mesh *)ob->data)->edit_btmesh' with 'BMEdit_FromObject(ob)' also minor style edits.
2012-02-22code cleanyp - no functional changes.Campbell Barton
2012-02-20- remove some unused editmesh functions.Campbell Barton
- copy & rename EditMesh stricts for use with scanfill (remove unused members)
2012-02-18svn merge ^/trunk/blender -r44189:44204Campbell Barton
2012-02-17Revert part of own recent header cleanup: pivot and manipulators in fact ↵Sergey Sharybin
makes sense in particle edit mode.
2012-02-17svn merge ^/trunk/blender -r44136:44189Campbell Barton
2012-02-17Cleanup of 3D viewport header in painting modes:Sergey Sharybin
- Hide Manipulate center points in sculpt and particle edit modes - Hide 3D manipulators and orientation from sculpt mode - Hide snap buttons in sculpt, weight, texture, vertex and particle painting modes All this options weren't make sense in this modes and might only confuse user. This will resolve issue #30180: 3D View header buttons and modes
2012-01-26svn merge ^/trunk/blender -r43693:43733Campbell Barton
2012-01-26Fix for layer toggling always sticking to extend policy.Sergey Sharybin
Reported by Dalai in IRC, thanks for pointing to issue.
2012-01-17svn merge ^/trunk/blender -r43420:43436Campbell Barton
2012-01-16more keymap editsCampbell Barton
- make sure defaults are not assumed (so reuse last settings doesnt override) - replace 0/1 for TRUE/FALSE defines.
2011-12-23svn merge ^/trunk/blender -r42778:42839Campbell Barton
2011-12-22Fix/workaround for russian ui crash on exitSergey Sharybin
Crash was caused by data segment corruption near "string" in view3d_modeselect_pup(). Enlarged size of this static buffer, so it's now enough to store translated modeselect string. It's not actually fixes because in some other language this modeline might be much longer and it'll lead to corruptions again.
2011-12-22split >120 length lines (mostly if statements)Campbell Barton
2011-12-05manual sync with trunk - pulling in changes where the issues are not bmesh ↵Campbell Barton
spesific - some merges added lines in multiple times - removed some NULL checks that were only in bmesh - enable cycles by default (was disabled because it used not to work) - make formatting match
2011-12-05syncing some minor formatting edits from bmesh branch.Campbell Barton
2011-11-16svn merge -r41847:41899 ^/trunk/blenderCampbell Barton
2011-11-16Fix: part of 3d view header disappears when collapsing menus.Brecht Van Lommel
2011-11-06svn merge ^/trunk/blender -r41503:41575Campbell Barton
2011-11-05use (const char*) rather than (char*) where possible.Campbell Barton
also removed some unused function definitons.
2011-11-05macro formatting & remve some unused code.Campbell Barton
2011-10-24svn merge ^/trunk/blender -r41226:41227 .Campbell Barton
2011-10-24svn merge ^/trunk/blender -r41150:41175Campbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-21Cleaning i18n code.Bastien Montagne
Previous state: Right now, there are "memories" of the "old" (less than a month!) translation way: * A few remaining calls to BLF_gettext() (only UI_translate_do_iface and UI_translate_do_tooltip should be used). * The _() macro still also calls BLF_gettext()! New state: Here are the changes made by the patch: * Removing the no more needed _() macro. * Removing most N_() and _() calls, only keeping the few needed ones (i.e. strings that are in no other way findable by xgettext and/or update_msg script). * Defining in UI_interface.h IFACE_() and TIP_() macros (resp. for UI_translate_do_iface and UI_translate_do_tooltip). * Replacing all calls to BLF_gettext by relevant IFACE_ or TIP_ one. * Replacing all calls to UI_translate_do_iface by IFACE_. * Replacing all calls to UI_translate_do_tooltip by TIP_. All this somewhat clarifies and simplifies the code. On the bf-translations scripts side, this only implies adding IFACE_ and TIP_ as detection markers for xgettext. It also allows to reduce POTFILES.in quite notably (only 20 files remaining in it). Please also have a look at those pages: * Coder POV: http://wiki.blender.org/index.php/Dev:2.5/Source/Interface/Internationalization * Translator POV: http://wiki.blender.org/index.php/Dev:2.5/Doc/How_to/Translate_Blender
2011-10-09svn merge ^/trunk/blender -r40720:40872Campbell Barton
2011-10-06hide 3d view header `use_pivot_point_align` button in editmode since its not ↵Campbell Barton
used there, also remove unneeded copy() funcs from quick effects.
2011-09-23svn merge ^/trunk/blender -r40432:40491Campbell Barton
2011-09-23svn merge ^/trunk/blender -r40394:40395Campbell Barton
2011-09-22remove redundant code & use GL_LINE_STRIP for object spiral drawing.Campbell Barton
2011-09-22svn merge ^/trunk/blender -r40367:40368 --- raddish weight paint mergeCampbell Barton
2011-09-20Merging r40366 through r40392 from trunk into soc-2011-garlicsoc-2011-garlicSergey Sharybin
2011-09-20i18n: replace some bit checks from U.transopts with utility functions ↵Sergey Sharybin
UI_translate*