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
2021-01-25Fix T79356: Improved icons for MSIX buildsEric Bickle
Fixed an issue that was causing the app icon to render with a 'plated' background color in the taskbar and other areas of Windows. Updated all app icons in Microsoft Store package to match Microsoft's design recommendations. Added multiple scales for app icons for high resolution displays. Added high contrast app icons. Reviewed By: pablovazquez, jmonteath Maniphest Tasks: T79356 Differential Revision: https://developer.blender.org/D9681
2020-12-16Steam Release: Script creation of Steam build filesNathan Letwory
Script tool for automation of Steam build files for tasks like {T77348} This script automates creation of the Steam files: download of the archives, extraction of the archives, preparation of the build scripts (VDF files), actual building of the Steam game files. Requirements ============ * MacOS machine - Tested on Catalina 10.15.6. Extracting contents from the DMG archive did not work Windows nor on Linux using 7-zip. All DMG archives tested failed to be extracted. As such only MacOS is known to work. * Steam SDK downloaded from SteamWorks - The `steamcmd` is used to generate the Steam game files. The path to the `steamcmd` is what is actually needed. * SteamWorks credentials - Needed to log in using `steamcmd`. * Login to SteamWorks with the `steamcmd` from the command-line at least once - Needded to ensure the user is properly logged in. On a new machine the user will have to go through two-factor authentication. * App ID and Depot IDs - Needed to create the VDF files. * Python 3.x - 3.7 was tested. * Base URL - for downloading the archives. Reviewed By: Jeroen Bakker Differential Revision: https://developer.blender.org/D8429
2020-10-07Windows Release: Script creation of MSIX packageNathan Letwory
Script create_msix_package.py will download the ZIP file from the given URL. It will create the MSIX package with the version number and publisher ID given. Strongly recommended are the path to a valid PFX file, and the password to use that PFX file. These are needed for signing the resulting MSIX package. The signing step is optional though, but the resulting MSIX package cannot be installed outside of the Microsoft Store Example set VERSION=2.83.2.0 set URL=https://download.blender.org/release/Blender2.83/blender-2.83.2-windows64.zip set PUBID=CN=PUBIDHERE set PFX=X:\path\to\cert.pfx set PFXPW=pwhere python create_msix_package.py --version %VERSION% --url %URL% --publisher %PUBID% --pfx %PFX% --password %PFXPW% Requirements: * Python default from the Microsoft Store should do (3.8) * requests can be installed with `pip install requests` Note that for an LTS release that gets uploaded to its own LTS application release in the store you need to specify the `--lts` switch on the command-line to the script. Upon completion there will be a file with the name blender-2.83.2.0-windows64.msix. In case PFX file and its password were given on the command line MSIX package will also be signed for the Microsoft Store. Related Wiki page: https://wiki.blender.org/wiki/Process/Release_On_Windows_Store Reviewed By: jbakker Maniphest Tasks: T77348, T79356 Differential Revision: https://developer.blender.org/D8310
2020-10-07Fix T61985: NLA Bake exception baking pose with non-pose selectionCampbell Barton
2020-10-07Fix T80905: GPencil: bones cannot be selected using Ctrl + LMB (with Left ↵Philipp Oeser
Selection Preference) Was missing a dedicated entry for LMB select, this is to be consistent with how it is done for meshes. Maniphest Tasks: T80905 Differential Revision: https://developer.blender.org/D8935
2020-08-26Fix T78186: Dyntopo panel error with tools that dont have a brushPhilipp Oeser
Maniphest Tasks: T78186 Differential Revision: https://developer.blender.org/D8120
2020-07-29Fix T79031: Batch Generate-Previews doesn't work anymorePhilipp Oeser
Caused by rB19785b96c43f. Maniphest Tasks: T79031 Differential Revision: https://developer.blender.org/D8400
2020-07-29Fix View3D "Mirror" menu, both "Global" and "Local" items are GLOBALYevgeny Makarov
2020-07-29Fix T68845: Follow Active Quads, divide by zero errorCampbell Barton
2020-06-25GPencil: Fix unreported Vertex Opacity Overlay not workingAntonio Vazquez
This values was not working because was removed by error in refactor. Reviewed By: mendio, fclem Differential Revision: https://developer.blender.org/D8061
2020-06-25Fix missing hinting information in default fontHarley Acheson
Updates the font file to bring back hinting data, which got lost somehow in dc3f073d1c52. Second and (hopefully) final fix for T75898.
2020-06-25Fix missing hinting information in monospace fontNikhil Shringarpurey
Updates the monospace font file to bring back hinting data, which got lost somehow in dc3f073d1c52. Partial fix for T75898.
2020-06-11Fix T77448: Camera Solver constraint can't be converted to f-curveSergey Sharybin
A regression caused by c57f65c088a9 as a fix of another issue. Added an exception for camera solver as that is always pointing to camera object. Since this is a regression which happened in 2.83.0 this change is a candidate to be ported to the 2.83.1.
2020-06-08Fix T77367: Blender's snap package ignores command line optionsCampbell Barton
2020-06-03Linux: update appdata for 2.83 releaseBrecht Van Lommel
2020-06-03Ensure submodules are at correct commits for 2.83Nathan Letwory
2020-06-03Splash: new image for 2.83 by Ian HubertNathan Letwory
2020-06-02UI: Fix T77173: Report Background Colors for 2.83 ReleaseHans Goudey
This is a temporary solution for T77173 for the 2.83 release. D7203 provides a more long term solution for future releases. This adds theme colors for the three report backgrounds, setting them to the color used in 2.82. A separate commit in the addons repository will follow for changes to the bundled themes. Differential Revision: https://developer.blender.org/D7908
2020-05-29Blender: change bugfix release versioning from a/b/c to .1/.2/.3Brecht Van Lommel
The file subversion is no longer used in the Python API or user interface, and is now internal to Blender. User interface, Python API and file I/O metadata now use more consistent formatting for version numbers. Official releases use "2.83.0", "2.83.1", and releases under development use "2.90.0 Alpha", "2.90.0 Beta". Some Python add-ons may need to lower the Blender version in bl_info to (2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0. https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility This change is in preparation of LTS releases, and also brings us more in line with semantic versioning. Fixes T76058. Differential Revision: https://developer.blender.org/D7748
2020-05-26Fix T77082: Greasepencil error accessing material dropdown on an object ↵Philipp Oeser
without materials Differential Revision: https://developer.blender.org/D7841
2020-05-26Fix T77067: GPencil Object without materials cannot use Vertex Color modeAntonio Vazquez
2020-05-25UI: Fix T76918: 3D Mouse Inconsistent / Inaccessible UIHans Goudey
This consolidates the UI code for NDOF input settings, making all settings accessible from the preferences. This works around an issue where the Space Navigator's "Menu" button doesn't trigger the settings menu in Blender. I also took the opportunity to redo the UI layout. Note: Separate commit for 2.83 because UI layouts features have diverged. Differential Revision: https://developer.blender.org/D7806
2020-05-25Revert "UI: View3D Cursor Changes"Dalai Felinto
This change is yet to be followed by a more comprehensive design proposal including: * How to differentiate the modes apart. * More clear definition of tools and the rules for their components (gizmo, cursor). * Selection as a non-tool vs drag option. This can be revisited for 2.90 with more time. For now the UI team agrees to revert this. -- This reverts commit 4aa703aa1430bc53f19e2cc7182e70db1a916f13.
2020-05-23Fix T76578: Show bone visibility driver in outlinerNathan Craddock
Allow setting drivers and keyframes for the bone visibility restriction icon in the outliner. Before the button was a simple icon button, but it is now connected to the RNA property to show the driven or keyframed state. Also when hiding a bone from the outliner it would be deselected, but from the properties editor it would remain selected. This moves the deselection to the RNA update function to ensure the bone is always deselected. Differential Revision: https://developer.blender.org/D7825
2020-05-22UV: remove "UV Local View" for UV editingCampbell Barton
This feature was added when Blender used tex-face (per-face images), but doesn't make as much sense since this was removed. Removing this from UV edit-mode as this wasn't working in any of the 2.8x releases, causing UV's to be visible but unselectable. Resolves issue raised in T76958.
2020-05-21Cleanup: excess blank lines and parenthesisCampbell Barton
2020-05-19Fix T74577: world_to_camera_view broken for off-axis projectionSebastian Parborg
The issue was that the projection would be inverted. So if you shifted 0.1 along the y axis, world_to_camera_view would act as if you had shited it -0.1 along the y axis.
2020-05-19Fix T76375: UDIM Rectangular Tiled Image EEVEE freezes BlenderJeroen Bakker
When packing the image the height of the tile was checked to the width of the packing area. This resulted that the tile was ignored. Reviewed By: Clément Foucault Differential Revision: https://developer.blender.org/D7784
2020-05-19Fix T76821: Generalize Use Flow TooltipAaron Carlisle
2020-05-19Fix T76397: Missing value property on Clear Mask pie menuPablo Dobarro
Without this value defined it was reusing the same 1.0 value after using fill mask, so it was not working. Reviewed By: jbakker Maniphest Tasks: T76397 Differential Revision: https://developer.blender.org/D7699
2020-05-18Fix T76849: Duplicate templates show in the New menuCampbell Barton
2020-05-15Fix T76778: Dopesheet "Show Errors" affects timelineSybren A. Stüvel
Since the timeline is a variation of the dopesheet, it also respects some of the dopesheet settings. The "Selected Only" setting is overridden from a scene property (since rB4904eadc0f38) and the "Display Hidden" dopesheet setting seems to be ignored. This commit adds the remaining "Show Errors" setting to the menu, allowing it to be updated from the timeline.
2020-05-14GPencil: Add licence text at headerAntonio Vazquez
2020-05-14Update RNA Manual References after camera fixDalai Felinto
There was no link to the base camera* properties (e.g., lens).
2020-05-14GPencil: Changes in 2D templateAntonio Vazquez
Differential Revision: https://developer.blender.org/D7619
2020-05-14Fix T76150: Viewport Axes not toggling correctly when 'Floor' and 'Grid' are ↵Ankit
turned off Fix T76150 While comparing with the deleted file [1] in the commit [2], saw this little addition which most probably was added for optimisation. Removing it fixes the behaviour too. To test: - In Viewport Overlays > Guides, uncheck both Grid & Floor. - Try toggling all three axes individually. - Z just sticks. X cannot be shown without Y enabled. [1] https://developer.blender.org/diffusion/B/change/master/source/blender/draw/modes/object_mode.c;9516921c05bd9fee5c94942eb8e38f47ba7e4351 [2] {rB9516921c05bd9fee5c94942eb8e38f47ba7e4351} Reviewed By: fclem Maniphest Tasks: T76150 Differential Revision: https://developer.blender.org/D7568
2020-05-14Fix T76729: Particle Hair Get Occluded by OverlaysJeroen Bakker
When using an external render engine Blender will still draw an OpenGL depth buffer for the overlay engine to work correctly. Particle systems were ignored, what lead to occluded hair and other artifacts. Reviewed By: Clément Foucault Differential Revision: https://developer.blender.org/D7730
2020-05-13Revert "GPencil: Add new X-Ray option for Canvas Grid"Antonio Vazquez
This reverts commit fd025b0b7a46c5e56f348b73cf989c6bbddec707.
2020-05-13GPencil: Add new X-Ray option for Canvas GridAntonio Vazquez
In some situations is good to have a grid visible anot beeing occulde by meshes. By default is OFF. Differential Revision: https://developer.blender.org/D7721
2020-05-13Fix T76306: Disable use creases when there is displacement dataPablo Dobarro
Use creases changes the limit surface, so the displacemente data is won't be correct if this option is modified without updating the displacement. Reviewed By: sergey Maniphest Tasks: T76306 Differential Revision: https://developer.blender.org/D7700
2020-05-12Fix T74012: missing fluid simulation domain panels in workbenchPhilipp Oeser
Maniphest Tasks: T74012 Differential Revision: https://developer.blender.org/D7706
2020-05-12Fix T72920: Snap package fails to play audio and blocks audio in other appsBrecht Van Lommel
ALSA and OSS are not available for the snap packages, and trying to initialize them seems to cause some problems for other applications. Instead configure OpenAL and SDL to use PulseAudio, and set PULSE_SERVER environment variable to make it work.
2020-05-12Fix missing standard OpenColorIO roles, as reported by ociocheckBrecht Van Lommel
These are not used by Blender, but can be used by other software using our configuration.
2020-05-12GPencil: Add new parameter for SMAA thresholdAntonio Vazquez
This parameter allows to define the threshold for SMAA algorithm. Differential Revision: https://developer.blender.org/D7708
2020-05-12UI: add offset edge slide to edge menuCampbell Barton
This was only available in the context menu which only shows when the selection was set to edge-mode, even though this works in other modes.
2020-05-07Resolve keymap conflict for poselibPhilipp Oeser
Caused by rBe07b245fe1f4 (new 'Select Linked' posemode op). Above commit took CTRL+L (and this is kept for consistency with other 'Select Linked' operators). So now keymap for poselib is: poselib browse: ALT+L (was CTRL+L -- conflict here) poselib add pose: SHIFT+L (same as before) poselib remove pose: SHIFT+ALT+L (was ALT+L) poselib rename pose: SHIFT+CTRL+L (same as before) ref. D7542
2020-05-07Fix T75793: Mirror modifier UV flip only works on first UDIM TilePhilipp Oeser
Was flipping around the 0-1 range, now (optionally) flip around each tile. Also added this option for BMesh bmo_mirror. Reviewed By: campbellbarton Maniphest Tasks: T75793 Differential Revision: https://developer.blender.org/D7460
2020-05-07Fix T76500: Annotation Tooltip in Movie Clip Editor is using old grease ↵Antonio Vazquez
pencil text
2020-05-06Fix Python error in scene without sequencerBrecht Van Lommel
2020-05-06Fix T76440: Follow Track -> Constraint to F-Curve has no effectGermano Cavalcante
Differential Revision: https://developer.blender.org/D7630