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-10-12Fix T49502: file browser on OS X not highlighting external drives.Brecht Van Lommel
2016-10-01Fix T49502: file browser on OS X not highlighting system folders and bookmarks.Brecht Van Lommel
2015-12-29OS X: remove code for OS X <= 10.5, which is already not supported since 2 ↵Brecht Van Lommel
years.
2015-10-10Fix various compiler warnings.Brecht Van Lommel
2015-09-11File Bookmarks: use volume label on Windows, and set name of recent entriesBastien Montagne
from system/user bookmarks' name if possible. Volume label on Windows was request from T46083, makes Blender more in line with 'common' filebrowsing on this OS. And now, we automatically set name of recent entries from the bookmarks, if path can be found there, more consistent too from user PoV.
2015-04-29OSX: fix T44533, system_bookmarks not showing utf standard ( umlauts etc. )Jens Verwiebe
2015-02-26Fix T43817: issue with non-utf8 encodings in Windows paths, again...Bastien Montagne
We need to use 'W' widechar variants of win funcs and convert wchar to utf8-encoded bytes in those cases, sigh... Note: theoritical fix only, need org reporter to test it...
2015-02-17Amend to previous own Fix T43684: only use hack on WIN32, and use ↵Bastien Montagne
case-insensitive comparison. Thanks to Campbell for the headup.
2015-02-17Fix T43684 (again!): Mighty Windows thinks it’s perfectly sensible to ↵Bastien Montagne
block everyone during 5 seconds for a mere stat() call on "A:\" path... For now, just always consider those floppy entries ("A:\" and "B:\") as valid... sigh.
2015-02-16Fix T43684: File Browser is unusable on Windows Machines (do not ↵Bastien Montagne
BLI_is_dir() in draw loop!) Did not had any issue on linux, but looks like on some windows can slow things as Hell. Or maybe just the presence of some network FS? Anyway, not a good idea, so now fsmenu entries' valid status is stored and only evaluated on startup (reading of bookmarks & co) and when opening file browser (refresh, like for system bookmarks).
2015-02-11FileBrowser: Editable Bookmarks.Bastien Montagne
Bookmarks are now editable (i.e. you can rename them, and reorder them). They are also listed in regular UILists, so you can filter/sort them as usual too. Also, FileBrowser 'T' side area is changed to something similar to 3DView one, in this case because we need op panel to remain at the bottom, and later because we'll more than likely need tabs here! Thanks to Campbell and Sergey for reviews. Differential Revision: https://developer.blender.org/D1093
2015-01-26Cleanup: strcmp/strncmp -> STREQ/STREQLEN (in boolean usage).Bastien Montagne
Makes usage of those funcs much more clear, we even had mixed '!strcmp(foo, bar)' and 'strcmp(foo, bar) == 0' in several places...
2014-11-23Refactor: BLI_path_util (part 2)Campbell Barton
Use BKE_appdir/tempdir naming prefix for functions extracted from BLI_path_util
2014-11-03OSX/fsmenu: fix compiling on older gcc reported by Mike SJens Verwiebe
2014-10-13Cleanup: redundant castCampbell Barton
2014-10-09Cleanup: tabsCampbell Barton
Set your editor to tabs for all C/C++!
2014-10-08OSX: fsmenu cleanupJens Verwiebe
2014-10-08OSX: adapt fs_menue to modern entries handlingJens Verwiebe
2014-10-04OSX: simplyfy last commit for fs_menu system_bookmarksJens Verwiebe
2014-10-03OSX: Change the FS_CATEGORY_SYSTEM_BOOKMARKS aka "Favorites", so that the ↵Jens Verwiebe
orderwise in sync with finder
2014-06-04OSX 10.10: fix for Blender crashing on fsmenu due icloud in the favorite ↵Jens Verwiebe
list but pointer is NULL when not activated This does not break other OSX versions, just add a check for pathString
2014-04-30Code cleanup: remove unused includesCampbell Barton
Opted to keep includes if they are used indirectly (even if removing is possible).
2014-04-01Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT defineCampbell Barton
2013-12-20Fix bookmarks not appearing in file browser after "copy previous settings".Brecht Van Lommel
2013-11-05Since we dropped carbon api, this workaround seems not longer to be ↵Jens Verwiebe
necessary, pls. keep an eye
2013-10-23style cleanupCampbell Barton
2013-10-14OSX/fs_menue: change the availability macros, so ppl could still compile on ↵Jens Verwiebe
10.5 by just also using 10.4 code then
2013-10-13OSX: comment cleanupJens Verwiebe
2013-10-13OSX: Final cleanup for #60729Jens Verwiebe
2013-10-13OSX: Get mounted volumes better method by using volume enumsJens Verwiebe
2013-03-16fix for buffer overrun in reading bookmarks when a line was over 256 bytes.Campbell Barton
2012-12-15OSX/availability: use of the numerical value instead of the symbol in the ↵Jens Verwiebe
#if MAC_OS_X_VERSION_MIN_REQUIRED comparison clause: If the code is loaded on an older system that does not include the symbol definition, the comparison still works
2012-11-03OSX: take back 51826 for now, does not fix dalai's problemJens Verwiebe
2012-11-03OSX: a more friendly way to get mounted volumes, alo allows for whitespaces etc.Jens Verwiebe
2012-11-02OSX: suppress meaningless /net and /home in fileselector also on 10.5+Jens Verwiebe
2012-10-29fix [#33011] "System" tab empty in OSX - file browserAndrea Weikert
* items were wrongly added too SYSTEM_BOOKMARKS rather than SYSTEM, now fixed
2012-10-21== filebrowser ==Andrea Weikert
* Separated bookmarks managed by the OS (System Bookmarks) and bookmarks managed by Blender (Bookmarks). * Added user pref to hide (or show) system bookmarks to allow users doing a video tutorial for example to hide their private system bookmarks This feature should help especially MAC users who reported excessively long list of bookmarks which were added to Blender.
2012-09-18code cleanup: warning and styleCampbell Barton
2012-09-18== filebrowser ==Andrea Weikert
further fixes for 'RECENT' files panel in filebrowser: * Also add the recent folder at the head if it is not yet in the list * since we now insert at the head, we need to remove the skipping of the first entries if there are too many. Now correctly leaving the last elements unwritten. * Another consequence of inserting at the head is that we don't want to reverse the list in the recent panel anymore - got rid of the corresponding code.
2012-09-18fix: obvious bug in recent fix for the 'recent file' bookmark order.Andrea Weikert
2012-09-17Fix mac build issue after recent file browser fix.Brecht Van Lommel
2012-09-17Fix compilation issue, also get rid of annoying "_MSC_VER not defined"Antony Riakiotakis
preprocessor ambiguity for MinGW
2012-09-17code cleanup: fsmenu.c names were confusing - fsms / fsme / prev --> ↵Campbell Barton
fsm_head / fsm_iter / fsm_prev
2012-09-17fix [#32564] Entries in recent list (file select dialog) don't get pushed to ↵Campbell Barton
top if used again
2012-09-17code cleanup: replace fsmenu_insert_entry args with flags.Campbell Barton
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-06-18style cleanupCampbell Barton
2012-05-22style cleanupCampbell Barton
also fix example for mesh uv's
2012-05-18add missing includeBrecht Van Lommel
2012-05-18File browser: list of system directories is now refreshed on pressing the ↵Brecht Van Lommel
refresh button or opening the file browser, in case e.g. a USB stick was inserted. Patch #31211 by Julien Duroure.