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
2008-09-23fix for [#13825] Lack of Flags in Face Mode SetCampbell Barton
undo was also not working.
2008-09-22fix for [#15020] File browser: going back from the root of all directories ↵Campbell Barton
introduces "../" ad libitum + harcoded path? bug was introduced when fixing BLI_cleanup_dir not to write to negative character indicies. added a BLI_parent_dir(char *path)
2008-09-14Bugfix #17608Ton Roosendaal
Fileselect window: Pressing X to remove a file should not work in databrowse view.
2008-05-31bugfix for own errorCampbell Barton
glitch when typing in / would ask the user to make a new directory. the last shash was being removed, then the "" path didnt exist and asked to create it.
2008-05-15changing between libraries with the append/link library selector didnt ↵Campbell Barton
re-read a new blend file when it alredy had one loaded. it looks like this only ever worked for the first library selected.
2008-05-06== bugfix ==Andrea Weikert
[#10312] Append Link (image browser) bug if combined with Open window The only place where the special handling in newspace is relevenant is when opening it with the windowtype_pupmenu. All other overlaying windows( render in image space, scriptspace) should leave imagebrowser/filebrowser space alone.
2008-05-04Changed frame numbering to only alter hashes if they are in the filename ↵Campbell Barton
(not the directory name) to fix bug [#10566] File Open Dialog replaces '#' with '0' in directory names. removed frame numbering from BLI_convertstringcode into its own function (BLI_convertstringframe), many uses of BLI_convertstringcode were passing dummy frames values anyway. in cases where adding the current frame number to a filename is needed run BLI_convertstringframe(...) after BLI_convertstringcode(...) There are some cases Im not sure BLI_convertstringframe is needed, these have been commented as todo, but at least have the same functionality they used to.
2008-04-30== bugfix ==Andrea Weikert
fix for [#6580] invalid file names not handled consistently when saving only affects windows, where invisible file stream could be created if filename contains ':'
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2008-04-12removed blenders backup feature.Campbell Barton
sprintf(str, "/bin/su root -c 'cd %s; /bin/tar cf - \"%s\" | (/bin/cd %s; /bin/tar xf -)'", from, file, to); return system(str); This would ask for a password in blenders terminal, in ubuntu there is no root user... If this feature is added back it should be written in a much nicer way. Also made HKey toggle hidden files in the file selector.
2008-03-31fix for odd error with image loading broke normal file loadingCampbell Barton
2008-03-31fix for [#8795] Unable to load an image into Image Texture TypeCampbell Barton
2008-03-30== bugfix ==Andrea Weikert
fix for [#6950] Blender crashes when .blog file top line is 160 characters or more - made sure BLI_convertstringcode doesn't return more than 240 chars - went through all callers and fixed places where string passed to BLI_convertstringcode was too short - TODO: look into increasing sample->name and sound->name too, I prevented crashes, but filename might get shortened.
2008-03-13Two bugfixes:Brecht Van Lommel
- Clicking below the list of items in the shift+f4 databrowser could crash. - Text window crashed when making it zero size.
2008-03-08bugfix for [#8433] Retopo doesn't work with AutoMerge Editing.Campbell Barton
Disable retopo while snapping, then run after. This means automerge happens first which is more useful.
2008-03-07Made python scripts save and load in the blend file so you can have the same ↵Campbell Barton
scripts running when you open a blend file. Also scripts will re-run on undo rather then closing. This is done by saving and loading the name of the script or textblock of the 'Script' datablock, connected to the ScriptSpace. This way when there is a name but the script dosnt run. Blender runs the script or text block if available.
2008-03-02made it possible to type in ~ at the start of the filename, ~/Desktop for ↵Campbell Barton
instance. Enabled for win32 and in the image browser.
2008-02-29* Fix for own big, Adding group objects from the outliner didnt check they ↵Campbell Barton
were externally linked. * ping "~" in the fileselectors dir will take you to $HOME (non win32) * Added a file selector for Node output image
2008-02-14make the file and image selector convert relative paths.Campbell Barton
2008-01-19don't display relative paths button when loading files.Campbell Barton
this was silly anyway since it always gave an error.
2008-01-16user pref to make relative paths an option you can save (peachers need to be ↵Campbell Barton
strict with this for the farm)
2007-12-28small edits noticed when using linked objects, - Make undo string say linked ↵Campbell Barton
and disallow editing PassIndex and changing the Parent of linked objects.
2007-12-12for button popups, dont close unless you click or press escape, this would ↵Campbell Barton
often close when dragging a button value (or when using a tablet I am told)
2007-12-11Fixing compiler warnings:Joshua Leung
* BLI_arithb.h - isnan definition is only needed for MSVC, but gcc/mingw complains about it * file-selectors - moved BLI_storage_types.h or sys/stat.h includes before BLI_winstuff.h includes, to silence warnings about S_ISDIR.
2007-11-19Bugfix #7510: Doesn't save .blend file name with [Andrea Weikert
* Added Windows specific implementation for fnmatch taken from GNU/MINGW/MSYS C library * behaviour should now be the same as under Linux and other OSs * changed filename for fnmatch.h to ensure we include the correct one if we link with the included implementation * tested compile with MSVC 7.1 and gcc(MinGW-5.1.3) on Windows.
2007-11-10Bugfix #6797: Relative paths load problem on new file (fix included)Andrea Weikert
- brought back the check for a valid relative base when selecting. - kept the check for when file is saved too and warning message is printed to console instead of popping up. Also fixed BLI_split_filedir overwriting parameter passed as const char*
2007-11-08Fix for bug #7697 Appending screen crashes when appended screen is accessed:Juho Vepsalainen
This commit fixes the issue by disabling access to screens via the path input field. Note that appending screens might actually be a useful feature to implement at some point.
2007-10-21fix for crash's in file selector.Campbell Barton
- on unix BLI_diskfree was only using 100 chars for the dir name, and not checking if the name given was longer, increased to FILE_MAXDIR (160) and added a check, return -1 if its too long. The file selector only allowed 80 chars to be typed into the directory entry. Made the file selector check that the path is less then FILE_MIXDIR, if you try and enter a path thats longer it will tell you that the path is too long, before it was writing into other memory and crashing.
2007-09-17Added a NULL check that was needed.Kent Mein
Kent
2007-09-12Added UV face rotate and mirror to editmode and re arranged some of the ↵Campbell Barton
editmode keys The WKey menu was way too big and not well organized, re-arranged keys like this. Ctrl+V - Vert Menu (remove doubles, smooth...) Ctrl+E - Edge Menu - left as is Ctrl+F - Face Menu - (flip normals, shading, Rotate and Mirror UV's/Colors) Wkey menu only has subdivide in it now. filesel.c - only show the relative paths option if the file is saved, (flag on by default caused the image to silently fail loading on my system, and gave permission errors on a users), also removed a warning.
2007-09-02== imagebrowser ==Andrea Weikert
Initial commit of imagebrowser in trunk. BIG COMMIT! Main changes: * completely reworked imasel space * creation and storage of the preview images for materials, textures, world and lamp * thumbnails of images and movie files when browsing in the file system * loading previews from external .blend when linking or appending * thumbnail caching according to the Thumbnail Managing Standard: http://jens.triq.net/thumbnail-spec/ * for now just kept imasel access mostly as old imgbrowser (CTRL+F4, CTRL+F1) a bit hidden still. * filtering of file types (images, movies, .blend, py,...) * preliminary managing of bookmarks ('B' button to add, XKEY while bookmark active to delete) More detailed info which will be updated here: http://wiki.blender.org/index.php/User:Elubie/PreviewImageBrowser Places that need special review (and probably fixes): * BLO_blendhandle_get_previews in readblenentry * readfile.c: do_version and refactorings of do_library_append * UI integration TODO and known issues still: * Accented characters do not display correctly with international fonts * Crash was reported when browsing in directory with movie files * Bookmark management still needs some UI work (second scrollbar?), feedback here is welcome! Credits: Samir Bharadwaj (samirbharadwaj@yahoo.com) for the icon images. Many thanks to everyone who gave feedback and helped so far!
2007-08-01=Lack of #ifdef INTERNATIONAL=Joseph Eagar
Recent font preview commit didn't have the proper enclosing #ifdef INTERNATIONAL blocks. Honestly, I have no idea why we bother, but added them anyway.
2007-07-30Font previewJoilnen Leite
2007-07-10Update to the translation code. Patch provided by dripstone.Kent Mein
Basically move stuff out of filesel.c and into language.c and changes when exactly it does the conversion. It was doing it when not needed for some machines. It probably still needs work but its slowly getting better. I also removed some commented out code. Kent
2007-06-25This commit is a modified version of patch #6860Kent Mein
It adds read only dds support. (Writing will come later) Kent
2007-04-25made blender take hidden objects into account in more situations.Campbell Barton
Ctrl+RMB used to select a hidden object as well as "Select Grouped -> Parent" Also made OOps and data browser check for hidden objects. Added a countall to hide/unhide objects.
2007-04-21dumb mistake, wasnt UN-setting the flag to zero LIB_APPEND_TAXCampbell Barton
Fixed an error that could cause a possible memory corruption, library filenames were being used to make a menu, but memory was only being allocated FILE_MAX per lib rather then FILE_MAXDIR+FILE_MAX, since lib->name is the full path. was also doing lib->name+2 which isnt needed for a path.
2007-04-20export_fbx.py - support scene start/end frames, fpx, mist settings, better ↵Campbell Barton
default camera writing. BPyObject.py - function for getting an objects armature, look at both parent and modifier. editmesh_add.c and BPyAddMesh.py - check for multires filesel.c, Append/Link had a bug where files linked in, didnt have the LIB_APPEND_TAG unset, and appending these into a new blend file would link instead. BKE_library.h, library.c - utility functions for flagging listbases flag_all_listbases_ids and and flag_listbase_ids
2007-04-07appending libdata no longer breaks all external references.Campbell Barton
Existing data is flagged with LIB_APPEND_TAG and all_local only has an option to only operate on un-flagged data. If you append an object thats linked to a material alredy linked in your scene, the material will not be made local. So at worst youll need to make local some of the datablocks. This is fairly simple and though my tests show it to work, do some tests on your own libraries before assuming its problem free. scripttemplate_mesh_edit wasnt updated with PyAPI changes and moved some functions into generic places.
2007-03-29Bugfix #6312Ton Roosendaal
When saving files (images), the filewindow was giving relative paths on a save-over menu. Also: added in group.c a note about problems with timeoffset.
2007-03-20Stupid little fix, var == "str" bad.... !strcmp(var, "str") good...Kent Mein
Thanks DripStone, Kent
2007-03-15This is a fix for bug #6100Kent Mein
When using international fonts, blender was assuming that the default language on the system was chinese. Now it checks to see what language code you have selected and if its chinese or japanese it converts those to utf8 and then continues to translate them. I can't fully check this so will need others to test it. This should at least be better now. Kent
2007-02-09Bugfix #5959Ton Roosendaal
Save .blend file: when setting option "Relative Paths", blender tried to save in the root directory. Saving .blend files is always with a real path, do the relative option should be skipped. Also removed the totally annoying error popup when trying to save something before you saved a .blend. That warning was almost never correct. I left in this warning for loading files btw.
2007-01-23=== BUGFIX ===Andrea Weikert
[ #5802 ] Blender crash when trying "Append or Link" with long directory names - was copying bytes past the end of allocated string
2007-01-20[ #4786 ] if space in the Application path name, system() doesn't work on ↵Andrea Weikert
some platforms commited temporary fix: executable name is quoted for all platforms except Windows now, nicely wrapped in #ifdefs. Will be doing nice wrapper function BLI_system for system calls in blenlib after release. Please test on all platforms!
2006-12-28Bugfix #5540Ton Roosendaal
Datbrowse return event was accidentally cleared, so browsing did not work. (Commit of last week for image refactor).
2006-12-20The Big Image refactor!Ton Roosendaal
Please read: http://www.blender3d.org/cms/Imaging.834.0.html Or in short: - adding MultiLayer Image support - recoded entire Image API - better integration of movie/sequence Images Was a whole load of work... went down for a week to do this. So, will need a lot of testing! Will be in irc all evening.
2006-12-13Multiple UV and vertex color layers: (still work in progress)Brecht Van Lommel
These can be created and deleted in the Mesh panel in the same place as before. There is always one active UV and vertex color layer, that is edited and displayed. Important things to do: - Render engine, material support - Multires and NMesh now lose non active layers Also CustomData changes to support muliple layers of the same type, and changes to layer allocation, updated documentation is here: http://mediawiki.blender.org/index.php/BlenderDev/BlenderArchitecture/CustomData
2006-12-01Library manegement features:Ton Roosendaal
- Outliner now shows hierarchy for Libraries, indicating which Library files invoked loading another. - SHIFT+F1 "Append" browser has a Library menu, allowing to directly browse into all open library files. This will prevent accidents like re-opening a same .blend via another path.
2006-11-25Uncommitted my potential fix forAlexander Ewering
http://projects.blender.org/tracker/index.php?func=detail&aid=4786&group_id=9&atid=125 It seems like you can't quote the executable path on win32 using system(). So, playing back a rendered animation now works again on win32, however, the bug remains... no idea how to correct it.