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
2011-04-21whitespace only, no functional change mixed tabs/spaces --> tabs.v2.57aCampbell Barton
2011-04-21minor changesCampbell Barton
- remove some warnings - fix typos - cmake allow in-source build (when WITH_IN_SOURCE_BUILD is defined) - cmake, use an explicit list of rna files (don't glob)
2011-04-20edit definitions to use const for non modified args, also correct incorrect ↵Campbell Barton
definition for clip_line_plane().
2011-04-11api changes needed for for copying old settings to new.Campbell Barton
- py: bpy.utils.resource_path('USER', 2, 56) - C: BLI_get_folder_version(id, major, minor, check);
2011-04-10quiet msvc/mingw compiler warnings.Campbell Barton
2011-04-08Apply console part of patch [#26044] Windows thumbnails and improved ↵Nathan Letwory
filetype registration submitted by Tom Edwards This patch introduces a switch -con and its longer version --start-console. When giving this on cmd-line you'll get the black console window. The new behaviour is to hide it by default. We'll still see briefly the console at startup and during exit, but that's something that cannot be changed. If you start blender from a cmd.exe, the console will not be hidden.
2011-04-08fix [#26803] Libs paths are case sensitive in windowsCampbell Barton
another case was exposed by this report, making relative paths wasn't case insensitive on windows.
2011-04-06fix [#26803] Libs paths are case sensitive in windowsCampbell Barton
use case insensitive path comparison on windows: BLI_path_cmp
2011-04-03quiet various warnings, also disable -Wdouble-promotion with cmake since it ↵Campbell Barton
gives warnings with variable length args.
2011-04-02add angle wrapping functions: angle_wrap_rad(), angle_wrap_deg().Campbell Barton
use with mathutils.
2011-04-02quiet gcc float -> double promotion warnings.Campbell Barton
2011-03-31fix for own error r35877, was ignoring #'s in file path by using the digits ↵Campbell Barton
value passed rather then the number of digits in the string.
2011-03-29fix [#26656] video sequence editor rendering stops at frame 9999Campbell Barton
2011-03-29Apply [#26044] Windows thumbnails and improved filetype registrationNathan Letwory
submitted by Tom Edwards Fix [#25473] 64bit Windows installer for version 2.56 is not working patch submitted by Caleb (Dobz) The thumbnail patch adds a thumb handler DLL that adds .blend thumbnail support in Windows Explorer. A -r option is added to do registration in background. The patch also improves icon building and metadata for blender.exe. Caleb fixes and cleans up our installer to an acceptable state. The patch uses the new -r option to do the .blend extension and thumbnailer registration. Thanks to both Caleb and Tom for their efforts!
2011-03-27math lib and UV project: floats were being implicitly promoted to doubles, ↵Campbell Barton
adjust to use floats.
2011-03-27object/paint/misc-files: floats were being implicitly promoted to doubles, ↵Campbell Barton
adjust to use floats. - also UV angle stretching was using radians->deg which wasn't needed.
2011-03-27interface: floats were being implicitly promoted to doubles, adjust to use ↵Campbell Barton
floats (in most cases) otherwise cast to double.
2011-03-26Fix #26582, #26586, #26613: recent normal calculation changes didn't takeBrecht Van Lommel
into account that some tools use normals for things other than display. Now we properly initialize vertex normals at flat faces too. Also fixed a normal refresh issue, and deduplicated CDDM/mesh normal calculation code.
2011-03-25use size_t rather then int for passing lengths to string functions since ↵Campbell Barton
this is what guarded-malloc uses as well as stdlib.h.
2011-03-20Fix/change in normal computation, now the viewport uses the same angleBrecht Van Lommel
weighted normals as the render engine, and the render engine will copy normals from the mesh rather than always recalculating them. Subsurf/multires still use regular vertex normals, but they are expected to be sufficiently high resolution to not need this. This means that normal maps displayed in the viewport actually match the render engine exactly and don't have artifacts due to this discrepancy. It of course also avoids unexpected surprises where your render normals look different than your viewport normals. Subversion bumped to 4 for version patch to recalculate normals. Patch by Morten Mikkelsen, with some small changes.
2011-03-20== filebrowser == Code cleanupAndrea Weikert
* Separate out selection flags from file type flags, was bothering me since forever ;) * Also renamed ACTIVEFILE to SELECTED_FILE to better reflect actual usage in code. * Fix crash introduced with last commit, better check for valid selection
2011-03-18fix for error in r35590, ARRAY_LAST_ITEM was returning one item over the end ↵Campbell Barton
of the array.
2011-03-17Bugfix [#26505] zoom in selected keys on graph editorJoshua Leung
Not really a "bug", but it was on my todo anyways. Based on patch [#26508] by Campbell, with a few modifications including extending this to the Action/DopeSheet editor too.
2011-03-17error with TIMEIT util define.Campbell Barton
2011-03-15bugfix [#26505] zoom in selected keys on graph editorCampbell Barton
measure uv vertex distance in screen pixels rather then image.
2011-03-11simplify BLI_path_abs by using BLI_cleanup_pathCampbell Barton
2011-03-11fix [#26451] Little problem when selecting relative output pathCampbell Barton
BLI_path_rel() no longer strips trailing slashes.
2011-03-08Apply [#26311] Collada Exporter Crash on Win64 buildNathan Letwory
Submitted by Filiciss Muhgue Selecting COLLADA export after starting blender into default scene Blender would crash, due to misreading the path string (no file saved yet, so it was zero).
2011-03-08remove unused RegionView3D retopo pointer and set quat printing to const args. Campbell Barton
2011-03-05Utility defines for quick timing tests.Campbell Barton
for most cases: TIMEIT_START(my_test) .... TIMEIT_END(my_test) prints time, test name, function name and line number.
2011-03-03replace 0 with NULL when used as a pointerCampbell Barton
2011-03-03fix for invalid empty string check in uniquename callback.Campbell Barton
2011-03-02replace references to old arithb libraryCampbell Barton
2011-03-01Fix [#26207] Render.exe mangles paths in mysterious and awesome waysNathan Letwory
Reported by Edwin Amsler The function for extrapolating the template name with the frame number didn't properly NULL-terminate the resulting string, this causing broken names and weird paths (if you were lucky - totally unusuable names detected while stepping through the code).
2011-02-27doxygen: blender/blenlib tagged.Nathan Letwory
2011-02-27pedantic warning cleanup, also remove texspace_edit() since its been added ↵Campbell Barton
using a different method.
2011-02-26use const char for return values of getenv().Campbell Barton
2011-02-25fix for scons with recent change to how BINRELOC is enabled via cmake.Campbell Barton
also add WITH_PYTHON define to qtcreator project generator until we get a way to add them properly.
2011-02-24patch [#26187] Cleaning #include <malloc.h>Campbell Barton
from Shane Ambler (sambler) didnt include change to superlu, prefer to leave external libs out of cleanups.
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-21build python module without binreloc, add dummy argv[0] to initialize bprogname.Campbell Barton
2011-02-21I swear, it was just an innocence change in guardedalloc!Nathan Letwory
The butterfly wing flap, causing a nice storm in the rest of blender. Now all dependencies should point ok again. CMakers, do double-test.
2011-02-21fix [#26152] Blender File for Image too SmallCampbell Barton
disallow 0% rendersize. also mark new cmake vars as advanced: RPMBUILD, X11_XF86keysym_INCLUDE_PATH
2011-02-20Fix for crash when sculpting on multires object during playbackSergey Sharybin
- Restored BLI_pbvh_grids_update stuff; - Marc all nodes as changes in ED_sculpt_modifiers_changed, so draw_buffers would be keept correct.
2011-02-19set main() argv functions to be const char *Campbell Barton
also set minimum cmake version to 2.8
2011-02-18Remove #ifdef __cplusplus, as it caused C2732 (differences in linkage). ↵Nathan Letwory
Compiles and runs fine without.
2011-02-18declare round() and copysign() when on windows. Implementations for them ↵Nathan Letwory
already where in math_base.c
2011-02-18doxygen: add blenlib under core as module.Nathan Letwory
2011-02-18- clear some warningsCampbell Barton
- rename layout.operator_enums -> operator_enum (since we have operator_menu_enum, only called in 4 places)
2011-02-17clear some unused warningsCampbell Barton