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
2016-09-26Blender 2.78: Update submodule hashesSergey Sharybin
2016-09-22Blender 2.78: Point locales to the latest branchSergey Sharybin
2016-09-14Blender 2.78: Point locales to a new branch hashv2.78-rc2Sergey Sharybin
2016-09-14Add script which scales splash screen downSergey Sharybin
Based on reading documentation around. This particular version is based on the ImageMagic documentation which could be found there: http://www.imagemagick.org/Usage/filter/ http://www.imagemagick.org/Usage/filter/nicolas/ Current filter is based on measuring mean error with the current splash screen and choosing combination of parameters which gives minimal mean error.
2016-09-022.78 release: Point locales to a proper updated branchv2.78-rc1Sergey Sharybin
2016-09-02Point submodules to latest master branchesSergey Sharybin
We did not update them for really long time and the currently used hashes are quite old and probably wouldn't work without manually updating all submodules. Not as if it's something totally crucial (we ask to update submodules all the times and that's what `make update` does) but updating hashes will save some cloning/checkout time.
2016-09-02Blender 2.78 commit!Sergey Sharybin
Includes: - Version bump to 2.78 - Doxy file update - New splash screen - Wrapped some do_versions with version check - Updated template to use proper font After poking around a lot it seems Droid Sans was used during 2.7x series. (or at least difference between using this font and comparing to previous splash screens gives none visible difference).
2016-08-21Icons: Fix small alignment and shadow issue in prvicons. Add missing ↵Ines Almeida
copyright notice.
2016-08-04Grease Pencil v2 BranchAntonio Vazquez
Improve current Grease Pencil in order to get a better 2D animation tool. More info in WIKI pages: https://wiki.blender.org/index.php/User:Antoniov Reviewed By: Severin, aligorith, campbellbarton Patch by @antoniov, with edits by @Severin. Differential Revision: https://developer.blender.org/D2115
2016-07-25Call to python3 for stand-alone scriptsCampbell Barton
Needed since Debian & FreeBSD both move away from keeping a synlink to `python`.
2016-06-11UI Font: Fix bad kerning of Thai font.Bastien Montagne
Thai font is a complex script that assumes full featured unicode layout engine, while Blender only knows about basic kerning (offset of a char based on the previous one). So this commit edits Thai part of our i18n font to fix the very bad spacing of thai chars we had in Blender so far. Work done by Hồ Châu, many thanks!
2016-03-29Add license text for OCIO configurationSergey Sharybin
2016-02-262.77 splashCampbell Barton
by Pokedstudio
2016-01-04Remove unused datatoc scriptCampbell Barton
2015-11-04File Selector, support filepath droppingGaia Clary
This adds support for dropping a filepath on an open file-selector to set that path.
2015-10-13Make sure submodules are pointing to master branchesSergey Sharybin
2015-10-11CMake: Enable WITH_PYTHON_INSTALL for lite buildsCampbell Barton
This is needed to run on OSX and Windows when system python isn't found.
2015-10-11BGE: Fix for last commitThomas Szepe
The icon16 and icon32_mesh_capsule.dat files are committed with 0 Kb, because I used the patch from the differential from the Phabricator which I done with a regular .diff file.
2015-10-11BGE: Add icons to collision shapes.Thomas Szepe
This patch adds icons to the physic collision shapes. Adding a new capsule shape 'mesh_capsule' icon which represent the shape better then the metaballs icon. And replace the metaballs icon for the Blender collision shape. {F206628} Reviewers: moguri, sybren, agoose77, lordloki, mont29, panzergame, campbellbarton Reviewed By: lordloki, panzergame, campbellbarton Projects: #game_engine, #game_ui, #user_interface Differential Revision: https://developer.blender.org/D1403
2015-10-08File Read: de-duplicate command line file-loadCampbell Barton
WM_file_read must support background mode already since it can be called by Python scripts in background mode.
2015-10-01Fix potential memory leak bakingCampbell Barton
2015-09-22Fix report banner text widthCampbell Barton
2015-09-20Cleanup: warning, styleCampbell Barton
2015-09-172.75 splashCampbell Barton
by The Alike Team
2015-09-06Add icon for incremental grid snappingJulian Eisel
As decided in D910, we use a new icon for incremental grid snapping and use its old one for absolute grid snapping. This also touches the library_data_broken icon .dat files, seems some changes on its .svg entry landed in upstream without updating the other icon files (already noticed this when committing icon for auto-offset, but removed it from commit - leaving it in now to avoid further confusion) Icon by @plyczkowski (made a tiny edit as it looked a bit blurry in 16x16). Thx!
2015-08-01Correction to previous commit, git messed up icon binaries :/Julian Eisel
2015-08-01Note Editor: Auto-offset nodes on insertionJulian Eisel
Implements "Auto-offset" (called "insert offset" in code) feature for Node Editor, developed during and after LSOC :) Idea and sponsoring by Sebastian König, blendFX, Mathias Eimann, Mikavaa, Knick Design When you drop a node with at least one input and one output socket onto a an existing connection between two nodes, Auto-offset will, depending on the direction setting, automatically and animated move the left or right and all of its following nodes away to make room for the new node. The direction for offsetting can be toggled while you are moving the node by pressing „T“. The auto-offset is enabled by default but can be disabled in the header of the node-editor. The offset margin can be changed in the editing section of the User Preferences. Thanks a lot to the sponsors, and especially to Sebastian who helped *a lot* with this. That's how users can help developing Blender!
2015-07-15Icons: Add new 'library_data_broken' one.Bastien Montagne
2015-07-11Add Thai and Khmer charsets to our i18n font.Bastien Montagne
2015-06-25splash fix, previous had color conversion errorCampbell Barton
2015-06-102.75 splashCampbell Barton
by Gooseberry team
2015-05-02Fix T44586: Viet language problem for Blender InterfaceBastien Montagne
We were missing many of the complex diacritics combinations in latin extended additional code block... Alawyas a pleasure to edit this font... :|
2015-04-16Fix T44406: the Hebrew font causes trouble.Bastien Montagne
Looks like the droidsans hebrew font we used back in the days had some kerning bug or so... Updated with latest version from Debian Testing repo, works nice now.
2015-03-23Change coefficients to 4 digit precision only.Antony Riakiotakis
Need to match convention and sum up to 1.0 (previous set had a minor 10^(-10) overflow) Thanks to Campbell for taking notice.
2015-03-17Part 1 of D1082 by Troy Sobotka, add API in OCIO for luminanceAntony Riakiotakis
calculation.
2015-03-11Point submodules to RC1 tagsv2.74-rc1Sergey Sharybin
2015-03-112.74 splashCampbell Barton
by Manu Järvinen
2015-03-06Fix typo in "Add" and "Subtract" mode of Vector Math node.Kevin Dietrich
Differential Revision: https://developer.blender.org/D1003
2015-02-05Custom Loop Normals: Add NormalEdit modifierBastien Montagne
Nothing much to say here, basic tool to make normals point toward a target, or to make them point 'outward' as if object was a spheroid (useful for game bushes etc.). Also, forgot a big thank you to Campbell for the extensive review work he has done on this project!
2015-01-29cleanup: shebang linesCampbell Barton
D888 by @sambler
2015-01-20Update icons after recent cleanup in svg file.Bastien Montagne
Note differences in those five icons are invisible by eye, just for sake of consistency.
2015-01-20Cleanup SVG icon file, pass II.Bastien Montagne
Name each icon group from its define in Blender. Simplifies searching for a given icon (in one way or the other), and could also be useful one day in some scripting. Also, removed/fixed more empty and stray groups... Finally, found that we have several svg icons not linked to any defines, and one define with no icon (dyntopo), would be nice to sort this one way or the other too.
2015-01-20Cleanup SVG icons file: pass I.Bastien Montagne
Made sure each icon has its own, 'private' group. Removed empty groups, and some stray paths and rects (among other benefits, 'make icons' do not generate anymore that half o dozen of empty icons one had to remove by hand before committing ;) ). Note: double checked, only five generated icons differ (on binary level) from before, with no actual visual diff.
2015-01-13FileBrowser: Add an 'hidden file' icon, and use it instead of named checkbox ↵Bastien Montagne
for 'show hidden' param.
2015-01-12Fix typo in OCIO configuration fileSebastian Koenig
2015-01-10Transfer data: add modifier.Bastien Montagne
Not much to add, modifier uses same code as operator basically, only key difference is that modifier will never create data layers itself, you have to use dedicated operator for that.
2014-12-23Blender 2.73 release candidate commitv2.73-rc1Sergey Sharybin
This commit contains: - Subversion bump to 2.73 - Release cycle is set to "rc" - Submodules are pointed to appropriate tag now (addons contrib just points to the latest contrib repo) - New shiny splash screen!
2014-12-10startup.blend, update movie-tracking layout T41660Campbell Barton
Layout by @sebastian_k, now includes 3D view.
2014-10-21UI Icons: add 'triangle-bar' left/right/up/down icons.Bastien Montagne
2014-10-14Fix for previous commit which changed submodulesSergey Sharybin
Never ever stash submodules for commit, it also real helps checking the commits before you do push.