Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-09-27Merge branch 'master' into blender2.8Brecht Van Lommel
2018-09-27Fix T56938, T54222: network render broken pipe errors.Brecht Van Lommel
Always put content-length in the header when sending files now. Also deduplicates file sending code into one function. Patch by A K (campino). Differential Revision: https://developer.blender.org/D3741
2018-09-07Merge branch 'master' into blender2.8Campbell Barton
2018-09-07Cleanup: trailing spaceCampbell Barton
2018-04-30Merge branch 'master' into blender2.8Sergey Sharybin
2018-04-17A few addons related cleanup after BGE removalDalai Felinto
2018-02-13Network Renderer: redirecting Documentation wiki linklijenstina
Bump version to 1.8.1 As mentioned in T54062: Since the previous link was pointing out to the old Wiki Manual, created the appriate page on the Add-ons wiki. No other functional changes
2017-03-19Cleanup: identity for None comparisonCampbell Barton
2017-03-19Cleanup: trailing spaceCampbell Barton
2017-01-21Fix T50475: Fixed using netrender with SSL, did not pass all arguments for ↵TheOnlyJoey
ssl.wrap_socket
2016-09-05Fix T43966: Network renderer: In large projects the default set ↵Gottfried Hofmann
socket.timeout was to low.
2016-09-05Fix T46042: Netrender: Slave continues to render frames after cancellation ↵Gottfried Hofmann
by job manager. To be backported to 2.78.
2016-05-01Cleanup: tabs to spacesCampbell Barton
2016-02-23Remove win2k checkv2.77-rc2v2.77-rc1Campbell Barton
2016-02-17Fix related to T45097: Network RenderBastien Montagne
Based on investigation by Detlef Jankowiak-Evers (@DeJev) and patch by Gottfried Hofmann (@gottfried), thanks. Differential Revision: https://developer.blender.org/D1807
2016-01-12Fix typo in netrender (related to T45097).Bastien Montagne
Reported by @yoshi, thanks!
2015-01-22Fix: replaced Python module "imp" with "implib"Sybren A. Stvel
Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016
2014-12-05netrender: resolve issue with PROTOCOL_SSLv3Campbell Barton
This is no longer available for Debian, use SSLv23 as suggested.
2014-06-30Netrender: enable scripts, driversCampbell Barton
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-08-19Adding newly created tracker ticket (every addon should have one… ;) ).Bastien Montagne
2013-02-18Systematically adding some custom id to template_list using default ↵Bastien Montagne
UI_UL_list class, this one is commoly used more than once in an area, yielding collision issues if they do not have a custom id...
2012-12-28Updated to use UI_UL_list as template_list...Bastien Montagne
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-12-19disable initializing data on the scene when registering netrender. addons ↵Campbell Barton
registration shouldnt modify the current blend file.
2012-10-19Fix #32892: network render slave freezes on OS X when master IP not found.Brecht Van Lommel
2012-09-05code cleanup: python - pass multiple args to string startswith() / ↵Campbell Barton
endswith() functions rather than calling multiple times.
2012-08-25use sets when checking against multiple typesCampbell Barton
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-04-23netrenderMartin Poirier
job and frame status cleanup (move to the model module) record transitions between states in job to be able to get (among others) the started and finished time.
2012-04-19netrenderMartin Poirier
Don't add empty tag if not tags have been specified. Reported by Brant Anderson (by email)
2012-04-18netrenderMartin Poirier
baking and render options for tags on slaves (default true for both means a slave can do all jobs by default)
2012-04-15netrenderMartin Poirier
invalid operator return value when downloading results from a job with no finished frames
2012-04-15netrender bugfixMartin Poirier
render jobs tags weren't set at all. Reported by Brant Anderson (by email)
2012-04-13Netrender UI:Thomas Dinges
Fix a typo "Confgiguration" -> "Configuration" Patch by Tobias Kummer (tobkum), thanks!
2012-02-25[#30235] Net Render Master/Slave Not Working in OSX (Blender v2.62 32 Bit)Martin Poirier
Reported by Ron Proctor netrender didn't recursively create missing directory for user specified temporary paths. Also added environment variables and user expansion to properly support env vars and user (~ and ~user) in paths.
2012-02-12netrenderMartin Poirier
change to the repatching and local naming algorithms to better support different files with same name and dependency folder hierarchies.
2012-02-12netrenderMartin Poirier
use an enum property for VCS job type (much more user friendly this way)
2012-02-10netrenderMartin Poirier
New web ui work by Philippe Van Hecke: JQuery ui theme selector.
2012-01-30netrender (features coded by Philippe van Hecke)Martin Poirier
Support for secure connections between Master/client/slave using SSL/HTTPS Fixed a bug with total job time on web interface (wrong value)
2012-01-24netrenderMartin Poirier
adding missing images in css folder
2012-01-23SVN maintenance.Guillermo S. Romero
2012-01-23netrenderMartin Poirier
new jquery-based web interface developed by Philippe Van Hecke (great thanks) Works in parallel with the existing html interface (both have a link pointing to the other) which might very well be phased out at some point.
2012-01-15netrenderMartin Poirier
use threading for interprocess communication. Don't stall slave communication when rendering/baking process output blocks. This enables running slow baking and rendering jobs correctly without the slave disconnecting from the master. It also makes slaves much more responsive to cancelling jobs on the master. add save on job option (default false) to save the current file before sending a rendering blender job.
2012-01-14remove api field, was never used.Campbell Barton
2012-01-11netrenderMartin Poirier
typo prevented returning proper content-typeé Thanks to Philippe Van Hecke for bug finding.
2012-01-09netrenderMartin Poirier
- distributed point cache baking - (baking fluids or anything else needs to be added but is not a hard task) - master support getting all results as a zip (rendering, baking or otherwise), available as a link on the job's page in the web interface - framework to support multiple result files per frame/task (needed for baking)