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
2014-10-03Update link to the Support an Animation Movie linkSergey Sharybin
This is to be in the final release.
2014-09-18Fix crashes with timers.Antony Riakiotakis
Incorrectly accessing the menu pointer, set it to NULL before doing the tests. We don't restore the menu pointer because it is invalid by the time the operator ends.
2014-09-14Cleanup & typo in assignmentCampbell Barton
2014-09-13Fix T41811: unreachable code in wm_keymap.cBastien Montagne
There was also an issue with passing sl->spacetype here, for some reason...
2014-09-10WM: Add utility wmOrtho2_*** funcsCampbell Barton
Currently there are inconsistencies with pixel alignment. but this commit has no functional changes. - wmOrtho2_region_ui for UI/Text. - wmOrtho2_region_pixelspace for 2D drawing. - wmOrtho2_pixelspace - when the region isn't used.
2014-09-07Fix T41737 using append from menu will result in error messageAndrea Weikert
message in terminal was: RNA_boolean_get: WM_OT_append.relative_path not found. Added check for existence of the relative path property which was removed from append since it is not needed and used.
2014-09-05Cleanup: de-duplicate link/append propsCampbell Barton
2014-09-04Separate operators for Link and Append.Andrea Weikert
Since the choice to link or append has been removed in the file browser operator panel, there was no way to tell whether as a user you were linking or appending. To fix this the proposed patch separates the operators. Reviewers: campbellbarton, carter2422, venomgfx Subscribers: fsiddi Maniphest Tasks: T41593 Differential Revision: https://developer.blender.org/D770
2014-08-28Fix T41473: Cycles volume rendering is too darkSergey Sharybin
The issue was caused by the changed defaults from the Cycles side. Because of those properties being saved as an IDProp and not being saved to the file, every change to the defaults would ruin someone's day updating the values. Added a bpy.app.handler.version_update which is run after the regular do_versions() are done and could be sued by the scripts to apply versioning code on their settings. Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D761
2014-08-27Support better precision mode for angle properties in radial operatorAntony Riakiotakis
(holding down shift key) by using the new dial functionality.
2014-08-20Replace strstr with STRPREFIXCampbell Barton
No need to search the whole string.
2014-08-19Fix T41477: Some UI op buttons have no more option to edit shortcuts.Bastien Montagne
`WM_keymap_guess_opname()` was missing a bunch of op 'types'/familly. Now all are there, either trying to find a matching keymap, or explicitely listed in a comment as skipped for now. Note matching might not be perfect in all case, but we can easily tweak that later if needed.
2014-08-18Fix T41462: "Reload from trusted" button not prompting for confirmation.Bastien Montagne
Made 'revert_mainfile' op also handle the 'use scripts' option, and use it for this feature (since it has a nice simple invoke confirmation popup).
2014-08-15Fix T41421Antony Riakiotakis
Don't store selection properties, if those are set in the keymap we can end uo locking one state forever.
2014-08-14Fix part of T41297.Antony Riakiotakis
Add precision mode to radial operator by keeping the shift key pressed. Precision mode works by checking difference between absolute window coordinates and the point where shift was pressed and adding those to the distance between that point and the radial center. This allows bigger negative/positive range than using a strict radial scheme.
2014-08-11Minor cleanupAntony Riakiotakis
2014-08-11Pie Menus C code backend.Antony Riakiotakis
This commit merges the code in the pie-menu branch. As per decisions taken the last few days, there are no pie menus included and there will be an official add-on including overrides of some keys with pie menus. However, people will now be able to use the new code in python. Full Documentation is in http://wiki.blender.org/index.php/Dev:Ref/ Thanks: Campbell Barton, Dalai Felinto and Ton Roosendaal for the code review and design comments Jonathan Williamson, Pawel Lyczkowski, Pablo Vazquez among others for suggestions during the development. Special Thanks to Sean Olson, for his support, suggestions, testing and merciless bugging so that I would finish the pie menu code. Without him we wouldn't be here. Also to the rest of the developers of the original python add-on, Patrick Moore and Dan Eicher and finally to Matt Ebb, who did the research and first implementation and whose code I used to get started.
2014-08-07Experimental gooseberry request:Antony Riakiotakis
Expose radial control properties. That way, the operator can be tweaked in the input preferences to tweak other properties as well.
2014-07-23Fix for mixup in startup.blend data init when userprefs.blend was missingCampbell Barton
Rename UI_init_userdef_factory to BLO_update_defaults_userpref_blend This closely matches BLO_update_defaults_startup_blend so makes sense for them to be together.
2014-07-22Code cleanup, unneeded variable, always true when used, not used whenAntony Riakiotakis
set
2014-07-21GSOC 2013 paintAntony Riakiotakis
Yep, at last it's here! There are a few minor issues remaining but development can go on in master after discussion at blender institute. For full list of features see: http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.72/Painting Thanks to Sergey and Campbell for the extensive review and to the countless artists that have given their input and reported issues during development.
2014-07-21CleanupCampbell Barton
2014-07-19Defines: replace ELEM3-16 with ELEM(...), that can take varargsCampbell Barton
2014-07-14Follow up to previous commit.Antony Riakiotakis
* Expose is_tablet property to events to determine if event contains tablet data. * Expose tablet tilt for events as a 2D vector in python
2014-07-14Feature request:Antony Riakiotakis
Expose pressure from event system to python. This will return the tablet pressure, if a tablet is present, or 1.0 if not.
2014-07-11WM: add WM_operator_properties_create_ptrCampbell Barton
Call operator types directly and avoid a lookup when their known.
2014-06-23T39690: Modifications to Blender's 'temp dir' system.Bastien Montagne
Current temporary data of Blender suffers one major issue - default 'temp' dir on Windows is never automatically cleaned up, and can end being quite big when used by Blender, especially when we have to store per-process data (using getpid() in file names). To address this, this patch: * Divides tempdir paths in two, one for 'base' temp dir (the same as previous unique tempdir path), the other is a mkdtemp-generated sub-dir, specific to each Blender instance. * Only uses base tempdir when we need some shallow persistance accross Blender sessions - and we always reuse the same filename (quit.blend...) or generate small file (crash reports...). * Uses temp sub-dir for heavy files like pointcache or renderEXRs (Save Buffer option). * Erases temp sub-dir on quit or crash. To get this working it also adds a working 'recursive delete' to BLI_delete() under Windows. Note that, as in current code, the 'recover render result' hack-feature that was possible with SaveBuffer option is still removed. A real renderresult cache feature will be added soon, though. Reviewers: campbellbarton, brecht, sergey Reviewed By: campbellbarton, sergey CC: sergey Differential Revision: https://developer.blender.org/D531
2014-06-20Fix release notes link in splash.Bastien Montagne
Auto-generate this link from Blender version, as done for e.g.py API link. This commit should be backported to 2.71 branch.
2014-06-18Resolve memory leask with reports on initializationCampbell Barton
2014-06-17Fix T40639: operators ignore win.cursor_warp()Campbell Barton
2014-06-15Code cleanup: commentsCampbell Barton
2014-06-14UI: Add support for popups to refresh their layput (D578)Campbell Barton
This is needed for popups to chance state once activated, currently it makes use of operators `check` callback, after values are modified, as the file selector does already.
2014-06-13Code cleanup: use const for mouse location argCampbell Barton
2014-06-13Detect version suffix based on release cycle and version charSergey Sharybin
Should make it less error-prone for release tagging/ahoy.
2014-06-12Splash: enable rc labelCampbell Barton
2014-06-12Fix crash running in background modeCampbell Barton
2014-06-09Fix T40549: box selection starting point in the file requester.Bastien Montagne
We need to 'reset' mouse coordinates to the one it was when the gesture handling started, else org coords are where the tweak event is created, which gives a noticeable gap (several pixels) and unwanted behavior like the one retported about file box selection.
2014-06-07Replace open() with BLI_openCampbell Barton
2014-06-03Change to key modifier should trigger re-evaluation of drag-and-dropCampbell Barton
This change is part of a fix for T40435, but will postpone for now. Original patch by Sergey Sharybin
2014-06-03Code cleanup: use typedefs for ui handler functionsCampbell Barton
2014-06-02Disable key-modifier detection when activating windowsCampbell Barton
Causes issues on X11 for some users
2014-05-26Workaround T40317: Ghost/Win32 keys sticking for new windowsCampbell Barton
Ghost win32 ignores key-up events for newly activated windows. for now just disable code for win32 to initialize modifiers for new windows.
2014-05-20Fix T34255: Modifier keys ignored when activating windowsCampbell Barton
2014-05-16Fix T40202: File selector operators not reported in info viewCampbell Barton
2014-05-14Code cleanup: doxy commentsCampbell Barton
2014-05-09Code cleanup: styleCampbell Barton
2014-05-08Fix for crash when userprefs fails to read.Campbell Barton
2014-05-07playanim: check for escape key while loading imagesCampbell Barton
(todo from 2.4x)
2014-05-01Code cleanup: remove redundant filename copy & simplify splashCampbell Barton
2014-04-30Fix T39974: Popups lead to crash if 'UNDO' isn't setCampbell Barton
This isn't supported, raise an error instead