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-08-08code cleanup: rename G.rt to G.debug_valueCampbell Barton
2012-08-08Code cleanup: BKE_ prefix for public sequencer functionsSergey Sharybin
2012-08-06bring back the play option from 2.4xCampbell Barton
2012-08-06fix for node clipboard leak on exit, also use blenders convention for ↵Campbell Barton
function naming with BKE clipboard funcs.
2012-08-05use define for 0.375 = GLA_PIXEL_OFS, used all over the interface.Campbell Barton
also use M_SQRT1_2 in math_rotation.c
2012-08-04style cleanupCampbell Barton
2012-08-04style cleanupCampbell Barton
2012-08-04code cleanup:Campbell Barton
- replace (strcmp(vfont->name, FO_BUILTIN_NAME) == 0) with (BKE_vfont_is_builtin(vfont)). - reduce some double promotions.
2012-08-03fix/edits to vector font handlingCampbell Barton
- don't overwrite the font path with "<builtin>" when the font file cant be found, it caused bad problems when loading files on someone elses systems when paths couldn't be found blender would silently clobber paths (tsk tsk). - when fonts are freed their temp data is now freed too. - assigning a new filepath to a font now refreshes the object data.
2012-08-01make node select_all consistent with other select operators, also add ↵Campbell Barton
Ctrl+I, select inverse to node space.
2012-08-01style cleanup: >120 line lengthCampbell Barton
2012-08-01Fix #32209: Autosave ignores multires sculptingSergey Sharybin
Use a bit different fix, which gets active scene from context and uses this scene to figure out active object instead of itterating through all the objects.
2012-08-01style cleanup: whitespace, also add '?' to save over popup since it wasnt ↵Campbell Barton
totally clear it was a question (user pointed this out, they thought it was just notification and lost their work).
2012-08-01fix [#32232] Running script that changes area.type crashes blender.Campbell Barton
(reported the bug to keep some reference to the script that crashes).
2012-07-27Move sRGB conversion initialization to init_exit routinesSergey Sharybin
It was a threading issue in color management project which potentially could happen in trunk as well.
2012-07-27GetStdHandle may return NULL, which isn't really an error, or ↵Jason Wilkins
INVALID_HANDLE_VALUE which does indicate an error, but both should be checked.
2012-07-26On windows with --debug flag, change "Press enter key to exit..." to "Press ↵Jason Wilkins
any key to exit . . .". This is implemented by the new function wait_for_console_key.
2012-07-25add mask keymap to image window.Campbell Barton
debug prints for events when --debug-events is used to help track down why a key is/isnt used.
2012-07-19code cleanup: remove commented includes - mostly from 2.4xCampbell Barton
2012-07-18fix incorrect assert for mask face checking, also correct own bad spellingCampbell Barton
2012-07-17fix for scons building with compositorCampbell Barton
2012-07-17fix for building without the compositorCampbell Barton
2012-07-17code cleanup: spellingCampbell Barton
2012-07-16fix for linking with scons.Campbell Barton
2012-07-15minor refactor for rect functions. more consistent naming.Campbell Barton
2012-07-12Readme and Release Log Links:Thomas Dinges
* Update to 2.64
2012-07-11vector versions of BLI_in_rctf / BLI_in_rcti, (BLI_in_rctf_v, BLI_in_rcti_v)Campbell Barton
use where possible.
2012-07-08style cleanupCampbell Barton
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-07-05style cleanupCampbell Barton
2012-07-04More spell checking.Bastien Montagne
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-07-02code cleanup: minor editsCampbell Barton
2012-06-30don't close operator dialogs when the mouse moves outside of them. this is ↵Campbell Barton
very annoying when you spend time to enter in many values, escape, click-out-side still quits.
2012-06-29Added command line option "--debug-jobs"Sergey Sharybin
This option enables time profiling of background jobs, namely it's measuring run time of the job and prints it to the console.
2012-06-29Related to [#31936] Mesh saved in 2.63 with legacy format have holes instead ↵Bastien Montagne
ngons Make clear in this option's tooltip that it only saves tris and quads, no implicit triangulation of other ngons, which are lost!
2012-06-28option so operators can be executed with undo enabled (and redo).Campbell Barton
2012-06-20style cleanup: use TRUE/FALSE for ui align args.Campbell Barton
2012-06-19Fix part 2 of [#31840] Quick Explode Bugs related to it's fade option.Bastien Montagne
This in fact had nothing to see with this operator or its fade option, reports were simply not shown when repeating an operator. Carefully checked/tracked all calls to wm_operator_exec and WM_operator_repeat, and could not see any reason why this was this way, so I disabled this. Very easy to undo in case ugly problems arize (but I really do not expect any!).
2012-06-18Collada: Moved interface definitions from wm_operators.c to blender/editors/ioGaia Clary
2012-06-18Collada: (Exporter) reorganized the export panelGaia Clary
2012-06-17style cleanup: also quiet a warning.Campbell Barton
2012-06-17style cleanup:Campbell Barton
also fix for building ghost test and fix double free in one of the tests
2012-06-17Collada: (Exporter) add 'mesh type selection(view|render)' for Apply ↵Gaia Clary
modifiers option
2012-06-16code cleanup: colladaCampbell Barton
- when bubble sorting names - dont convert to str::string just to compare strings - use BLI_linklist_index() to check if an item is in the list - quiet some warnings
2012-06-16Collada: (Exporter) Add new option 'deform bones only'Gaia Clary
2012-06-15Internal refactoring of tracking module, should be no functional changesSergey Sharybin
- Re-arrange functions in headers and implementation file to make them more grouped by entity they're operating with. Also order of functions in implementation file should match order of functions in header for easier navigation. - Rename some functions to match conventions of naming public functions. - Some code de-duplication, still some room for improvements tho. - Split main 2D tracking functions into smaller steps to make it more clear. Accidentally OpenMP was disabled in some of previous commits, re-enable it.
2012-06-15Collada (Exporter) improved export panel layout minor code cleanupGaia Clary
2012-06-15Collada (Exporter) improved export panel layoutGaia Clary
2012-06-15Comment no longer accurate.Nicholas Rishel